Skip to main content

operation_results

Creates, updates, deletes, gets or lists an operation_results resource.

Overview

Nameoperation_results
TypeResource
Idazure.video_analyzer.operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
identityobjectThe identities associated to the Video Analyzer resource.
locationstringThe geo-location where the resource lives
propertiesobjectThe resource properties.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationName, operationIdGet 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.

NameDatatypeDescription
locationNamestringLocation name.
operationIdstringOperation Id.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;