vw_lab_plans
Creates, updates, deletes, gets or lists a vw_lab_plans
resource.
Overview
Name | vw_lab_plans |
Type | View |
Id | azure.lab_services.vw_lab_plans |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
systemData as system_data,
identity as identity,
JSON_EXTRACT(properties, '$.defaultConnectionProfile') as "default_connection_profile",
JSON_EXTRACT(properties, '$.defaultAutoShutdownProfile') as "default_auto_shutdown_profile",
JSON_EXTRACT(properties, '$.defaultNetworkProfile') as "default_network_profile",
JSON_EXTRACT(properties, '$.allowedRegions') as "allowed_regions",
JSON_EXTRACT(properties, '$.sharedGalleryId') as "shared_gallery_id",
JSON_EXTRACT(properties, '$.supportInfo') as "support_info",
JSON_EXTRACT(properties, '$.linkedLmsInstance') as "linked_lms_instance",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceOperationError') as "resource_operation_error",
subscriptionId,
resourceGroupName,
labPlanName
FROM azure.lab_services.lab_plans
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
systemData as system_data,
identity as identity,
json_extract_path_text(properties, '$.defaultConnectionProfile') as "default_connection_profile",
json_extract_path_text(properties, '$.defaultAutoShutdownProfile') as "default_auto_shutdown_profile",
json_extract_path_text(properties, '$.defaultNetworkProfile') as "default_network_profile",
json_extract_path_text(properties, '$.allowedRegions') as "allowed_regions",
json_extract_path_text(properties, '$.sharedGalleryId') as "shared_gallery_id",
json_extract_path_text(properties, '$.supportInfo') as "support_info",
json_extract_path_text(properties, '$.linkedLmsInstance') as "linked_lms_instance",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceOperationError') as "resource_operation_error",
subscriptionId,
resourceGroupName,
labPlanName
FROM azure.lab_services.lab_plans
WHERE subscriptionId = 'replace-me';