remote_rendering_accounts
Creates, updates, deletes, gets or lists a remote_rendering_accounts
resource.
Overview
Name | remote_rendering_accounts |
Type | Resource |
Id | azure.mixed_reality.remote_rendering_accounts |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Name | Datatype | Description |
---|---|---|
identity | object | The identity associated with this account |
kind | object | The kind of account, if supported |
location | string | The geo-location where the resource lives |
plan | object | The plan associated with this account |
properties | object | Property bag. |
sku | object | The sku associated with this account |
systemData | object | System metadata for this account |
tags | object | Resource tags. |
Name | Datatype | Description |
---|---|---|
identity | object | The identity associated with this account |
kind | object | The kind of account, if supported |
location | string | The geo-location where the resource lives |
plan | object | The plan associated with this account |
properties | object | Property bag. |
sku | object | The sku associated with this account |
systemData | object | System metadata for this account |
tags | object | Resource tags. |
Name | Datatype | Description |
---|---|---|
identity | object | The identity associated with this account |
kind | object | The kind of account, if supported |
location | string | The geo-location where the resource lives |
plan | object | The plan associated with this account |
properties | object | Property bag. |
sku | object | The sku associated with this account |
systemData | object | System metadata for this account |
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 | Retrieve a Remote Rendering Account. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | List Resources by Resource Group | |
list_by_subscription | select | subscriptionId | List Remote Rendering Accounts by Subscription | |
create | insert | subscriptionId , resourceGroupName , accountName | Creating or Updating a Remote Rendering Account. | |
update | update | subscriptionId , resourceGroupName , accountName | Updating a Remote Rendering Account | |
delete | delete | subscriptionId , resourceGroupName , accountName | Delete a Remote Rendering Account. | |
regenerate_keys | exec | subscriptionId , resourceGroupName , accountName | Regenerate specified Key of a Remote Rendering 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 | Name of an Mixed Reality Account. |
resourceGroupName | string | Name of an Azure resource group. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
Retrieve a Remote Rendering Account.
SELECT
identity,
kind,
location,
plan,
properties,
sku,
systemData,
tags
FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;
List Resources by Resource Group
SELECT
identity,
kind,
location,
plan,
properties,
sku,
systemData,
tags
FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
List Remote Rendering Accounts by Subscription
SELECT
identity,
kind,
location,
plan,
properties,
sku,
systemData,
tags
FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create
- Manifest
Creating or Updating a Remote Rendering Account.
INSERT INTO azure.mixed_reality.remote_rendering_accounts (
data__tags,
data__location,
data__properties,
data__identity,
data__plan,
data__sku,
data__kind,
subscriptionId,
resourceGroupName,
accountName
)
SELECT
'{{ tags }}',
'{{ location }}',
'{{ properties }}',
'{{ identity }}',
'{{ plan }}',
'{{ sku }}',
'{{ kind }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ accountName }}'
RETURNING
identity,
kind,
location,
plan,
properties,
sku,
systemData,
tags
;
# Description fields are for documentation purposes
- name: remote_rendering_accounts
props:
- name: subscriptionId
value: string
description: Required parameter for the remote_rendering_accounts resource.
- name: resourceGroupName
value: string
description: Required parameter for the remote_rendering_accounts resource.
- name: accountName
value: string
description: Required parameter for the remote_rendering_accounts 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: |
Property bag.
- name: identity
value: object
description: |
The identity associated with this account
- name: plan
value: object
description: |
The plan associated with this account
- name: sku
value: object
description: |
The sku associated with this account
- name: kind
value: object
description: |
The kind of account, if supported
UPDATE
examples
- update
Updating a Remote Rendering Account
UPDATE azure.mixed_reality.remote_rendering_accounts
SET
data__tags = '{{ tags }}',
data__location = '{{ location }}',
data__properties = '{{ properties }}',
data__identity = '{{ identity }}',
data__plan = '{{ plan }}',
data__sku = '{{ sku }}',
data__kind = '{{ kind }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND accountName = '{{ accountName }}' --required
RETURNING
identity,
kind,
location,
plan,
properties,
sku,
systemData,
tags;
DELETE
examples
- delete
Delete a Remote Rendering Account.
DELETE FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND accountName = '{{ accountName }}' --required
;
Lifecycle Methods
- regenerate_keys
Regenerate specified Key of a Remote Rendering Account
EXEC azure.mixed_reality.remote_rendering_accounts.regenerate_keys
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@accountName='{{ accountName }}' --required
@@json=
'{
"serial": {{ serial }}
}'
;