vw_management_groups
Creates, updates, deletes, gets or lists a vw_management_groups
resource.
Overview
Name | vw_management_groups |
Type | View |
Id | azure.management_groups.vw_management_groups |
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, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.details') as "details",
JSON_EXTRACT(properties, '$.children') as "children",
groupId
FROM azure.management_groups.management_groups
WHERE groupId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.details') as "details",
json_extract_path_text(properties, '$.children') as "children",
groupId
FROM azure.management_groups.management_groups
WHERE groupId = 'replace-me';