domain_topic_event_subscriptions_full_urls
Creates, updates, deletes, gets or lists a domain_topic_event_subscriptions_full_urls
resource.
Overview
Name | domain_topic_event_subscriptions_full_urls |
Type | Resource |
Id | azure.event_grid.domain_topic_event_subscriptions_full_urls |
Fields
Name | Datatype | Description |
---|---|---|
endpointUrl | string | The URL that represents the endpoint of the destination of an event subscription. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | domainName, eventSubscriptionName, resourceGroupName, subscriptionId, topicName | Get the full endpoint URL for a nested event subscription for domain topic. |
SELECT
examples
Get the full endpoint URL for a nested event subscription for domain topic.
SELECT
endpointUrl
FROM azure.event_grid.domain_topic_event_subscriptions_full_urls
WHERE domainName = '{{ domainName }}'
AND eventSubscriptionName = '{{ eventSubscriptionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';