vw_workspaces
Creates, updates, deletes, gets or lists a vw_workspaces
resource.
Overview
Name | vw_workspaces |
Type | View |
Id | azure.quantum.vw_workspaces |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
identity as identity,
systemData as system_data,
tags as tags,
JSON_EXTRACT(properties, '$.providers') as "providers",
JSON_EXTRACT(properties, '$.usable') as "usable",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.storageAccount') as "storage_account",
JSON_EXTRACT(properties, '$.endpointUri') as "endpoint_uri",
JSON_EXTRACT(properties, '$.apiKeyEnabled') as "api_key_enabled",
subscriptionId,
resourceGroupName,
workspaceName
FROM azure.quantum.workspaces
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
identity as identity,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.providers') as "providers",
json_extract_path_text(properties, '$.usable') as "usable",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.storageAccount') as "storage_account",
json_extract_path_text(properties, '$.endpointUri') as "endpoint_uri",
json_extract_path_text(properties, '$.apiKeyEnabled') as "api_key_enabled",
subscriptionId,
resourceGroupName,
workspaceName
FROM azure.quantum.workspaces
WHERE subscriptionId = 'replace-me';