Skip to content

Commit

Permalink
Copy files from preview/2023-09-01-preview
Browse files Browse the repository at this point in the history
Copied the files in a separate commit.
This allows reviewers to easily diff subsequent changes against the previous spec.
  • Loading branch information
solankisamir committed Jun 13, 2024
1 parent 30c95a2 commit 7979d1c
Show file tree
Hide file tree
Showing 739 changed files with 78,917 additions and 0 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": {}
}
Loading

0 comments on commit 7979d1c

Please sign in to comment.