Skip to main content

pipeline_job_operation_statuses

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

Overview

Namepipeline_job_operation_statuses
TypeResource
Idazure_extras.video_analyzer.pipeline_job_operation_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the pipeline job operation.
errorobjectThe error detail. Variables are only populated by the server, and will be ignored when sending a request.
statusstringThe status of the pipeline job operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccount_name, resource_group_name, pipeline_job_name, operation_id, subscription_idGet the operation statuses. Get 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
account_namestringThe Azure Video Analyzer account name.
operation_idstringThe operation ID.
pipeline_job_namestringThe pipeline job name.
resource_group_namestringThe name of the resource group. The name is case insensitive.
subscription_idstring

SELECT examples

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

SELECT
name,
error,
status
FROM azure_extras.video_analyzer.pipeline_job_operation_statuses
WHERE account_name = '{{ account_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND pipeline_job_name = '{{ pipeline_job_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;