vw_remote_rendering_accounts
Creates, updates, deletes, gets or lists a vw_remote_rendering_accounts
resource.
Overview
Name | vw_remote_rendering_accounts |
Type | View |
Id | azure.mixed_reality.vw_remote_rendering_accounts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
plan as plan,
sku as sku,
kind as kind,
systemData as system_data,
JSON_EXTRACT(properties, '$.storageAccountName') as "storage_account_name",
JSON_EXTRACT(properties, '$.accountId') as "account_id",
JSON_EXTRACT(properties, '$.accountDomain') as "account_domain",
subscriptionId,
resourceGroupName,
accountName
FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
plan as plan,
sku as sku,
kind as kind,
systemData as system_data,
json_extract_path_text(properties, '$.storageAccountName') as "storage_account_name",
json_extract_path_text(properties, '$.accountId') as "account_id",
json_extract_path_text(properties, '$.accountDomain') as "account_domain",
subscriptionId,
resourceGroupName,
accountName
FROM azure.mixed_reality.remote_rendering_accounts
WHERE subscriptionId = 'replace-me';