This repository was archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathswagger.yaml
815 lines (815 loc) · 21.8 KB
/
swagger.yaml
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
swagger: '2.0'
info:
title: Innkeeper (Route Manager)
description: |
API for manipulating Fashion Store routes. It allows all teams to access
and define non-wildcard paths to all relevant users in employee realm as
well as, some service realm clients (e.g. CMS). Creation of wildcard routes
is reserved for maintainers of this API as it requires special care.
version: 3.0.0
host: innkeeper.host.eu
schemes:
- https
basePath: /
consumes:
- application/json
produces:
- application/json
securityDefinitions:
company:
type: oauth2
authorizationUrl: 'https://auth.provider.com/z/XUI/#login/'
flow: implicit
scopes:
routes.read: |
Reading (listing) all the routes
routes.write: |
All operations on routes with strict path matching.
routes.admin: |
All operations on all routes, including ones with regex path matching.
paths:
'/hosts':
get:
security:
- company:
- routes.read
summary: Returns the list of available hosts.
responses:
'200':
description: An array of available hosts.
schema:
type: array
items:
$ref: '#/definitions/Host'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/paths':
post:
security:
- company:
- routes.write
summary: Creates a new path resource that belongs to the team of the creator.
parameters:
- name: path
in: body
description: Path to create.
required: true
schema:
$ref: '#/definitions/PathIn'
responses:
'201':
description: The path is created.
schema:
$ref: '#/definitions/PathOut'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
get:
security:
- company:
- routes.read
summary: A list of available paths.
parameters:
- name: owned_by_team
in: query
type: string
required: false
- name: uri
in: query
type: string
required: false
responses:
'200':
description: Array of paths.
schema:
type: array
items:
$ref: '#/definitions/PathOut'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/paths/{id}':
get:
security:
- company:
- routes.read
summary: Information about a single path.
parameters:
- name: id
in: path
type: string
required: true
responses:
'200':
description: A path with a given `id`.
schema:
$ref: '#/definitions/PathOut'
'404':
description: Happens when path does not exist.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
patch:
security:
- company:
- routes.write
summary: Partially update a path.
parameters:
- name: id
in: path
type: string
required: true
- name: pathPatch
in: body
description: Path values to update.
required: true
schema:
$ref: '#/definitions/PathPatch'
responses:
'200':
description: The updated path.
schema:
$ref: '#/definitions/PathOut'
'404':
description: Happens when path does not exist.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
delete:
security:
- company:
- routes.write
summary: Deletes a path
parameters:
- name: id
in: path
type: string
required: true
description: |
Deleting a path is only allowed for a client that is part of the team
owning it or has admin credentials.
responses:
'200':
description: Empty response
'403':
description: |
Happens in a case of insufficient permissions.
schema:
$ref: '#/definitions/Error'
'404':
description: Happens when trying to delete a non-existent Path.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/routes':
get:
security:
- company:
- routes.read
summary: Returns the list of all the routes.
parameters:
- name: name
in: query
description: The name of the route to filter for
required: false
type: string
- name: owned_by_team
in: query
description: The team name to filter for
required: false
type: string
- name: uri
in: query
description: The path uri to filter for
required: false
type: string
- name: description
in: query
description: The route description to filter for
required: false
type: string
- name: path_id
in: query
description: The path id to filter for
required: false
type: integer
format: int64
- name: id
in: query
description: The route id to filter for
required: false
type: integer
format: int64
- name: embed
in: query
description: The subresources to embed (path, hosts)
required: false
type: string
- name: limit
in: query
description: the limit for a paginated query
required: false
type: integer
format: int64
- name: offset
in: query
description: the offset for a paginated query, if missing an limit is present it defaults to 0
required: false
type: integer
format: int64
responses:
'200':
description: An array of routes
schema:
type: array
items:
$ref: '#/definitions/RouteOut'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
post:
security:
- company:
- routes.write
summary: Creating a route with specified name.
parameters:
- name: route
in: body
description: Route to add.
required: true
schema:
$ref: '#/definitions/RouteIn'
responses:
'201':
description: The route is created.
schema:
$ref: '#/definitions/RouteOut'
'403':
description: |
Usually happens in a case of insufficient permissions.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
delete:
security:
- company:
- routes.write
summary: Deletes paths based on the provided filters.
description: |
If the provided token is not an admin token, only routes belonging
to the team associated with the provided token are deleted.
parameters:
- name: name
in: query
description: The name of the route to filter for
required: false
type: string
- name: owned_by_team
in: query
description: The team name to filter for
required: false
type: string
- name: uri
in: query
description: The path uri to filter for
required: false
type: string
- name: description
in: query
description: The route description to filter for
required: false
type: string
- name: path_id
in: query
description: The path id to filter for
required: false
type: integer
format: int64
- name: id
in: query
description: The route id to filter for
required: false
type: integer
format: int64
responses:
'200':
description: The amount of routes that were deleted.
'403':
description: Happens in a case of insufficient permissions.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/current-routes':
get:
security:
- company:
- routes.read
summary: Returns the list of all the active routes.
parameters:
- name: snapshot-timestamp
in: query
description: |
the timestamp to use for computing the snapshot
it is mandatory if offset is present and greater than zero
required: false
type: string
format: date-time
- name: limit
in: query
description: the limit for a paginated query
required: false
type: integer
format: int64
- name: offset
in: query
description: |
the offset for a paginated query, if missing an limit is present it defaults to 0
required: false
type: integer
format: int64
responses:
'200':
description: An array of routes
schema:
type: array
items:
$ref: '#/definitions/RouteOut'
headers:
X-Snapshot-Timestamp:
type: string
format: date-time
description: |
The timestamp used for computing the snapshot.
X-Last-Update:
type: string
format: date-time
description: |
The timestamp for the last update to the routes (create, update, delete).
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/routes/{id}':
get:
security:
- company:
- routes.read
summary: Information about a single route.
parameters:
- name: id
in: path
type: string
required: true
- name: embed
in: query
description: The subresources to embed (path, hosts)
required: false
type: string
responses:
'200':
description: A route with a given `id`.
schema:
$ref: '#/definitions/RouteOut'
'404':
description: Happens when trying to access a non-existent Route.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
patch:
security:
- company:
- routes.write
summary: Partially update a route.
parameters:
- name: id
in: path
type: string
required: true
- name: routePatch
in: body
description: Route values to update.
required: true
schema:
$ref: '#/definitions/RoutePatch'
responses:
'200':
description: The updated route.
schema:
$ref: '#/definitions/RouteOut'
'403':
description: |
Usually happens in a case of insufficient permissions.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
delete:
security:
- company:
- routes.write
summary: Deletes a route
parameters:
- name: id
in: path
type: string
required: true
description: |
Deleting a path is only allowed for a client that is part of the team
owning it or has admin credentials.
responses:
'200':
description: Empty response
'403':
description: |
Happens in a case of insufficient permissions.
schema:
$ref: '#/definitions/Error'
'404':
description: Happens when trying to delete a non-existent Route.
schema:
$ref: '#/definitions/Error'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
'/updated-routes/{timestamp}':
get:
security:
- company:
- routes.read
parameters:
- name: timestamp
in: path
type: string
required: true
format: ISO-8601
summary: Returns a list of route updates after the provided timestamp.
responses:
'200':
description: An array of route updates
schema:
type: array
items:
$ref: '#/definitions/RouteChange'
default:
description: A processing or an unexpected error.
schema:
$ref: '#/definitions/Error'
definitions:
RouteIn:
required:
- path_id
- name
- uses_common_filters
- predicates
- filters
- endpoint
properties:
path_id:
type: integer
format: int64
name:
type: string
pattern: /[A-Z][A-Z0-9_]*
description: The name of the route in the ROUTE_NAME format
uses_common_filters:
type: boolean
description: Specifies if the route uses the configured common filters
description:
type: string
description: Human readable description for the route
activate_at:
type: string
description: The ISO-8601 date time when the route will be activated
disable_at:
type: string
description: The ISO-8601 date time when the route will be deactivated
predicates:
type: array
items:
$ref: '#/definitions/Predicate'
description: |
Definition of predicates to be applied
filters:
type: array
items:
$ref: '#/definitions/Filter'
description: |
Definition of filters to be applied. fashionStore() filter is a mandatory filter and
must always present
endpoint:
type: string
description: |
A valid http(s) endpoint that the request should be routed to
host_ids:
type: array
items:
type: integer
format: int64
description: |
Ids of the hosts to which route has to be applied. This list must be
a sublist of the host ids for the path.
RoutePatch:
properties:
uses_common_filters:
type: boolean
description: Specifies if the route uses the configured common filters
description:
type: string
description: Human readable description for the route
route:
$ref: '#/definitions/RouteData'
host_ids:
type: array
items:
type: integer
format: int64
description: |
Ids of the hosts to which route has to be applied. This list must be
a sublist of the host ids for the path.
RouteData:
properties:
predicates:
type: array
items:
$ref: '#/definitions/Predicate'
description: |
Definition of predicates to be applied
filters:
type: array
items:
$ref: '#/definitions/Filter'
description: |
Definition of filters to be applied.
endpoint:
type: string
description: |
A valid http(s) endpoint that the request should be routed to
RouteOut:
required:
- id
- path_id
- name
- uses_common_filters
- predicates
- filters
- endpoint
- created_at
- activate_at
- created_by
properties:
id:
type: integer
format: int64
path_id:
type: integer
format: int64
name:
type: string
pattern: \[a-zA-Z][a-zA-Z0-9_]*
description: The name of the route in the ROUTE_NAME format
uses_common_filters:
type: boolean
description: Specifies if the route uses the configured common filters
description:
type: string
description: Human readable description for the route
created_at:
type: string
description: The ISO-8601 date time when the route has been created
activate_at:
type: string
description: The ISO-8601 date time when the route will be activated
disable_at:
type: string
description: The ISO-8601 date time when the route will be deactivated
created_by:
type: string
predicates:
type: array
items:
$ref: '#/definitions/Predicate'
description: |
Definition of predicates to be applied
filters:
type: array
items:
$ref: '#/definitions/Filter'
description: |
Definition of filters to be applied.
endpoint:
type: string
description: |
A valid http(s) endpoint that the request should be routed to
host_ids:
type: array
items:
type: integer
format: int64
description: |
Ids of the hosts to which route has to be applied. This list is a sublist
of the host ids for the path.
hosts:
type: array
items:
$ref: '#/definitions/Host'
description: |
A list of Hosts resolved by host_ids.
path:
$ref: '#/definitions/PathOut'
RouteChange:
required:
- type
- timestamp
- name
- eskip
properties:
type:
type: string
description: the type of the RouteChange (create update or delete)
timestamp:
type: string
description: The ISO-8601 date time when the route will be activated
name:
type: string
description: Route name
eskip:
type: string
description: The Route in eskip format
Predicate:
required:
- name
- args
properties:
name:
type: string
description: |
The name of the predicate, as it is definined in Skipper
args:
description: The arguments for the predicate, can be string or float64
type: array
items:
$ref: '#/definitions/Arg'
Filter:
required:
- name
- args
properties:
name:
type: string
description: |
The name of the filter, as it is definined in Skipper
args:
description: The arguments for the filter, can be string or float64
type: array
items:
$ref: '#/definitions/Arg'
Arg:
required:
- type
- value
properties:
type:
type: string
description: Must be one of [number, string, regex]
value:
description: A value representing the type
Host:
required:
- id
- name
properties:
id:
type: string
format: int32
name:
type: string
example: |
{
"id": "1",
"name": "zalando.de"
}
PathIn:
required:
- uri
- host_ids
properties:
uri:
type: string
description: empty uri are not allowed
pattern: .+
host_ids:
type: array
items:
type: integer
format: int64
has_star:
type: boolean
description: the path will be serialized as a PathSubtree predicate
is_regex:
type: boolean
description: the path will be serialized as a PathRegexp predicate
owned_by_team:
type: string
description: defines the team owning this path.
example: |
{
"uri": "/cart",
"host_ids": [1, 2]
}
PathOut:
required:
- id
- owned_by_team
- created_by
- uri
- host_ids
- created_at
properties:
id:
type: string
owned_by_team:
type: string
created_by:
type: string
uri:
type: string
host_ids:
type: array
items:
type: integer
format: int64
created_at:
type: string
format: date-time
has_star:
type: boolean
is_regex:
type: boolean
example: |
{
"id": "1",
"owned_by_team": "coast",
"created_by": "user",
"uri": "/cart",
"has_star": false,
"is_regex": false,
"host_ids": [1, 2],
"created_at": "1985-04-12T23:20:50.52Z"
}
PathPatch:
properties:
owned_by_team:
type: string
host_ids:
type: array
items:
type: integer
format: int64
example: |
{
"owned_by_team": "coast",
"host_ids": [1, 2]
}
Error:
required:
- type
- status
- title
properties:
type:
type: string
status:
type: integer
format: int32
title:
type: string
description: Short description of an error
detail:
type: string
description: Detailed description of an error