Skip to main content

organization_api_keys

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

Overview

Nameorganization_api_keys
TypeResource
Idazure_isv.confluent.organization_api_keys

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
createINSERTclusterId, environmentId, organizationName, resourceGroupName, subscriptionId

INSERT example

Use the following StackQL query and manifest file to create a new organization_api_keys resource.

/*+ create */
INSERT INTO azure_isv.confluent.organization_api_keys (
clusterId,
environmentId,
organizationName,
resourceGroupName,
subscriptionId,
name,
description
)
SELECT
'{{ clusterId }}',
'{{ environmentId }}',
'{{ organizationName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ name }}',
'{{ description }}'
;