Skip to content

Commit

Permalink
add management group registration description to ARM (#10869)
Browse files Browse the repository at this point in the history
* add management group registration description to ARM

* Add response to MG registration description

* fix ID parameter for MG register

* fix API signature linter error

* fix MG register operationID

* fix repsonse schema for MG register

* move MG register to rp section

* update operationId for MG register

* update operationID for MG register
  • Loading branch information
tjegbejimba authored Oct 5, 2020
1 parent 1959aa6 commit 81bc0b2
Showing 1 changed file with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2047,6 +2047,41 @@
}
}
},
"/providers/Microsoft.Management/managementGroups/{groupId}/providers/{resourceProviderNamespace}/register": {
"post": {
"tags": [
"Providers"
],
"operationId": "Providers_RegisterAtManagementGroupScope",
"description": "Registers a management group with a resource provider.",
"parameters": [
{
"name": "resourceProviderNamespace",
"in": "path",
"required": true,
"type": "string",
"description": "The namespace of the resource provider to register."
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/GroupIdParameter"
}
],
"responses": {
"200": {
"description": "OK - Returns information about the resource provider."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/CloudError"
}
}
}
}
},
"/subscriptions/{subscriptionId}/providers/{resourceProviderNamespace}/register": {
"post": {
"tags": [
Expand Down

0 comments on commit 81bc0b2

Please sign in to comment.