marketplace_agreements
Creates, updates, deletes, gets or lists a marketplace_agreements
resource.
Overview
Name | marketplace_agreements |
Type | Resource |
Id | azure_isv.datadog.marketplace_agreements |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | ARM id of the resource. |
name | string | Name of the agreement. |
properties | object | Represents the properties of the resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | ||
create_or_update | insert | subscriptionId |
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 |
---|---|---|
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Success
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.datadog.marketplace_agreements
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
No description available.
INSERT INTO azure_isv.datadog.marketplace_agreements (
data__properties,
subscriptionId
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}'
RETURNING
id,
name,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: marketplace_agreements
props:
- name: subscriptionId
value: string
description: Required parameter for the marketplace_agreements resource.
- name: properties
value: object
description: |
Represents the properties of the resource.