vw_locations
Creates, updates, deletes, gets or lists a vw_locations
resource.
Overview
Name | vw_locations |
Type | View |
Id | azure_stack.deployment_admin.vw_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
eTag as e_tag,
type as type,
JSON_EXTRACT(properties, '$.location') as "location",
subscriptionId
FROM azure_stack.deployment_admin.locations
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
eTag as e_tag,
type as type,
json_extract_path_text(properties, '$.location') as "location",
subscriptionId
FROM azure_stack.deployment_admin.locations
WHERE subscriptionId = 'replace-me';