video_analyzer_operation_results
Creates, updates, deletes, gets or lists a video_analyzer_operation_results resource.
Overview
| Name | video_analyzer_operation_results |
| Type | Resource |
| Id | azure_extras.video_analyzer.video_analyzer_operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
encryption | object | Defines 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. |
endpoints | array | The endpoints associated with this resource. |
identity | object | The managed identity for the Video Analyzer resource. All required parameters must be populated in order to send to Azure. |
iotHubs | array | |
location | string | |
networkAccessControl | object | Network access control for video analyzer account. |
privateEndpointConnections | array | Private Endpoint Connections created under Video Analyzer account. |
provisioningState | string | Provisioning state of the Video Analyzer account. Possible values include: "Failed", "InProgress", "Succeeded". |
publicNetworkAccess | string | |
storageAccounts | array | |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
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 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.
| Name | Datatype | Description |
|---|---|---|
location_name | string | Location name. |
operation_id | string | Operation Id. |
subscription_id | string |
SELECT examples
- get
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
;