vw_notebook_workspaces
Creates, updates, deletes, gets or lists a vw_notebook_workspaces
resource.
Overview
Name | vw_notebook_workspaces |
Type | View |
Id | azure.cosmos_db.vw_notebook_workspaces |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.notebookServerEndpoint') as "notebook_server_endpoint",
JSON_EXTRACT(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
accountName,
notebookWorkspaceName
FROM azure.cosmos_db.notebook_workspaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.notebookServerEndpoint') as "notebook_server_endpoint",
json_extract_path_text(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
accountName,
notebookWorkspaceName
FROM azure.cosmos_db.notebook_workspaces
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';