-
Notifications
You must be signed in to change notification settings - Fork 45
/
multiapi-v1.json
236 lines (236 loc) · 6.17 KB
/
multiapi-v1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{
"swagger": "2.0",
"info": {
"title": "Multiapi Service Client",
"description": "Service client for multiapi client testing",
"version": "1.0.0"
},
"host": "localhost:3000",
"schemes": ["http"],
"produces": ["application/json"],
"paths": {
"/multiapi/testOneEndpoint": {
"put": {
"operationId": "testOne",
"description": "TestOne should be in an FirstVersionOperationsMixin",
"x-ms-request-id": "request-id",
"parameters": [
{
"name": "id",
"in": "query",
"description": "An int parameter",
"type": "integer",
"format": "int32",
"required": true
},
{
"name": "message",
"in": "query",
"description": "An optional string parameter",
"type": "string"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The empty return value of testOne"
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
}
}
},
"/multiapi/lro": {
"put": {
"x-ms-long-running-operation": true,
"operationId": "testLRO",
"description": "Put in whatever shape of Product you want, will return a Product with id equal to 100",
"tags": ["LRO Operations"],
"parameters": [
{
"name": "product",
"description": "Product to put",
"in": "body",
"schema": {
"$ref": "#/definitions/Product"
}
}
],
"responses": {
"200": {
"description": "Initial response with Product ID = 100",
"schema": {
"$ref": "#/definitions/Product"
}
},
"204": {
"description": "Final response"
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
}
}
},
"/multiapi/lroAndPaging": {
"post": {
"x-ms-long-running-operation": true,
"x-ms-pageable": { "nextLinkName": "nextLink", "itemName": "values" },
"operationId": "testLROAndPaging",
"description": "A long-running paging operation that includes a nextLink that has 10 pages",
"parameters": [
{
"name": "client-request-id",
"in": "header",
"required": false,
"type": "string"
},
{
"name": "maxresults",
"in": "header",
"required": false,
"type": "integer",
"format": "int32",
"description": "Sets the maximum number of items to return in the response.",
"x-ms-parameter-grouping": {
"postfix": "Options"
}
},
{
"name": "timeout",
"in": "header",
"required": false,
"type": "integer",
"format": "int32",
"default": 30,
"description": "Sets the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds.",
"x-ms-parameter-grouping": {
"postfix": "Options"
}
}
],
"responses": {
"200": {
"description": "Initial response with Product ID = 100",
"schema": {
"$ref": "#/definitions/PagingResult"
}
},
"default": {
"description": "Unexpected error"
}
}
}
},
"/multiapi/one/testTwoEndpoint": {
"get": {
"operationId": "OperationGroupOne_testTwo",
"description": "TestTwo should be in OperationGroupOneOperations",
"x-ms-request-id": "request-id",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The empty return value of testTwo"
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
}
}
},
"/multiapi/testDifferentCalls": {
"get": {
"operationId": "testDifferentCalls",
"description": "Has added parameters across the API versions",
"x-ms-request-id": "request-id",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"name": "greetingInEnglish",
"in": "header",
"required": true,
"description": "pass in 'hello' to pass test.",
"type": "string"
}
],
"responses": {
"200": {
"description": "Empty return value"
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
}
}
}
},
"definitions": {
"Error": {
"type": "object",
"properties": {
"status": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
}
}
},
"PagingResult": {
"type": "object",
"properties": {
"values": {
"type": "array",
"items": {
"$ref": "#/definitions/Product"
}
},
"nextLink": {
"type": "string"
}
}
},
"Product": {
"x-ms-azure-resource": true,
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32"
}
}
}
},
"parameters": {
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "The API version to use for this operation.",
"minLength": 1
}
}
}