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
The following fields are returned by SELECT
queries:
- get
- list
- list_by_subscription
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. |
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. |
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 , resourceGroupName , accountName | Get the details of the specified Video Analyzer account | |
list | select | subscriptionId , resourceGroupName | 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 | subscriptionId , resourceGroupName , accountName | Create or update an instance of a Video Analyzer account | |
update | update | subscriptionId , resourceGroupName , accountName | Updates an existing instance of Video Analyzer account | |
delete | delete | subscriptionId , resourceGroupName , accountName | Delete the specified Video Analyzer account |
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 |
---|---|---|
accountName | string | The Video Analyzer account name. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list
- list_by_subscription
Get the details of the specified Video Analyzer account
SELECT
identity,
location,
properties,
tags
FROM azure.video_analyzer.video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;
Lists the Video Analyzer accounts in the specified resource group.
SELECT
identity,
location,
properties,
tags
FROM azure.video_analyzer.video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
List all Video Analyzer accounts in the specified subscription.
SELECT
identity,
location,
properties,
tags
FROM azure.video_analyzer.video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Create or update an instance of a Video Analyzer account
INSERT INTO azure.video_analyzer.video_analyzers (
data__tags,
data__location,
data__properties,
data__identity,
subscriptionId,
resourceGroupName,
accountName
)
SELECT
'{{ tags }}',
'{{ location }}',
'{{ properties }}',
'{{ identity }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ accountName }}'
RETURNING
identity,
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: video_analyzers
props:
- name: subscriptionId
value: string
description: Required parameter for the video_analyzers resource.
- name: resourceGroupName
value: string
description: Required parameter for the video_analyzers resource.
- name: accountName
value: string
description: Required parameter for the video_analyzers resource.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
- name: properties
value: object
description: |
The resource properties.
- name: identity
value: object
description: |
The identities associated to the Video Analyzer resource.
UPDATE
examples
- update
Updates an existing instance of Video Analyzer account
UPDATE azure.video_analyzer.video_analyzers
SET
data__tags = '{{ tags }}',
data__properties = '{{ properties }}',
data__identity = '{{ identity }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND accountName = '{{ accountName }}' --required
RETURNING
identity,
location,
properties,
tags;
DELETE
examples
- delete
Delete the specified Video Analyzer account
DELETE FROM azure.video_analyzer.video_analyzers
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND accountName = '{{ accountName }}' --required
;