Skip to main content

event_subscriptions_delivery_attributes

Creates, updates, deletes, gets or lists an event_subscriptions_delivery_attributes resource.

Overview

Nameevent_subscriptions_delivery_attributes
TypeResource
Idazure.event_grid.event_subscriptions_delivery_attributes

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope, eventSubscriptionNameGet all delivery attributes for an event subscription.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
eventSubscriptionNamestringName of the event subscription.
scopestringThe scope of the event subscription. The scope can be a subscription, or a resource group, or a top level resource belonging to a resource provider namespace, or an EventGrid topic. For example, use '/subscriptions/{subscriptionId}/' for a subscription, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a resource group, and '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' for a resource, and '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' for an EventGrid topic.

SELECT examples

Get all delivery attributes for an event subscription.

SELECT
name,
type
FROM azure.event_grid.event_subscriptions_delivery_attributes
WHERE scope = '{{ scope }}' -- required
AND eventSubscriptionName = '{{ eventSubscriptionName }}' -- required
;