spatial_anchors_accounts_keys
Creates, updates, deletes, gets or lists a spatial_anchors_accounts_keys
resource.
Overview
Name | spatial_anchors_accounts_keys |
Type | Resource |
Id | azure.mixed_reality.spatial_anchors_accounts_keys |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
primaryKey | string | value of primary key. |
secondaryKey | string | value of secondary key. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName | List Both of the 2 Keys of a Spatial Anchors 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
- list
List Both of the 2 Keys of a Spatial Anchors Account
SELECT
primaryKey,
secondaryKey
FROM azure.mixed_reality.spatial_anchors_accounts_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;