domain_event_subscriptions_delivery_attributes
Creates, updates, deletes, gets or lists a domain_event_subscriptions_delivery_attributes
resource.
Overview
Name | domain_event_subscriptions_delivery_attributes |
Type | Resource |
Id | azure.event_grid.domain_event_subscriptions_delivery_attributes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the delivery attribute or header. |
type | string | Type of the delivery attribute or header name. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | domainName, eventSubscriptionName, resourceGroupName, subscriptionId | Get all delivery attributes for an event subscription for domain. |
SELECT
examples
Get all delivery attributes for an event subscription for domain.
SELECT
name,
type
FROM azure.event_grid.domain_event_subscriptions_delivery_attributes
WHERE domainName = '{{ domainName }}'
AND eventSubscriptionName = '{{ eventSubscriptionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';