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
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
endpointUrl | string | The URL that represents the endpoint of the destination of an event subscription. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, domainName, topicName, eventSubscriptionName | Get the full endpoint URL for a nested event subscription for domain 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 |
|---|---|---|
domainName | string | Name of the top level domain. |
eventSubscriptionName | string | Name of the event subscription. |
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. |
topicName | string | Name of the domain topic. |
SELECT examples
- get
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND domainName = '{{ domainName }}' -- required
AND topicName = '{{ topicName }}' -- required
AND eventSubscriptionName = '{{ eventSubscriptionName }}' -- required
;