vw_consoles
Creates, updates, deletes, gets or lists a vw_consoles
resource.
Overview
Name | vw_consoles |
Type | View |
Id | azure.cloud_shell.vw_consoles |
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",
consoleName
FROM azure.cloud_shell.consoles
WHERE 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",
consoleName
FROM azure.cloud_shell.consoles
WHERE consoleName = 'replace-me';