Skip to main content

event_subscriptions_full_urls

Creates, updates, deletes, gets or lists an event_subscriptions_full_urls resource.

Overview

Nameevent_subscriptions_full_urls
TypeResource
Idazure.event_grid.event_subscriptions_full_urls

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope, eventSubscriptionNameGet the full endpoint URL for an event subscription.

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.

NameDatatypeDescription
eventSubscriptionNamestringName of the event subscription.
scopestringThe scope of the event subscription. The scope can be a subscription, or a resource group, or a top level resource belonging to a resource provider namespace, or an EventGrid topic. For example, use '/subscriptions/{subscriptionId}/' for a subscription, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a resource group, and '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' for a resource, and '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' for an EventGrid topic.

SELECT examples

Get the full endpoint URL for an event subscription.

SELECT
endpointUrl
FROM azure.event_grid.event_subscriptions_full_urls
WHERE scope = '{{ scope }}' -- required
AND eventSubscriptionName = '{{ eventSubscriptionName }}' -- required
;