Skip to main content

streaming_locators_content_keys

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

Overview

Namestreaming_locators_content_keys
TypeResource
Idazure.media_services.streaming_locators_content_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentKeysarrayContentKeys used by current Streaming Locator

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, streamingLocatorNameapi-versionList Content Keys used 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 Content Keys used by this Streaming Locator

SELECT
contentKeys
FROM azure.media_services.streaming_locators_content_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND streamingLocatorName = '{{ streamingLocatorName }}' -- required
AND api-version = '{{ api-version }}'
;