Skip to main content

video_analyzer_operation_results

Creates, updates, deletes, gets or lists a video_analyzer_operation_results resource.

Overview

Namevideo_analyzer_operation_results
TypeResource
Idazure_extras.video_analyzer.video_analyzer_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
encryptionobjectDefines how the Video Analyzer account is (optionally) encrypted. Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure.
endpointsarrayThe endpoints associated with this resource.
identityobjectThe managed identity for the Video Analyzer resource. All required parameters must be populated in order to send to Azure.
iotHubsarray
locationstring
networkAccessControlobjectNetwork access control for video analyzer account.
privateEndpointConnectionsarrayPrivate Endpoint Connections created under Video Analyzer account.
provisioningStatestringProvisioning state of the Video Analyzer account. Possible values include: "Failed", "InProgress", "Succeeded".
publicNetworkAccessstring
storageAccountsarray
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobject
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation_name, operation_id, subscription_idGet operation result. 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.

NameDatatypeDescription
location_namestringLocation name.
operation_idstringOperation Id.
subscription_idstring

SELECT examples

Get operation result. Get video analyzer operation result.

SELECT
id,
name,
encryption,
endpoints,
identity,
iotHubs,
location,
networkAccessControl,
privateEndpointConnections,
provisioningState,
publicNetworkAccess,
storageAccounts,
systemData,
tags,
type
FROM azure_extras.video_analyzer.video_analyzer_operation_results
WHERE location_name = '{{ location_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;