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

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

Methods

NameAccessible byRequired ParamsDescription
getSELECTeventSubscriptionName, namespaceName, resourceGroupName, subscriptionId, topicNameGet all delivery attributes for an event subscription of a 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 eventSubscriptionName = '{{ eventSubscriptionName }}'
AND namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';