live_pipeline_operation_statuses
Creates, updates, deletes, gets or lists a live_pipeline_operation_statuses resource.
Overview
| Name | live_pipeline_operation_statuses |
| Type | Resource |
| Id | azure_extras.video_analyzer.live_pipeline_operation_statuses |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the live pipeline operation. |
error | object | The error details for the live pipeline operation. |
status | string | The status of the live pipeline operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | live_pipeline_name, account_name, resource_group_name, operation_id, subscription_id | Get the operation status. Get the operation status of a live pipeline. |
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. |
live_pipeline_name | string | Live pipeline unique identifier. |
operation_id | string | The operation ID. |
resource_group_name | string | The name of the resource group. The name is case insensitive. |
subscription_id | string |
SELECT examples
- get
Get the operation status. Get the operation status of a live pipeline.
SELECT
name,
error,
status
FROM azure_extras.video_analyzer.live_pipeline_operation_statuses
WHERE live_pipeline_name = '{{ live_pipeline_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;