vw_accounts
Creates, updates, deletes, gets or lists a vw_accounts
resource.
Overview
Name | vw_accounts |
Type | View |
Id | azure.maps.vw_accounts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
sku as sku,
kind as kind,
systemData as system_data,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.uniqueId') as "unique_id",
JSON_EXTRACT(properties, '$.disableLocalAuth') as "disable_local_auth",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.linkedResources') as "linked_resources",
JSON_EXTRACT(properties, '$.cors') as "cors",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.locations') as "locations",
subscriptionId,
resourceGroupName,
accountName
FROM azure.maps.accounts
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
sku as sku,
kind as kind,
systemData as system_data,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.uniqueId') as "unique_id",
json_extract_path_text(properties, '$.disableLocalAuth') as "disable_local_auth",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.linkedResources') as "linked_resources",
json_extract_path_text(properties, '$.cors') as "cors",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.locations') as "locations",
subscriptionId,
resourceGroupName,
accountName
FROM azure.maps.accounts
WHERE subscriptionId = 'replace-me';