Skip to main content

namespaces_shared_access_keys

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

Overview

Namenamespaces_shared_access_keys
TypeResource
Idazure.event_grid.namespaces_shared_access_keys

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTnamespaceName, resourceGroupName, subscriptionIdList the two keys used to publish to a namespace.

SELECT examples

List the two keys used to publish to a namespace.

SELECT
key1,
key2
FROM azure.event_grid.namespaces_shared_access_keys
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';