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

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId
create_or_updateinsertsubscriptionId

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
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Success

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

INSERT examples

No description available.

INSERT INTO azure_isv.datadog.marketplace_agreements (
data__properties,
subscriptionId
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}'
RETURNING
id,
name,
properties,
systemData,
type
;