Skip to main content

marketplace_agreements

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

Overview

Namemarketplace_agreements
TypeResource
Idazure_isv.confluent.marketplace_agreements

Fields

NameDatatypeDescription
idstringThe ARM id of the resource.
namestringThe name of the agreement.
propertiesobjectTerms properties for Marketplace and Confluent.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the agreement.

Methods

NameAccessible byRequired ParamsDescription
listSELECTsubscriptionId
createINSERTsubscriptionId

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.

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