marketplace_agreements
Creates, updates, deletes, gets or lists a marketplace_agreements resource.
Overview
| Name | marketplace_agreements |
| Type | Resource |
| Id | azure_isv.confluent.marketplace_agreements |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ARM id of the resource. |
name | string | The 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 agreement. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | ||
create | 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 (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
Success
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.confluent.marketplace_agreements
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT examples
- create
- Manifest
No description available.
INSERT INTO azure_isv.confluent.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 (uuid)
description: Required parameter for the marketplace_agreements resource.
- name: properties
value: object
description: |
Represents the properties of the resource.