Skip to main content

descendants

Creates, updates, deletes, gets or lists a descendants resource.

Overview

Namedescendants
TypeResource
Idazure.management_groups.descendants

Fields

NameDatatypeDescription
idstringThe fully qualified ID for the descendant. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 or /subscriptions/0000000-0000-0000-0000-000000000000
namestringThe name of the descendant. For example, 00000000-0000-0000-0000-000000000000
propertiesobjectThe generic properties of an descendant.
typestringThe type of the resource. For example, Microsoft.Management/managementGroups or /subscriptions

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupIdList 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 }}';