partner_topic_event_subscriptions_delivery_attributes
Creates, updates, deletes, gets or lists a partner_topic_event_subscriptions_delivery_attributes
resource.
Overview
Name | partner_topic_event_subscriptions_delivery_attributes |
Type | Resource |
Id | azure.event_grid.partner_topic_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 | subscriptionId , resourceGroupName , partnerTopicName , eventSubscriptionName | Get all delivery attributes for an event subscription of a partner topic. |
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. |
partnerTopicName | string | Name of the partner topic. |
resourceGroupName | string | The name of the resource group within the user's subscription. |
subscriptionId | string | Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND partnerTopicName = '{{ partnerTopicName }}' -- required
AND eventSubscriptionName = '{{ eventSubscriptionName }}' -- required
;