Skip to main content

accounts_keys

Creates, updates, deletes, gets or lists an accounts_keys resource.

Overview

Nameaccounts_keys
TypeResource
Idazure.purview.accounts_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
atlasKafkaPrimaryEndpointstringGets or sets the primary connection string.
atlasKafkaSecondaryEndpointstringGets or sets the secondary connection string.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountNameapi-versionList the authorization keys associated with this account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
accountNamestringThe name of the account.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier
api-versionstringThe api version to use.

SELECT examples

List the authorization keys associated with this account.

SELECT
atlasKafkaPrimaryEndpoint,
atlasKafkaSecondaryEndpoint
FROM azure.purview.accounts_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND api-version = '{{ api-version }}'
;