live_pipeline_operation_status
Creates, updates, deletes, gets or lists a live_pipeline_operation_status
resource.
Overview
Name | live_pipeline_operation_status |
Type | Resource |
Id | azure.video_analyzer.live_pipeline_operation_status |
Fields
The following fields are returned by SELECT
queries:
- get
Live pipeline operation status was retrieved successfully.
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 | subscriptionId , resourceGroupName , accountName , livePipelineName , operationId | 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 |
---|---|---|
accountName | string | The Azure Video Analyzer account name. |
livePipelineName | string | Live pipeline unique identifier. |
operationId | string | The operation ID. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
Get the operation status of a live pipeline.
SELECT
name,
error,
status
FROM azure.video_analyzer.live_pipeline_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND livePipelineName = '{{ livePipelineName }}' -- required
AND operationId = '{{ operationId }}' -- required
;