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

NameDatatypeDescription
idtextResource ID.
nametextResource name.
cancel_datetextfield from the properties object
offertextfield from the properties object
offerIdtextfield from the properties object
planIdtextfield from the properties object
publishertextfield from the properties object
publisherIdtextfield from the properties object
sign_datetextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTofferId, planId, publisherId, subscriptionIdGet marketplace agreement.

SELECT examples

Get marketplace agreement.

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 }}';