Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
0c8648f
Adds base for updating Microsoft.ApiManagement from version preview/2…
solankisamir Jun 15, 2021
3db09f1
Updates readme
solankisamir Jun 15, 2021
785eaab
Updates API version in new specs and examples
solankisamir Jun 15, 2021
3d2e43a
Added support for GraphQL API type (#14851)
azaslonov Jun 17, 2021
e38dbf0
add schema definition fix from 2021-01-01-preview (#14883)
Jun 21, 2021
f322a47
Vanguard: Get Outbound Network Dependency (#14900)
solankisamir Jul 2, 2021
bbabd9c
Update backup/restore API for managed identities (#14973)
JatinSanghvi Jul 5, 2021
1018cb0
SystemData implemenation on API Management Control Plane (#14899)
solankisamir Jul 5, 2021
e8680fd
APIM - Network Watcher Connectivity Check integration specs (#15056)
atharos1 Jul 23, 2021
5824638
Parameter examples added (#14836)
VitaliyKurokhtin Jul 27, 2021
dc54a09
platformversion (#15114)
solankisamir Jul 29, 2021
b9e497e
fix update service (#15478)
solankisamir Aug 3, 2021
ff76d20
HttpConnect example (#15493)
atharos1 Aug 4, 2021
1ad8428
Rename from SchemaContract to ApiSchemaContract
Aug 13, 2021
18ce3ca
apimschema.json added to last apim preview version
Aug 16, 2021
cb92937
Completing specification for Schema resource.
Aug 16, 2021
8f90630
Value field added to Schema resource specification.
Aug 17, 2021
0fa5523
path fixed.
Aug 20, 2021
a7ac04a
Fixing PR observations.
Aug 20, 2021
6e13784
Added properties of difference API spec format for "SchemaDocumentPro…
Aug 24, 2021
df36b4f
[APIM]Add private endpoint connection APIs (#15115)
RupengLiu Aug 27, 2021
33b8252
Merge changes
Sep 28, 2021
ab49a54
Merge main
Sep 28, 2021
4702207
Modifications to Schema definition to add "description" field.
Sep 28, 2021
77777a5
Merge from main
Sep 29, 2021
0ef5038
Fixing apimanagement.json
Sep 29, 2021
4fb0b7b
Prettier applied in files
Sep 29, 2021
610e3cb
Fixing PR comments
Sep 29, 2021
789f4c2
fixing x-ms-long-running-operation.
Sep 29, 2021
40ccd4d
x-ms-long-running-operation : true in apischema.
Sep 29, 2021
b4b1d85
Removing "Resource" type from apimanagement.json
Sep 30, 2021
aca685b
Merge branch 'Azure:apim-2021-04-01-preview' into apim-2021-04-01-pre…
shinjiDev Nov 9, 2021
fb0dfd8
Apimschema.json updated to point to types.json for ErrorResponse.
Nov 9, 2021
bb84d15
undoing change of responseBody
Nov 9, 2021
5ac7681
Merge branch 'apim-2021-04-01-preview' of https://github.com/shinjiDe…
Nov 9, 2021
4e6dbff
Updating ErrorResponse.
Nov 9, 2021
634726a
Fixing definitions merge.
Nov 9, 2021
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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ apimproperties
apimquotas
apimregions
apimreports
apimschema
apimsubscriptions
apimtagresources
apimtags
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -607,17 +607,6 @@
"description": "The name of the resource group.",
"x-ms-parameter-location": "method"
},
"SchemaIdParameter": {
"name": "schemaId",
"in": "path",
"required": true,
"type": "string",
"description": "Schema identifier within an API. Must be unique in the current API Management service instance.",
"minLength": 1,
"maxLength": 80,
"pattern": "^[^*#&+:<>?]+$",
"x-ms-parameter-location": "method"
},
"ServiceNameParameter": {
"name": "serviceName",
"in": "path",
Expand Down Expand Up @@ -765,6 +754,16 @@
"minLength": 1,
"maxLength": 80,
"x-ms-parameter-location": "method"
},
"SchemaIdParameter": {
"name": "schemaId",
"in": "path",
"required": true,
"type": "string",
"description": "Schema id identifier. Must be unique in the current API Management service instance.",
"minLength": 1,
"maxLength": 80,
"x-ms-parameter-location": "method"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,7 @@
"200": {
"description": "Apis Schema Collection.",
"schema": {
"$ref": "./definitions.json#/definitions/SchemaCollection"
"$ref": "./definitions.json#/definitions/ApiSchemaCollection"
}
},
"default": {
Expand Down Expand Up @@ -2284,7 +2284,7 @@
"200": {
"description": "Api Schema information.",
"schema": {
"$ref": "./definitions.json#/definitions/SchemaContract"
"$ref": "./definitions.json#/definitions/ApiSchemaContract"
},
"headers": {
"ETag": {
Expand Down Expand Up @@ -2330,7 +2330,7 @@
"in": "body",
"required": true,
"schema": {
"$ref": "./definitions.json#/definitions/SchemaContract"
"$ref": "./definitions.json#/definitions/ApiSchemaContract"
},
"description": "The schema contents to apply."
},
Expand All @@ -2351,7 +2351,7 @@
"201": {
"description": "Api schema configuration was successfully created.",
"schema": {
"$ref": "./definitions.json#/definitions/SchemaContract"
"$ref": "./definitions.json#/definitions/ApiSchemaContract"
},
"headers": {
"ETag": {
Expand All @@ -2363,7 +2363,7 @@
"200": {
"description": "Api schema configuration of the tenant was successfully updated.",
"schema": {
"$ref": "./definitions.json#/definitions/SchemaContract"
"$ref": "./definitions.json#/definitions/ApiSchemaContract"
},
"headers": {
"ETag": {
Expand Down
Loading