operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.video_analyzer.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
identity | object | The identities associated to the Video Analyzer resource. |
location | string | The geo-location where the resource lives |
properties | object | The resource properties. |
tags | object | Resource tags. |
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 result. |
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 result.
SELECT
identity,
location,
properties,
tags
FROM azure.video_analyzer.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;