descendants
Creates, updates, deletes, gets or lists a descendants
resource.
Overview
Name | descendants |
Type | Resource |
Id | azure.management_groups.descendants |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified ID for the descendant. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 or /subscriptions/0000000-0000-0000-0000-000000000000 |
name | string | The name of the descendant. For example, 00000000-0000-0000-0000-000000000000 |
properties | object | The generic properties of an descendant. |
type | string | The type of the resource. For example, Microsoft.Management/managementGroups or /subscriptions |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | groupId | List all entities that descend from a management group. |
SELECT
examples
List all entities that descend from a management group.
SELECT
id,
name,
properties,
type
FROM azure.management_groups.descendants
WHERE groupId = '{{ groupId }}';