pipeline_job_operation_statuses
Creates, updates, deletes, gets or lists a pipeline_job_operation_statuses resource.
Overview
| Name | pipeline_job_operation_statuses |
| Type | Resource |
| Id | azure_extras.video_analyzer.pipeline_job_operation_statuses |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the pipeline job operation. |
error | object | The error detail. Variables are only populated by the server, and will be ignored when sending a request. |
status | string | The status of the pipeline job operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | account_name, resource_group_name, pipeline_job_name, operation_id, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
account_name | string | The Azure Video Analyzer account name. |
operation_id | string | The operation ID. |
pipeline_job_name | string | The pipeline job name. |
resource_group_name | string | The name of the resource group. The name is case insensitive. |
subscription_id | string |
SELECT examples
- get
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
;