namespace_topics_shared_access_keys
Creates, updates, deletes, gets or lists a namespace_topics_shared_access_keys
resource.
Overview
Name | namespace_topics_shared_access_keys |
Type | Resource |
Id | azure.event_grid.namespace_topics_shared_access_keys |
Fields
Name | Datatype | Description |
---|---|---|
key1 | string | Shared access key1 for the topic. |
key2 | string | Shared access key2 for the topic. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | namespaceName, resourceGroupName, subscriptionId, topicName | List the two keys used to publish to a namespace topic. |
SELECT
examples
List the two keys used to publish to a namespace topic.
SELECT
key1,
key2
FROM azure.event_grid.namespace_topics_shared_access_keys
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';