vw_dev_center
Creates, updates, deletes, gets or lists a vw_dev_center
resource.
Overview
Name | vw_dev_center |
Type | View |
Id | azure.dev_center.vw_dev_center |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
JSON_EXTRACT(properties, '$.planId') as "plan_id",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.projectCatalogSettings') as "project_catalog_settings",
JSON_EXTRACT(properties, '$.networkSettings') as "network_settings",
JSON_EXTRACT(properties, '$.devBoxProvisioningSettings') as "dev_box_provisioning_settings",
JSON_EXTRACT(properties, '$.restrictedResourceTypes') as "restricted_resource_types",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.devCenterUri') as "dev_center_uri",
subscriptionId,
resourceGroupName,
devCenterName
FROM azure.dev_center.dev_center
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
json_extract_path_text(properties, '$.planId') as "plan_id",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.projectCatalogSettings') as "project_catalog_settings",
json_extract_path_text(properties, '$.networkSettings') as "network_settings",
json_extract_path_text(properties, '$.devBoxProvisioningSettings') as "dev_box_provisioning_settings",
json_extract_path_text(properties, '$.restrictedResourceTypes') as "restricted_resource_types",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.devCenterUri') as "dev_center_uri",
subscriptionId,
resourceGroupName,
devCenterName
FROM azure.dev_center.dev_center
WHERE subscriptionId = 'replace-me';