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
Name | Datatype | Description |
---|---|---|
id | string | The ARM id of the resource. |
name | string | The name of the agreement. |
properties | object | Terms properties for Marketplace and Confluent. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the agreement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | subscriptionId | |
create | INSERT | subscriptionId |
SELECT
examples
SELECT
id,
name,
properties,
systemData,
type
FROM azure_isv.confluent.marketplace_agreements
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new marketplace_agreements
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_isv.confluent.marketplace_agreements (
subscriptionId,
properties
)
SELECT
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
- name: properties
value:
- name: publisher
value: string
- name: product
value: string
- name: plan
value: string
- name: licenseTextLink
value: string
- name: privacyPolicyLink
value: string
- name: retrieveDatetime
value: string
- name: signature
value: string
- name: accepted
value: boolean