event_subscriptions_delivery_attributes
Creates, updates, deletes, gets or lists an event_subscriptions_delivery_attributes
resource.
Overview
Name | event_subscriptions_delivery_attributes |
Type | Resource |
Id | azure.event_grid.event_subscriptions_delivery_attributes |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
name | string | Name of the delivery attribute or header. |
type | string | Type of the delivery attribute or header name. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | scope , eventSubscriptionName | Get 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.
Name | Datatype | Description |
---|---|---|
eventSubscriptionName | string | Name of the event subscription. |
scope | string | The 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
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
;