console_with_locations
Creates, updates, deletes, gets or lists a console_with_locations
resource.
Overview
Name | console_with_locations |
Type | Resource |
Id | azure.cloud_shell.console_with_locations |
Fields
- vw_console_with_locations
- console_with_locations
Name | Datatype | Description |
---|---|---|
consoleName | text | field from the properties object |
location | text | field from the properties object |
os_type | text | field from the properties object |
provisioning_state | text | field from the properties object |
uri | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Cloud shell console properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | consoleName, location | Gets the console for the user. |
delete | DELETE | consoleName, location | Deletes the console |
SELECT
examples
Gets the console for the user.
- vw_console_with_locations
- console_with_locations
SELECT
consoleName,
location,
os_type,
provisioning_state,
uri
FROM azure.cloud_shell.vw_console_with_locations
WHERE consoleName = '{{ consoleName }}'
AND location = '{{ location }}';
SELECT
properties
FROM azure.cloud_shell.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 }}';