Skip to main content

user_settings_with_locations

Creates, updates, deletes, gets or lists a user_settings_with_locations resource.

Overview

Nameuser_settings_with_locations
TypeResource
Idazure.cloud_shell.user_settings_with_locations

Fields

NameDatatypeDescription
locationtextfield from the properties object
preferred_locationtextfield from the properties object
preferred_os_typetextfield from the properties object
preferred_shell_typetextfield from the properties object
storage_profiletextfield from the properties object
terminal_settingstextfield from the properties object
userSettingsNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, userSettingsNameGet 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.
deleteDELETElocation, userSettingsNameDelete 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.

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 }}';

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 }}';