operation_status
Creates, updates, deletes, gets or lists an operation_status resource.
Overview
| Name | operation_status |
| Type | Resource |
| Id | azure.video_analyzer.operation_status |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Operation resource ID. |
name | string | Operation identifier. |
endTime | string | Operation end time. |
error | object | The error detail. |
startTime | string | Operation start time. |
status | string | Operation status. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, locationName, operationId | Get video analyzer operation status. |
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 |
|---|---|---|
locationName | string | Location name. |
operationId | string | Operation Id. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
Get video analyzer operation status.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.video_analyzer.operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;