Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"type": "Microsoft.Management/managementGroups",
"name": "GroupToDelete",
"status": "NotStarted"
},
"headers": {
"azure-asyncoperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/delete/asyncOperation/status/managementGroups/GroupToDelete?api-version=2020-10-01"
}
},
"204": {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"properties": {
"displayName": "S5",
"parent": {
"id": "/providers/Microsoft.Management/managementGroups/Group"
"id": "/providers/Microsoft.Management/managementGroups/Group",
"name": "name",
"displayName": "displayName"
},
"state": "Active",
"tenant": "e751ac82-623b-4913-8d74-22637c832373"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"parameters": {
"api-version": "2020-10-01"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"display": {
"provider": "aaaaaaaaaaaaaaaaaaaaa",
"resource": "aaaaaaaaaaaaa",
"operation": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"description": "aaaaaaaaaaaaaaaaaaaaaa"
}
}
],
"nextLink": "aaaaaaaaaaaaaaaaaaa"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,11 @@
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"List Operations": {
"$ref": "./examples/ListOperations.json"
}
}
}
},
Expand Down Expand Up @@ -1168,7 +1173,7 @@
},
"parent": {
"title": "Parent",
"$ref": "#/definitions/DescendantParentGroupInfo",
"$ref": "#/definitions/ParentGroupBagInfo",
"x-nullable": true
},
"state": {
Expand Down Expand Up @@ -1574,6 +1579,24 @@
}
}
},
"ParentGroupBagInfo": {
"description": "The ID, name and displayName of the parent management group.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000"
},
"name": {
"type": "string",
"description": "The name of the parent management group. For example, 00000000-0000-0000-0000-000000000000"
},
"displayName": {
"type": "string",
"description": "The friendly name of the parent management group."
}
}
},
"EntityListResult": {
"description": "Describes the result of the request to view entities.",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"properties": {
"displayName": "Group",
"parent": {
"id": "/providers/Microsoft.Management/managementGroups/Group"
"id": "/providers/Microsoft.Management/managementGroups/Group",
"name": "name",
"displayName": "displayName"
},
"state": "Active",
"tenant": "e751ac82-623b-4913-8d74-22637c832373"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"properties": {
"displayName": "S5",
"parent": {
"id": "/providers/Microsoft.Management/managementGroups/Group"
"id": "/providers/Microsoft.Management/managementGroups/Group",
"name": "name",
"displayName": "displayName"
},
"state": "Active",
"tenant": "e751ac82-623b-4913-8d74-22637c832373"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@
},
"parent": {
"title": "Parent",
"$ref": "#/definitions/DescendantParentGroupInfo",
"$ref": "#/definitions/ParentGroupBagInfo",
"x-nullable": true
},
"state": {
Expand Down Expand Up @@ -1356,6 +1356,18 @@
"Microsoft.Management/managementGroups",
"/subscriptions"
],
"x-ms-enum": {
"name": "ManagementGroupChildType",
"modelAsString": false,
"values": [
{
"value": "Microsoft.Management/managementGroups"
},
{
"value": "/subscriptions"
}
]
},
"description": "The type of child resource."
},
"OperationResults": {
Expand Down Expand Up @@ -1596,6 +1608,24 @@
}
}
},
"ParentGroupBagInfo": {
"description": "The ID, name and displayName of the parent management group.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The fully qualified ID for the parent management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000"
},
"name": {
"type": "string",
"description": "The name of the parent management group. For example, 00000000-0000-0000-0000-000000000000"
},
"displayName": {
"type": "string",
"description": "The friendly name of the parent management group."
}
}
},
"EntityListResult": {
"description": "Describes the result of the request to view entities.",
"properties": {
Expand Down Expand Up @@ -1926,6 +1956,24 @@
"edit",
"delete"
],
"x-ms-enum": {
"name": "Permissions",
"modelAsString": false,
"values": [
{
"value": "noaccess"
},
{
"value": "view"
},
{
"value": "edit"
},
{
"value": "delete"
}
]
},
"description": "The users specific permissions to this item."
},
"CheckNameAvailabilityRequest": {
Expand Down