Microsoft.Management (preview:2017-11-01)

2025/09/26 • 8 new, 8 deleted methods

ManagementGroups_List (new)
Description List management groups for the authenticated user.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups
{
api-version: string ,
Cache-Control: string ,
$skiptoken: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Get (new)
Description Get the details of the management group.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
$expand: string ,
$recurse: boolean ,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_CreateOrUpdate (new)
Description Create or update a management group. If a management group is already created and a subsequent create request is issued with different properties, the management group properties will be updated.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
createManagementGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Update (new)
Description Update a management group.
Reference Link ¶

⚼ Request

PATCH:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
createManagementGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Delete (new)
Description Delete management group. If a management group contains child resources, the request will fail.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (200)

{}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroupSubscriptions_Create (new)
Description Associates existing subscription with the management group.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroupSubscriptions_Delete (new)
Description De-associates subscription from the management group.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
Operations_List (new)
Description Lists all of the available Management REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_List (removed)
Description List management groups for the authenticated user.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups
{
api-version: string ,
Cache-Control: string ,
$skiptoken: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Get (removed)
Description Get the details of the management group.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
$expand: string ,
$recurse: boolean ,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_CreateOrUpdate (removed)
Description Create or update a management group. If a management group is already created and a subsequent create request is issued with different properties, the management group properties will be updated.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
createManagementGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Update (removed)
Description Update a management group.
Reference Link ¶

⚼ Request

PATCH:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
createManagementGroupRequest:
{
displayName: string ,
parentId: string ,
}
,
Cache-Control: string ,
}

⚐ Response (200)

{
id: string ,
type: string ,
name: string ,
properties:
{
tenantId: string ,
displayName: string ,
details:
{
version: number ,
updatedTime: string ,
updatedBy: string ,
parent:
{
parentId: string ,
displayName: string ,
}
,
}
,
children:
[
{
childType: enum ,
childId: string ,
displayName: string ,
children:
[
string ,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroups_Delete (removed)
Description Delete management group. If a management group contains child resources, the request will fail.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}
{
groupId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (200)

{}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroupSubscriptions_Create (removed)
Description Associates existing subscription with the management group.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
ManagementGroupSubscriptions_Delete (removed)
Description De-associates subscription from the management group.
Reference Link ¶

⚼ Request

DELETE:  /providers/Microsoft.Management/managementGroups/{groupId}/subscriptions/{subscriptionId}
{
groupId: string ,
subscriptionId: string ,
api-version: string ,
Cache-Control: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}
Operations_List (removed)
Description Lists all of the available Management REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Management/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
}
,
}