topics_keys
Creates, updates, deletes, gets or lists a topics_keys
resource.
Overview
Name | topics_keys |
Type | Resource |
Id | azure.service_bus.topics_keys |
Fields
Name | Datatype | Description |
---|---|---|
aliasPrimaryConnectionString | string | Primary connection string of the alias if GEO DR is enabled |
aliasSecondaryConnectionString | string | Secondary connection string of the alias if GEO DR is enabled |
keyName | string | A string that describes the authorization rule. |
primaryConnectionString | string | Primary connection string of the created namespace authorization rule. |
primaryKey | string | A base64-encoded 256-bit primary key for signing and validating the SAS token. |
secondaryConnectionString | string | Secondary connection string of the created namespace authorization rule. |
secondaryKey | string | A base64-encoded 256-bit primary key for signing and validating the SAS token. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | authorizationRuleName, namespaceName, resourceGroupName, subscriptionId, topicName | Gets the primary and secondary connection strings for the topic. |
SELECT
examples
Gets the primary and secondary connection strings for the topic.
SELECT
aliasPrimaryConnectionString,
aliasSecondaryConnectionString,
keyName,
primaryConnectionString,
primaryKey,
secondaryConnectionString,
secondaryKey
FROM azure.service_bus.topics_keys
WHERE authorizationRuleName = '{{ authorizationRuleName }}'
AND namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';