event_subscriptions_full_urls
Creates, updates, deletes, gets or lists an event_subscriptions_full_urls
resource.
Overview
Name | event_subscriptions_full_urls |
Type | Resource |
Id | azure.event_grid.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 | scope , eventSubscriptionName | Get 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.
Name | Datatype | Description |
---|---|---|
eventSubscriptionName | string | Name of the event subscription. |
scope | string | The 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
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
;