-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Authorization - Add roleassignmentmetrics calls and fix correctness i…
…ssues (#13119) * add roleassignmentmetrics calls and fix correctness issues * update parameter * update version * fix new ci requirement
- Loading branch information
Showing
11 changed files
with
205 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
...r/Microsoft.Authorization/preview/2019-08-01-preview/authorization-UsageMetricsCalls.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
"title": "AuthorizationManagementClient", | ||
"version": "2019-08-01-preview", | ||
"description": "Role based access control provides you a way to apply granular level policy administration down to individual resources or resource groups. These operations enable you to manage role assignments. A role assignment grants access to Azure Active Directory users." | ||
}, | ||
"host": "management.azure.com", | ||
"schemes": [ | ||
"https" | ||
], | ||
"consumes": [ | ||
"application/json" | ||
], | ||
"produces": [ | ||
"application/json" | ||
], | ||
"security": [ | ||
{ | ||
"azure_auth": [ | ||
"user_impersonation" | ||
] | ||
} | ||
], | ||
"securityDefinitions": { | ||
"azure_auth": { | ||
"type": "oauth2", | ||
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", | ||
"flow": "implicit", | ||
"description": "Azure Active Directory OAuth2 Flow", | ||
"scopes": { | ||
"user_impersonation": "impersonate your user account" | ||
} | ||
} | ||
}, | ||
"paths": { | ||
"/subscriptions/{subscriptionId}/providers/Microsoft.Authorization/roleAssignmentsUsageMetrics": { | ||
"get": { | ||
"tags": [ | ||
"RoleAssignmentMetrics" | ||
], | ||
"operationId": "RoleAssignmentMetrics_GetMetricsForSubscription", | ||
"description": "Get role assignment usage metrics for a subscription", | ||
"parameters": [ | ||
{ | ||
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter" | ||
}, | ||
{ | ||
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter" | ||
} | ||
], | ||
"responses": { | ||
"200": { | ||
"description": "Returns current role assignment usage metrics.", | ||
"schema": { | ||
"$ref": "#/definitions/RoleAssignmentMetricsResult" | ||
} | ||
}, | ||
"default": { | ||
"description": "Error response describing why the operation failed.", | ||
"schema": { | ||
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse" | ||
} | ||
} | ||
}, | ||
"x-ms-examples": { | ||
"Get role assignment metrics for subscription": { | ||
"$ref": "./examples/RoleAssignmentMetrics_GetForSubscription.json" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"definitions": { | ||
"RoleAssignmentMetricsResult": { | ||
"properties": { | ||
"subscriptionId": { | ||
"type": "string", | ||
"readOnly": true, | ||
"description": "The subscription ID." | ||
}, | ||
"roleAssignmentsLimit": { | ||
"type": "integer", | ||
"format": "int64", | ||
"readOnly": true, | ||
"description": "The role assignment limit." | ||
}, | ||
"roleAssignmentsCurrentCount": { | ||
"type": "integer", | ||
"format": "int64", | ||
"readOnly": true, | ||
"description": "The number of current role assignments." | ||
}, | ||
"roleAssignmentsRemainingCount": { | ||
"type": "integer", | ||
"format": "int64", | ||
"readOnly": true, | ||
"description": "The number of remaining role assignments available." | ||
} | ||
}, | ||
"description": "Role Assignment Metrics" | ||
} | ||
}, | ||
"parameters": {} | ||
} |
16 changes: 16 additions & 0 deletions
16
...ization/preview/2019-08-01-preview/examples/RoleAssignmentMetrics_GetForSubscription.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "a925f2f7-5c63-4b7b-8799-25a5f97bc3b2", | ||
"api-version": "2019-08-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"subscriptionId": "a925f2f7-5c63-4b7b-8799-25a5f97bc3b2", | ||
"roleAssignmentsLimit": 2000, | ||
"roleAssignmentsCurrentCount": 1530, | ||
"roleAssignmentsRemainingCount": 470 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters