vw_streaming_policies
Creates, updates, deletes, gets or lists a vw_streaming_policies
resource.
Overview
Name | vw_streaming_policies |
Type | View |
Id | azure.media_services.vw_streaming_policies |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
systemData as system_data,
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.defaultContentKeyPolicyName') as "default_content_key_policy_name",
JSON_EXTRACT(properties, '$.envelopeEncryption') as "envelope_encryption",
JSON_EXTRACT(properties, '$.commonEncryptionCenc') as "common_encryption_cenc",
JSON_EXTRACT(properties, '$.commonEncryptionCbcs') as "common_encryption_cbcs",
JSON_EXTRACT(properties, '$.noEncryption') as "no_encryption",
subscriptionId,
resourceGroupName,
accountName,
streamingPolicyName
FROM azure.media_services.streaming_policies
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
systemData as system_data,
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.defaultContentKeyPolicyName') as "default_content_key_policy_name",
json_extract_path_text(properties, '$.envelopeEncryption') as "envelope_encryption",
json_extract_path_text(properties, '$.commonEncryptionCenc') as "common_encryption_cenc",
json_extract_path_text(properties, '$.commonEncryptionCbcs') as "common_encryption_cbcs",
json_extract_path_text(properties, '$.noEncryption') as "no_encryption",
subscriptionId,
resourceGroupName,
accountName,
streamingPolicyName
FROM azure.media_services.streaming_policies
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';