user_settings_with_locations
Creates, updates, deletes, gets or lists a user_settings_with_locations
resource.
Overview
Name | user_settings_with_locations |
Type | Resource |
Id | azure.cloud_shell.user_settings_with_locations |
Fields
- vw_user_settings_with_locations
- user_settings_with_locations
Name | Datatype | Description |
---|---|---|
location | text | field from the properties object |
preferred_location | text | field from the properties object |
preferred_os_type | text | field from the properties object |
preferred_shell_type | text | field from the properties object |
storage_profile | text | field from the properties object |
terminal_settings | text | field from the properties object |
userSettingsName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The cloud shell user settings properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, userSettingsName | Get current user settings for current signed in user. This operation returns settings for the user's cloud shell preferences including preferred location, storage profile, shell type, font and size settings. |
delete | DELETE | location, userSettingsName | Delete cloud shell settings for current signed in user |
SELECT
examples
Get current user settings for current signed in user. This operation returns settings for the user's cloud shell preferences including preferred location, storage profile, shell type, font and size settings.
- vw_user_settings_with_locations
- user_settings_with_locations
SELECT
location,
preferred_location,
preferred_os_type,
preferred_shell_type,
storage_profile,
terminal_settings,
userSettingsName
FROM azure.cloud_shell.vw_user_settings_with_locations
WHERE location = '{{ location }}'
AND userSettingsName = '{{ userSettingsName }}';
SELECT
properties
FROM azure.cloud_shell.user_settings_with_locations
WHERE location = '{{ location }}'
AND userSettingsName = '{{ userSettingsName }}';
DELETE
example
Deletes the specified user_settings_with_locations
resource.
/*+ delete */
DELETE FROM azure.cloud_shell.user_settings_with_locations
WHERE location = '{{ location }}'
AND userSettingsName = '{{ userSettingsName }}';