Skip to main content

console_with_locations

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

Overview

Nameconsole_with_locations
TypeResource
Idazure.cloud_shell.console_with_locations

Fields

NameDatatypeDescription
consoleNametextfield from the properties object
locationtextfield from the properties object
os_typetextfield from the properties object
provisioning_statetextfield from the properties object
uritextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconsoleName, locationGets the console for the user.
deleteDELETEconsoleName, locationDeletes the console

SELECT examples

Gets the console for the user.

SELECT
consoleName,
location,
os_type,
provisioning_state,
uri
FROM azure.cloud_shell.vw_console_with_locations
WHERE consoleName = '{{ consoleName }}'
AND location = '{{ location }}';

DELETE example

Deletes the specified console_with_locations resource.

/*+ delete */
DELETE FROM azure.cloud_shell.console_with_locations
WHERE consoleName = '{{ consoleName }}'
AND location = '{{ location }}';