Skip to main content

remote_rendering_accounts_keys

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

Overview

Nameremote_rendering_accounts_keys
TypeResource
Idazure.mixed_reality.remote_rendering_accounts_keys

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
primaryKeystringvalue of primary key.
secondaryKeystringvalue of secondary key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountNameList Both of the 2 Keys 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.

NameDatatypeDescription
accountNamestringName of an Mixed Reality Account.
resourceGroupNamestringName of an Azure resource group.
subscriptionIdstringThe Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)

SELECT examples

List Both of the 2 Keys of a Remote Rendering Account

SELECT
primaryKey,
secondaryKey
FROM azure.mixed_reality.remote_rendering_accounts_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;