Skip to main content

domain_event_subscriptions_full_urls

Creates, updates, deletes, gets or lists a domain_event_subscriptions_full_urls resource.

Overview

Namedomain_event_subscriptions_full_urls
TypeResource
Idazure.event_grid.domain_event_subscriptions_full_urls

Fields

NameDatatypeDescription
endpointUrlstringThe URL that represents the endpoint of the destination of an event subscription.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdomainName, eventSubscriptionName, resourceGroupName, subscriptionIdGet the full endpoint URL for an event subscription for domain.

SELECT examples

Get the full endpoint URL for an event subscription for domain.

SELECT
endpointUrl
FROM azure.event_grid.domain_event_subscriptions_full_urls
WHERE domainName = '{{ domainName }}'
AND eventSubscriptionName = '{{ eventSubscriptionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';