accounts_keys
Creates, updates, deletes, gets or lists an accounts_keys
resource.
Overview
Name | accounts_keys |
Type | Resource |
Id | azure.purview.accounts_keys |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
atlasKafkaPrimaryEndpoint | string | Gets or sets the primary connection string. |
atlasKafkaSecondaryEndpoint | string | Gets or sets the secondary connection string. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName | api-version | List 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the account. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier |
api-version | string | The api version to use. |
SELECT
examples
- list
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 }}'
;