Skip to main content

system_topic_event_subscriptions_delivery_attributes

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

Overview

Namesystem_topic_event_subscriptions_delivery_attributes
TypeResource
Idazure.event_grid.system_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, resourceGroupName, subscriptionId, systemTopicNameGet all delivery attributes for an event subscription.

SELECT examples

Get all delivery attributes for an event subscription.

SELECT
name,
type
FROM azure.event_grid.system_topic_event_subscriptions_delivery_attributes
WHERE eventSubscriptionName = '{{ eventSubscriptionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND systemTopicName = '{{ systemTopicName }}';