streaming_locators_paths
Creates, updates, deletes, gets or lists a streaming_locators_paths resource.
Overview
| Name | streaming_locators_paths |
| Type | Resource |
| Id | azure.media_services.streaming_locators_paths |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
downloadPaths | array | Download Paths supported by current Streaming Locator |
streamingPaths | array | Streaming Paths supported by current Streaming Locator |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, accountName, streamingLocatorName | api-version | List 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.
| Name | Datatype | Description |
|---|---|---|
accountName | string | The Media Services account name. |
resourceGroupName | string | The name of the resource group within the Azure subscription. |
streamingLocatorName | string | The Streaming Locator name. |
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
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 }}'
;