Skip to main content

streaming_locators_paths

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

Overview

Namestreaming_locators_paths
TypeResource
Idazure.media_services.streaming_locators_paths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
downloadPathsarrayDownload Paths supported by current Streaming Locator
streamingPathsarrayStreaming Paths supported by current Streaming Locator

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, streamingLocatorNameapi-versionList Paths supported by this Streaming Locator

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
accountNamestringThe Media Services account name.
resourceGroupNamestringThe name of the resource group within the Azure subscription.
streamingLocatorNamestringThe Streaming Locator name.
subscriptionIdstringThe unique identifier for a Microsoft Azure subscription.
api-versionstringThe version of the API to be used with the client request.

SELECT examples

List Paths supported by this Streaming Locator

SELECT
downloadPaths,
streamingPaths
FROM azure.media_services.streaming_locators_paths
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND streamingLocatorName = '{{ streamingLocatorName }}' -- required
AND api-version = '{{ api-version }}'
;