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

The following fields are returned by SELECT queries:

The pipeline job operation status was retrieved successfully.

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, accountName, pipelineJobName, operationIdGet the operation status of a pipeline job with the given operationId.

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.
operationIdstringThe operation ID.
pipelineJobNamestringThe pipeline job name.
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 pipeline job with the given operationId.

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