Skip to main content

domain_topic_event_subscriptions_delivery_attributes

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

Overview

Namedomain_topic_event_subscriptions_delivery_attributes
TypeResource
Idazure.event_grid.domain_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
getSELECTdomainName, eventSubscriptionName, resourceGroupName, subscriptionId, topicNameGet all delivery attributes for an event subscription for domain topic.

SELECT examples

Get all delivery attributes for an event subscription for domain topic.

SELECT
name,
type
FROM azure.event_grid.domain_topic_event_subscriptions_delivery_attributes
WHERE domainName = '{{ domainName }}'
AND eventSubscriptionName = '{{ eventSubscriptionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';