marketplace_agreements_agreements
Creates, updates, deletes, gets or lists a marketplace_agreements_agreements
resource.
Overview
Name | marketplace_agreements_agreements |
Type | Resource |
Id | azure_extras.marketplace_ordering.marketplace_agreements_agreements |
Fields
- vw_marketplace_agreements_agreements
- marketplace_agreements_agreements
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
cancel_date | text | field from the properties object |
offer | text | field from the properties object |
offerId | text | field from the properties object |
planId | text | field from the properties object |
publisher | text | field from the properties object |
publisherId | text | field from the properties object |
sign_date | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Old Agreement Terms definition |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | offerId, planId, publisherId, subscriptionId | Get marketplace agreement. |
SELECT
examples
Get marketplace agreement.
- vw_marketplace_agreements_agreements
- marketplace_agreements_agreements
SELECT
id,
name,
cancel_date,
offer,
offerId,
planId,
publisher,
publisherId,
sign_date,
state,
subscriptionId,
type
FROM azure_extras.marketplace_ordering.vw_marketplace_agreements_agreements
WHERE offerId = '{{ offerId }}'
AND planId = '{{ planId }}'
AND publisherId = '{{ publisherId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure_extras.marketplace_ordering.marketplace_agreements_agreements
WHERE offerId = '{{ offerId }}'
AND planId = '{{ planId }}'
AND publisherId = '{{ publisherId }}'
AND subscriptionId = '{{ subscriptionId }}';