entities
Creates, updates, deletes, gets or lists a entities
resource.
Overview
Name | entities |
Type | Resource |
Id | azure.management_groups.entities |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified ID for the entity. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000 |
name | string | The name of the entity. For example, 00000000-0000-0000-0000-000000000000 |
properties | object | The generic properties of an entity. |
type | string | The type of the resource. For example, Microsoft.Management/managementGroups |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| List 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
;