pipeline_job_operation_status
Creates, updates, deletes, gets or lists a pipeline_job_operation_status
resource.
Overview
Name | pipeline_job_operation_status |
Type | Resource |
Id | azure.video_analyzer.pipeline_job_operation_status |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the pipeline job operation. |
error | object | The error detail. |
status | string | The status of the pipeline job operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, operationId, pipelineJobName, resourceGroupName, subscriptionId | Get 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 }}';