Skip to main content

namespace_topic_event_subscriptions_full_urls

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

Overview

Namenamespace_topic_event_subscriptions_full_urls
TypeResource
Idazure.event_grid.namespace_topic_event_subscriptions_full_urls

Fields

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

Methods

NameAccessible byRequired ParamsDescription
getSELECTeventSubscriptionName, namespaceName, resourceGroupName, subscriptionId, topicNameGet the full endpoint URL for an event subscription of a namespace topic.

SELECT examples

Get the full endpoint URL for an event subscription of a namespace topic.

SELECT
endpointUrl
FROM azure.event_grid.namespace_topic_event_subscriptions_full_urls
WHERE eventSubscriptionName = '{{ eventSubscriptionName }}'
AND namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND topicName = '{{ topicName }}';