organization_cluster_api_keys
Creates, updates, deletes, gets or lists a organization_cluster_api_keys
resource.
Overview
Name | organization_cluster_api_keys |
Type | Resource |
Id | azure_isv.confluent.organization_cluster_api_keys |
Fields
- vw_organization_cluster_api_keys
- organization_cluster_api_keys
Name | Datatype | Description |
---|---|---|
id | text | Id of the api key |
apiKeyId | text | field from the properties object |
kind | text | Type of api key |
metadata | text | field from the properties object |
organizationName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
spec | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Id of the api key |
kind | string | Type of api key |
properties | object | API Key Properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | apiKeyId, organizationName, resourceGroupName, subscriptionId | |
delete | DELETE | apiKeyId, organizationName, resourceGroupName, subscriptionId |
SELECT
examples
- vw_organization_cluster_api_keys
- organization_cluster_api_keys
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 }}';
SELECT
id,
kind,
properties
FROM azure_isv.confluent.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 }}';