-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated PR generated by the ARM Spec Updater action
- Loading branch information
Showing
56 changed files
with
17,947 additions
and
1,357 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
3,871 changes: 3,871 additions & 0 deletions
3,871
...r/Microsoft.Authorization/preview/2021-12-01-preview/authorization-AccessReviewCalls.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,343 changes: 1,343 additions & 0 deletions
1,343
...urce-manager/Microsoft.Authorization/preview/2022-08-01-preview/RoleManagementAlerts.json
Large diffs are not rendered by default.
Oops, something went wrong.
154 changes: 154 additions & 0 deletions
154
...ce-manager/Microsoft.Authorization/preview/2024-02-01-preview/EligibleChildResources.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,154 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
"title": "AuthorizationManagementClient", | ||
"version": "2024-02-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": { | ||
"/{scope}/providers/Microsoft.Authorization/eligibleChildResources": { | ||
"get": { | ||
"tags": [ | ||
"eligibleChildResources" | ||
], | ||
"operationId": "EligibleChildResources_Get", | ||
"description": "Get the child resources of a resource on which user has eligible access", | ||
"parameters": [ | ||
{ | ||
"name": "scope", | ||
"in": "path", | ||
"required": true, | ||
"type": "string", | ||
"description": "The scope of the role management policy.", | ||
"x-ms-skip-url-encoding": true | ||
}, | ||
{ | ||
"name": "$filter", | ||
"in": "query", | ||
"required": false, | ||
"type": "string", | ||
"description": "The filter to apply on the operation. Use $filter=resourceType+eq+'Subscription' to filter on only resource of type = 'Subscription'. Use $filter=resourceType+eq+'subscription'+or+resourceType+eq+'resourcegroup' to filter on resource of type = 'Subscription' or 'ResourceGroup'" | ||
}, | ||
{ | ||
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" | ||
} | ||
], | ||
"responses": { | ||
"200": { | ||
"description": "OK - Returns information about the role management policy.", | ||
"schema": { | ||
"$ref": "#/definitions/EligibleChildResourcesListResult" | ||
} | ||
}, | ||
"default": { | ||
"description": "Error response describing why the operation failed.", | ||
"schema": { | ||
"$ref": "#/definitions/CloudError" | ||
} | ||
} | ||
}, | ||
"x-ms-pageable": { | ||
"nextLinkName": "nextLink" | ||
}, | ||
"x-ms-examples": { | ||
"GetEligibleChildResourcesByScope": { | ||
"$ref": "./examples/GetEligibleChildResourcesByScope.json" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"definitions": { | ||
"EligibleChildResourcesListResult": { | ||
"properties": { | ||
"value": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/EligibleChildResource" | ||
}, | ||
"description": "Eligible child resource list." | ||
}, | ||
"nextLink": { | ||
"type": "string", | ||
"description": "The URL to use for getting the next set of results." | ||
} | ||
}, | ||
"type": "object", | ||
"description": "Eligible child resources list operation result." | ||
}, | ||
"EligibleChildResource": { | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"readOnly": true, | ||
"description": "The resource scope Id." | ||
}, | ||
"name": { | ||
"type": "string", | ||
"readOnly": true, | ||
"description": "The resource name." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"readOnly": true, | ||
"description": "The resource type." | ||
} | ||
}, | ||
"type": "object", | ||
"description": "Eligible child resource" | ||
}, | ||
"CloudError": { | ||
"x-ms-external": true, | ||
"properties": { | ||
"error": { | ||
"$ref": "#/definitions/CloudErrorBody" | ||
} | ||
}, | ||
"type": "object", | ||
"description": "An error response from the service." | ||
}, | ||
"CloudErrorBody": { | ||
"x-ms-external": true, | ||
"properties": { | ||
"code": { | ||
"type": "string", | ||
"description": "An identifier for the error. Codes are invariant and are intended to be consumed programmatically." | ||
}, | ||
"message": { | ||
"type": "string", | ||
"description": "A message describing the error, intended to be suitable for display in a user interface." | ||
} | ||
}, | ||
"type": "object", | ||
"description": "An error response from the service." | ||
} | ||
} | ||
} |
Oops, something went wrong.