Skip to main content

pipeline_job_operation_status

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

Overview

Namepipeline_job_operation_status
TypeResource
Idazure.video_analyzer.pipeline_job_operation_status

Fields

NameDatatypeDescription
namestringThe name of the pipeline job operation.
errorobjectThe error detail.
statusstringThe status of the pipeline job operation.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, operationId, pipelineJobName, resourceGroupName, subscriptionIdGet the operation status of a pipeline job with the given operationId.

SELECT examples

Get the operation status of a pipeline job with the given operationId.

SELECT
name,
error,
status
FROM azure.video_analyzer.pipeline_job_operation_status
WHERE accountName = '{{ accountName }}'
AND operationId = '{{ operationId }}'
AND pipelineJobName = '{{ pipelineJobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';