Skip to content

Commit

Permalink
Add delete owner (#4190)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel authored Oct 11, 2018
1 parent 0844993 commit de8a913
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions specification/graphrbac/data-plane/stable/1.6/graphrbac.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,48 @@
}
}
},
"/{tenantID}/applications/{applicationObjectId}/$links/owners/{ownerObjectId}": {
"delete": {
"tags": [
"ApplicationOwners"
],
"operationId": "Applications_RemoveOwner",
"description": "Remove a member from owners.",
"parameters": [
{
"name": "applicationObjectId",
"in": "path",
"required": true,
"type": "string",
"description": "The object ID of the application from which to remove the owner."
},
{
"name": "ownerObjectId",
"in": "path",
"required": true,
"type": "string",
"description": "Owner object id"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/tenantIDInPath"
}
],
"responses": {
"204": {
"description": "No Content. Indicates success. No response body is returned."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/GraphError"
}
}
}
}
},
"/{tenantID}/applications/{applicationObjectId}/keyCredentials": {
"get": {
"tags": [
Expand Down Expand Up @@ -1119,6 +1161,48 @@
}
}
},
"/{tenantID}/groups/{objectId}/$links/owners/{ownerObjectId}": {
"delete": {
"tags": [
"GroupsOwners"
],
"operationId": "Groups_RemoveOwner",
"description": "Remove a member from owners.",
"parameters": [
{
"name": "objectId",
"in": "path",
"required": true,
"type": "string",
"description": "The object ID of the group from which to remove the owner."
},
{
"name": "ownerObjectId",
"in": "path",
"required": true,
"type": "string",
"description": "Owner object id"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/tenantIDInPath"
}
],
"responses": {
"204": {
"description": "No Content. Indicates success. No response body is returned."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/GraphError"
}
}
}
}
},
"/{tenantID}/servicePrincipals": {
"post": {
"tags": [
Expand Down

0 comments on commit de8a913

Please sign in to comment.