assets_streaming_locators
Creates, updates, deletes, gets or lists an assets_streaming_locators
resource.
Overview
Name | assets_streaming_locators |
Type | Resource |
Id | azure.media_services.assets_streaming_locators |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
streamingLocators | array | The list of Streaming Locators. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName , assetName | api-version | Lists 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The Media Services account name. |
assetName | string | The Asset name. |
resourceGroupName | string | The name of the resource group within the Azure subscription. |
subscriptionId | string | The unique identifier for a Microsoft Azure subscription. |
api-version | string | The version of the API to be used with the client request. |
SELECT
examples
- list
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 }}'
;