vw_user_settings_with_locations
Creates, updates, deletes, gets or lists a vw_user_settings_with_locations
resource.
Overview
Name | vw_user_settings_with_locations |
Type | View |
Id | azure.cloud_shell.vw_user_settings_with_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.preferredOsType') as "preferred_os_type",
JSON_EXTRACT(properties, '$.preferredLocation') as "preferred_location",
JSON_EXTRACT(properties, '$.storageProfile') as "storage_profile",
JSON_EXTRACT(properties, '$.terminalSettings') as "terminal_settings",
JSON_EXTRACT(properties, '$.preferredShellType') as "preferred_shell_type",
location,
userSettingsName
FROM azure.cloud_shell.user_settings_with_locations
WHERE location = 'replace-me' AND userSettingsName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.preferredOsType') as "preferred_os_type",
json_extract_path_text(properties, '$.preferredLocation') as "preferred_location",
json_extract_path_text(properties, '$.storageProfile') as "storage_profile",
json_extract_path_text(properties, '$.terminalSettings') as "terminal_settings",
json_extract_path_text(properties, '$.preferredShellType') as "preferred_shell_type",
location,
userSettingsName
FROM azure.cloud_shell.user_settings_with_locations
WHERE location = 'replace-me' AND userSettingsName = 'replace-me';