Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

Commit 32f566e

Browse files
solankisamirtomkerkhoveMielekm-h-svidishamsft
authored
Merge release api management 2023 09 01 preview - Active (Azure#29184)
* Adds base for updating Microsoft.ApiManagement from version preview/2023-05-01-preview to version 2023-09-01-preview * Updates readme * Updates API version in new specs and examples * feat(apim): Introduce gateway resource (Azure#27757) * WIP * Update sample * WIP * Add GatewayNameParameter * Clean up * Update sample * Add another sample * Add sample for delete gateway * Remove endpoints * Fix typo * Add list sample * Clean up Signed-off-by: Tom Kerkhove <[email protected]> * Add disclaimer Signed-off-by: Tom Kerkhove <[email protected]> * Make it pretty 💄 Signed-off-by: Tom Kerkhove <[email protected]> * Refer to new file Signed-off-by: Tom Kerkhove <[email protected]> * Add missing ApiManagementGatewayListResult Signed-off-by: Tom Kerkhove <[email protected]> * Update sample reference Signed-off-by: Tom Kerkhove <[email protected]> * Remove ApiManagementGatewayIdentity + List by operation Signed-off-by: Tom Kerkhove <[email protected]> * Add more sample Signed-off-by: Tom Kerkhove <[email protected]> * Latest version of common types Signed-off-by: Tom Kerkhove <[email protected]> * Remove 200 for delete Signed-off-by: Tom Kerkhove <[email protected]> * Formatting and re-order Signed-off-by: Tom Kerkhove <[email protected]> * Align with spec Signed-off-by: Tom Kerkhove <[email protected]> * Align sample with spec Signed-off-by: Tom Kerkhove <[email protected]> * Error response from common types Signed-off-by: Tom Kerkhove <[email protected]> * Rename SKU name * Have seperate SKU for patch to not make it mandatory * Remove empty required * Improve note * Rename schema * Remove unused type * sku.capacity should not be required --------- Signed-off-by: Tom Kerkhove <[email protected]> * Add loggers, diagnostics, certificates and backends to workspace (Azure#27262) * Add loggers to workspaces * Add diagnostics to workspace * Add certificates to workspace * Add backends to workspaces * Change DiagnosticContract to DiagnosticContractProperties in patch * Revert back DiagnosticContractProperties to DiagnosticContract * Fix CI and add files to readme * Fix example * remove reconnect endpoint * Add suppressions * Try different suppression where * Try different suppression * Try other suppression * another test * finally working suppression * remove unwanted line * remove secret examples (Azure#28409) * Modify CircuitBreaker and BackendPool Contract (Azure#28397) * md cb contract * modify pool contract * correct the limits --------- Co-authored-by: Samir Solanki <[email protected]> * Common Error Response (Azure#28408) * add operation statuses resource (Azure#28591) * add operation statuses resource * fix api-version * Add locations/operationsResults endpoint for DELETE workflow (Azure#28808) * add operation results * fix spec * operationresults * fix file name * feat(Workspace): Add new SkuType for Workspace (Azure#28903) * new skutype * virtualNetworkType * remove default from patch * List skus API * add model for sku * caps enums * feat)Gateway): Adding gateway config resource (Azure#28478) * added gateway config resource * removing Head gateway Config call * updates * resolving errors * trying to resolve more model validations * resolving some model validations * resolving model validations * resoloving delete example errors * Swagger Prettier * prettier * updating so patch has same response as get and put * removing path for gateway config * addressing comment * addressing comments * nit * path updatess * updating as per comments * Adding workspaceLinks * resolving some of the errors * resolved some errors * resolving some of the errors * resolving some more errors * npx prettier * addressing comments * updated based on comments * lint updates * nit updates --------- Co-authored-by: Samir Solanki <[email protected]> * Fix generation errors (Azure#29207) * fix(apim): Remove duplicate ErrorResponse schema due to move to common schema * Gateway -> ApiGateway to prevent SDK collision with self-hosted gateway * Revert "Gateway -> ApiGateway to prevent SDK collision with self-hosted gateway" This reverts commit 8d4753d. * Remove ApiManagement Prefix for GatewayConfigConnections * Revert "Remove ApiManagement Prefix for GatewayConfigConnections" This reverts commit 3e8197f. * Gateway -> ApiGateway to prevent SDK collision with self-hosted gateway * Create sdk-suppressions.yaml --------- Signed-off-by: Tom Kerkhove <[email protected]> Co-authored-by: Tom Kerkhove <[email protected]> Co-authored-by: Rafał Mielowski <[email protected]> Co-authored-by: Mahsa Sadi <[email protected]> Co-authored-by: Vidisha Shah <[email protected]> Co-authored-by: Yuchao Yan <[email protected]>
1 parent ceb3b7f commit 32f566e

File tree

741 files changed

+79020
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

741 files changed

+79020
-4
lines changed

specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2023-09-01-preview/apigateway.json

Lines changed: 836 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"title": "ApiManagementClient",
5+
"description": "REST API for getting policy status in an Azure API Management deployment.",
6+
"version": "2023-09-01-preview"
7+
},
8+
"host": "management.azure.com",
9+
"schemes": [
10+
"https"
11+
],
12+
"consumes": [
13+
"application/json"
14+
],
15+
"produces": [
16+
"application/json"
17+
],
18+
"security": [
19+
{
20+
"azure_auth": [
21+
"user_impersonation"
22+
]
23+
}
24+
],
25+
"securityDefinitions": {
26+
"azure_auth": {
27+
"type": "oauth2",
28+
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
29+
"flow": "implicit",
30+
"description": "Azure Active Directory OAuth2 Flow.",
31+
"scopes": {
32+
"user_impersonation": "impersonate your user account"
33+
}
34+
}
35+
},
36+
"paths": {
37+
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/allPolicies": {
38+
"get": {
39+
"tags": [
40+
"AllPolicies"
41+
],
42+
"operationId": "AllPolicies_ListByService",
43+
"description": "Status of all policies of API Management services.",
44+
"x-ms-examples": {
45+
"ApiManagementListPolicyRestrictions": {
46+
"$ref": "./examples/ApiManagementAllPolicies.json"
47+
}
48+
},
49+
"parameters": [
50+
{
51+
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
52+
},
53+
{
54+
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
55+
},
56+
{
57+
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
58+
},
59+
{
60+
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
61+
}
62+
],
63+
"responses": {
64+
"200": {
65+
"description": "Returns an array of Policy Status.",
66+
"schema": {
67+
"$ref": "./definitions.json#/definitions/AllPoliciesCollection"
68+
}
69+
},
70+
"default": {
71+
"description": "Error response describing why the operation failed.",
72+
"schema": {
73+
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
74+
}
75+
}
76+
},
77+
"x-ms-pageable": {
78+
"nextLinkName": "nextLink"
79+
}
80+
}
81+
}
82+
},
83+
"definitions": {},
84+
"parameters": {}
85+
}

0 commit comments

Comments
 (0)