video_analyzers
Creates, updates, deletes, gets or lists a video_analyzers
resource.
Overview
Name | video_analyzers |
Type | Resource |
Id | azure.video_analyzer.video_analyzers |
Fields
- vw_video_analyzers
- video_analyzers
Name | Datatype | Description |
---|---|---|
accountName | text | field from the properties object |
encryption | text | field from the properties object |
endpoints | text | field from the properties object |
identity | text | The managed identity for the Video Analyzer resource. |
iot_hubs | text | field from the properties object |
location | text | The geo-location where the resource lives |
network_access_control | text | field from the properties object |
private_endpoint_connections | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_access | text | field from the properties object |
resourceGroupName | text | field from the properties object |
storage_accounts | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
identity | object | The managed identity for the Video Analyzer resource. |
location | string | The geo-location where the resource lives |
properties | object | The properties of the Video Analyzer account. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, resourceGroupName, subscriptionId | Get the details of the specified Video Analyzer account |
list | SELECT | resourceGroupName, subscriptionId | Lists the Video Analyzer accounts in the specified resource group. |
list_by_subscription | SELECT | subscriptionId | List all Video Analyzer accounts in the specified subscription. |
create_or_update | INSERT | accountName, resourceGroupName, subscriptionId | Create or update an instance of a Video Analyzer account |
delete | DELETE | accountName, resourceGroupName, subscriptionId | Delete the specified Video Analyzer account |
update | UPDATE | accountName, resourceGroupName, subscriptionId | Updates an existing instance of Video Analyzer account |
SELECT
examples
List all Video Analyzer accounts in the specified subscription.
- vw_video_analyzers
- video_analyzers
SELECT
accountName,
encryption,
endpoints,
identity,
iot_hubs,
location,
network_access_control,
private_endpoint_connections,
provisioning_state,
public_network_access,
resourceGroupName,
storage_accounts,
subscriptionId,
tags
FROM azure.video_analyzer.vw_video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
identity,
location,
properties,
tags
FROM azure.video_analyzer.video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new video_analyzers
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.video_analyzer.video_analyzers (
accountName,
resourceGroupName,
subscriptionId,
tags,
location,
properties,
identity
)
SELECT
'{{ accountName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ tags }}',
'{{ location }}',
'{{ properties }}',
'{{ identity }}'
;
- name: your_resource_model_name
props:
- name: tags
value: object
- name: location
value: string
- name: properties
value:
- name: storageAccounts
value:
- - name: id
value: string
- name: identity
value:
- name: userAssignedIdentity
value: string
- name: status
value: string
- name: endpoints
value:
- - name: endpointUrl
value: string
- name: type
value: string
- name: encryption
value:
- name: type
value: string
- name: keyVaultProperties
value:
- name: keyIdentifier
value: string
- name: currentKeyIdentifier
value: string
- name: status
value: string
- name: iotHubs
value:
- - name: id
value: string
- name: status
value: string
- name: publicNetworkAccess
value: string
- name: networkAccessControl
value:
- name: integration
value:
- name: publicNetworkAccess
value: string
- name: provisioningState
value: string
- name: privateEndpointConnections
value:
- - name: properties
value:
- name: privateEndpoint
value:
- name: id
value: string
- name: privateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
- name: provisioningState
value: []
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: systemData
value:
- name: createdBy
value: string
- name: createdByType
value: string
- name: createdAt
value: string
- name: lastModifiedBy
value: string
- name: lastModifiedByType
value: string
- name: lastModifiedAt
value: string
- name: identity
value:
- name: type
value: string
- name: userAssignedIdentities
value: []
UPDATE
example
Updates a video_analyzers
resource.
/*+ update */
UPDATE azure.video_analyzer.video_analyzers
SET
tags = '{{ tags }}',
properties = '{{ properties }}',
identity = '{{ identity }}'
WHERE
accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified video_analyzers
resource.
/*+ delete */
DELETE FROM azure.video_analyzer.video_analyzers
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';