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

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectCloud shell console properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectconsoleName, locationGets the console for the user.
deletedeleteconsoleName, locationDeletes the console

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
consoleNamestringThe name of the console
locationstringThe provider location

SELECT examples

Gets the console for the user.

SELECT
properties
FROM azure.cloud_shell.console_with_locations
WHERE consoleName = '{{ consoleName }}' -- required
AND location = '{{ location }}' -- required
;

DELETE examples

Deletes the console

DELETE FROM azure.cloud_shell.console_with_locations
WHERE consoleName = '{{ consoleName }}' --required
AND location = '{{ location }}' --required
;