Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

authorization add 2020-08-01-preview #13207

Merged
merged 8 commits into from
Mar 16, 2021
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
@@ -0,0 +1,105 @@
{
"swagger": "2.0",
"info": {
"title": "AuthorizationManagementClient",
"version": "2019-08-01-preview",
jdhms marked this conversation as resolved.
Show resolved Hide resolved
"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": {}
}
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
}
}
}
}
Loading