Skip to main content

entities

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

Overview

Nameentities
TypeResource
Idazure.management_groups.entities

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTList all entities (Management Groups, Subscriptions, etc.) for the authenticated user.

SELECT examples

List all entities (Management Groups, Subscriptions, etc.) for the authenticated user.

SELECT
id,
name,
properties,
type
FROM azure.management_groups.entities
;