Skip to main content

marketplace_agreements_agreements

Creates, updates, deletes, gets or lists a marketplace_agreements_agreements resource.

Overview

Namemarketplace_agreements_agreements
TypeResource
Idazure_extras.marketplace_ordering.marketplace_agreements_agreements

Fields

The following fields are returned by SELECT queries:

Terms returned successfully

NameDatatypeDescription
idstringResource ID.
namestringResource name.
propertiesobjectRepresents the properties of the resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, publisherId, offerId, planIdGet 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.

NameDatatypeDescription
offerIdstringOffer identifier string of image being deployed.
planIdstringPlan identifier string of image being deployed.
publisherIdstringPublisher identifier string of image being deployed.
subscriptionIdstringThe subscription ID that identifies an Azure subscription.

SELECT examples

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
;