namespace_topic_event_subscriptions_delivery_attributes
Creates, updates, deletes, gets or lists a namespace_topic_event_subscriptions_delivery_attributes
resource.
Overview
Name | namespace_topic_event_subscriptions_delivery_attributes |
Type | Resource |
Id | azure.event_grid.namespace_topic_event_subscriptions_delivery_attributes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the delivery attribute or header. |
type | string | Type of the delivery attribute or header name. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | eventSubscriptionName, namespaceName, resourceGroupName, subscriptionId, topicName | Get 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 }}';