video_analyzer_operation_statuses
Creates, updates, deletes, gets or lists a video_analyzer_operation_statuses resource.
Overview
| Name | video_analyzer_operation_statuses |
| Type | Resource |
| Id | azure_extras.video_analyzer.video_analyzer_operation_statuses |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | |
name | string | |
endTime | string | |
error | object | The error detail. Variables are only populated by the server, and will be ignored when sending a request. |
startTime | string | |
status | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location_name, operation_id, subscription_id | Get operation status. 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 |
|---|---|---|
location_name | string | Location name. |
operation_id | string | Operation Id. |
subscription_id | string |
SELECT examples
- get
Get operation status. Get video analyzer operation status.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_extras.video_analyzer.video_analyzer_operation_statuses
WHERE location_name = '{{ location_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;