operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.video_analyzer.operation_status |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, operationId, subscriptionId | Get video analyzer operation status. |
SELECT
examples
Get video analyzer operation status.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.video_analyzer.operation_status
WHERE locationName = '{{ locationName }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';