Skip to main content

live_pipeline_operation_status

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

Overview

Namelive_pipeline_operation_status
TypeResource
Idazure.video_analyzer.live_pipeline_operation_status

Fields

The following fields are returned by SELECT queries:

Live pipeline operation status was retrieved successfully.

NameDatatypeDescription
namestringThe name of the live pipeline operation.
errorobjectThe error details for the live pipeline operation.
statusstringThe status of the live pipeline operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, accountName, livePipelineName, operationIdGet the operation status of a live pipeline.

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 Azure Video Analyzer account name.
livePipelineNamestringLive pipeline unique identifier.
operationIdstringThe operation ID.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get the operation status of a live pipeline.

SELECT
name,
error,
status
FROM azure.video_analyzer.live_pipeline_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND livePipelineName = '{{ livePipelineName }}' -- required
AND operationId = '{{ operationId }}' -- required
;