videos_content_tokens
Creates, updates, deletes, gets or lists a videos_content_tokens
resource.
Overview
Name | videos_content_tokens |
Type | Resource |
Id | azure.video_analyzer.videos_content_tokens |
Fields
Name | Datatype | Description |
---|---|---|
expirationDate | string | The content token expiration date in ISO8601 format (eg. 2021-01-01T00:00:00Z). |
token | string | The content token value to be added to the video content URL as the value for the "token" query string parameter. The token is specific to a single video. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, resourceGroupName, subscriptionId, videoName | Generates a streaming token which can be used for accessing content from video content URLs, for a video resource with the given name. |
SELECT
examples
Generates a streaming token which can be used for accessing content from video content URLs, for a video resource with the given name.
SELECT
expirationDate,
token
FROM azure.video_analyzer.videos_content_tokens
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND videoName = '{{ videoName }}';