live_pipeline_operation_status
Creates, updates, deletes, gets or lists a live_pipeline_operation_status
resource.
Overview
Name | live_pipeline_operation_status |
Type | Resource |
Id | azure.video_analyzer.live_pipeline_operation_status |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the live pipeline operation. |
error | object | The error detail. |
status | string | The status of the live pipeline operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, livePipelineName, operationId, resourceGroupName, subscriptionId | Get the operation status of a live pipeline. |
SELECT
examples
Get the operation status of a live pipeline.
SELECT
name,
error,
status
FROM azure.video_analyzer.live_pipeline_operation_status
WHERE accountName = '{{ accountName }}'
AND livePipelineName = '{{ livePipelineName }}'
AND operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';