vw_console_with_locations
Creates, updates, deletes, gets or lists a vw_console_with_locations
resource.
Overview
Name | vw_console_with_locations |
Type | View |
Id | azure.cloud_shell.vw_console_with_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.uri') as "uri",
location,
consoleName
FROM azure.cloud_shell.console_with_locations
WHERE location = 'replace-me' AND consoleName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.osType') as "os_type",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.uri') as "uri",
location,
consoleName
FROM azure.cloud_shell.console_with_locations
WHERE location = 'replace-me' AND consoleName = 'replace-me';