vw_live_pipelines
Creates, updates, deletes, gets or lists a vw_live_pipelines
resource.
Overview
Name | vw_live_pipelines |
Type | View |
Id | azure.video_analyzer.vw_live_pipelines |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.topologyName') as "topology_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.bitrateKbps') as "bitrate_kbps",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
accountName,
livePipelineName
FROM azure.video_analyzer.live_pipelines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.topologyName') as "topology_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.bitrateKbps') as "bitrate_kbps",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
accountName,
livePipelineName
FROM azure.video_analyzer.live_pipelines
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';