Skip to content

Commit

Permalink
Merge 18bed31 into fd22b3c
Browse files Browse the repository at this point in the history
  • Loading branch information
solankisamir committed May 17, 2024
2 parents fd22b3c + 18bed31 commit b9c0941
Show file tree
Hide file tree
Showing 732 changed files with 78,248 additions and 4 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"swagger": "2.0",
"info": {
"title": "ApiManagementClient",
"description": "REST API for getting policy status in an Azure API Management deployment.",
"version": "2023-09-01-preview"
},
"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}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/allPolicies": {
"get": {
"tags": [
"AllPolicies"
],
"operationId": "AllPolicies_ListByService",
"description": "Status of all policies of API Management services.",
"x-ms-examples": {
"ApiManagementListPolicyRestrictions": {
"$ref": "./examples/ApiManagementAllPolicies.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Returns an array of Policy Status.",
"schema": {
"$ref": "./definitions.json#/definitions/AllPoliciesCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
}
},
"definitions": {},
"parameters": {}
}

0 comments on commit b9c0941

Please sign in to comment.