Skip to main content

namespace_topic_event_subscriptions_delivery_attributes

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

Overview

Namenamespace_topic_event_subscriptions_delivery_attributes
TypeResource
Idazure.event_grid.namespace_topic_event_subscriptions_delivery_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the delivery attribute or header.
typestringType of the delivery attribute or header name.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, namespaceName, topicName, eventSubscriptionNameGet all delivery attributes for an event subscription of 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
eventSubscriptionNamestringName of the event subscription.
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 namespace topic.

SELECT examples

Get all delivery attributes for an event subscription of a namespace topic.

SELECT
name,
type
FROM azure.event_grid.namespace_topic_event_subscriptions_delivery_attributes
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND topicName = '{{ topicName }}' -- required
AND eventSubscriptionName = '{{ eventSubscriptionName }}' -- required
;