Skip to main content

partner_topic_event_subscriptions_delivery_attributes

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

Overview

Namepartner_topic_event_subscriptions_delivery_attributes
TypeResource
Idazure.event_grid.partner_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, partnerTopicName, resourceGroupName, subscriptionIdGet all delivery attributes for an event subscription of a partner topic.

SELECT examples

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

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