Skip to main content

marketplace_agreements

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

Overview

Namemarketplace_agreements
TypeResource
Idazure_isv.datadog.marketplace_agreements

Fields

NameDatatypeDescription
idstringARM id of the resource.
namestringName of the agreement.
propertiesobjectTerms properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTsubscriptionId
create_or_updateINSERTsubscriptionId

SELECT examples

SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.datadog.marketplace_agreements
WHERE subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new marketplace_agreements resource.

/*+ create */
INSERT INTO azure_isv.datadog.marketplace_agreements (
subscriptionId,
properties
)
SELECT
'{{ subscriptionId }}',
'{{ properties }}'
;