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
The following fields are returned by SELECT queries:
- get
Terms returned successfully
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Represents the properties of the resource. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, publisherId, offerId, planId | Get marketplace agreement. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
offerId | string | Offer identifier string of image being deployed. |
planId | string | Plan identifier string of image being deployed. |
publisherId | string | Publisher identifier string of image being deployed. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
SELECT examples
- get
Get marketplace agreement.
SELECT
id,
name,
properties,
type
FROM azure_extras.marketplace_ordering.marketplace_agreements_agreements
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND publisherId = '{{ publisherId }}' -- required
AND offerId = '{{ offerId }}' -- required
AND planId = '{{ planId }}' -- required
;