Skip to main content

channels_full_urls

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

Overview

Namechannels_full_urls
TypeResource
Idazure.event_grid.channels_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
getselectsubscriptionId, resourceGroupName, partnerNamespaceName, channelNameGet the full endpoint URL of a partner destination channel.

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
channelNamestringName of the Channel.
partnerNamespaceNamestringName of the partner namespace.
resourceGroupNamestringThe name of the resource group within the partners subscription.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Get the full endpoint URL of a partner destination channel.

SELECT
endpointUrl
FROM azure.event_grid.channels_full_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND partnerNamespaceName = '{{ partnerNamespaceName }}' -- required
AND channelName = '{{ channelName }}' -- required
;