vw_serial_ports
Creates, updates, deletes, gets or lists a vw_serial_ports
resource.
Overview
Name | vw_serial_ports |
Type | View |
Id | azure.serial_console.vw_serial_ports |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.connectionState') as "connection_state",
subscriptionId,
resourceGroupName,
resourceProviderNamespace,
parentResourceType,
parentResource,
serialPort
FROM azure.serial_console.serial_ports
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.connectionState') as "connection_state",
subscriptionId,
resourceGroupName,
resourceProviderNamespace,
parentResourceType,
parentResource,
serialPort
FROM azure.serial_console.serial_ports
WHERE subscriptionId = 'replace-me';