Skip to main content

assets_streaming_locators

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

Overview

Nameassets_streaming_locators
TypeResource
Idazure.media_services.assets_streaming_locators

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
streamingLocatorsarrayThe list of Streaming Locators.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, assetNameapi-versionLists Streaming Locators which are associated with this asset.

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.
assetNamestringThe Asset name.
resourceGroupNamestringThe name of the resource group within the Azure subscription.
subscriptionIdstringThe unique identifier for a Microsoft Azure subscription.
api-versionstringThe version of the API to be used with the client request.

SELECT examples

Lists Streaming Locators which are associated with this asset.

SELECT
streamingLocators
FROM azure.media_services.assets_streaming_locators
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND assetName = '{{ assetName }}' -- required
AND api-version = '{{ api-version }}'
;