Skip to main content

namespace_topics_shared_access_keys

Creates, updates, deletes, gets or lists a namespace_topics_shared_access_keys resource.

Overview

Namenamespace_topics_shared_access_keys
TypeResource
Idazure.event_grid.namespace_topics_shared_access_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
key1stringShared access key1 for the topic.
key2stringShared access key2 for the topic.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, namespaceName, topicNameList the two keys used to publish to a namespace topic.

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
namespaceNamestringName of the namespace.
resourceGroupNamestringThe name of the resource group within the user's subscription.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
topicNamestringName of the 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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND topicName = '{{ topicName }}' -- required
;