Skip to main content

organization_cluster_api_keys

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

Overview

Nameorganization_cluster_api_keys
TypeResource
Idazure_isv.confluent.organization_cluster_api_keys

Fields

NameDatatypeDescription
idtextId of the api key
apiKeyIdtextfield from the properties object
kindtextType of api key
metadatatextfield from the properties object
organizationNametextfield from the properties object
resourceGroupNametextfield from the properties object
spectextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTapiKeyId, organizationName, resourceGroupName, subscriptionId
deleteDELETEapiKeyId, organizationName, resourceGroupName, subscriptionId

SELECT examples

SELECT
id,
apiKeyId,
kind,
metadata,
organizationName,
resourceGroupName,
spec,
subscriptionId
FROM azure_isv.confluent.vw_organization_cluster_api_keys
WHERE apiKeyId = '{{ apiKeyId }}'
AND organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified organization_cluster_api_keys resource.

/*+ delete */
DELETE FROM azure_isv.confluent.organization_cluster_api_keys
WHERE apiKeyId = '{{ apiKeyId }}'
AND organizationName = '{{ organizationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';