@itentialopensource/adapter-docker 0.6.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/AUTH.md +5 -9
  2. package/CALLS.md +623 -22
  3. package/CHANGELOG.md +16 -0
  4. package/CONTRIBUTING.md +1 -160
  5. package/ENHANCE.md +2 -2
  6. package/README.md +32 -23
  7. package/SYSTEMINFO.md +19 -5
  8. package/adapter.js +157 -329
  9. package/adapterBase.js +549 -879
  10. package/changelogs/CHANGELOG.md +103 -0
  11. package/metadata.json +57 -0
  12. package/package.json +25 -25
  13. package/pronghorn.json +980 -641
  14. package/propertiesSchema.json +431 -31
  15. package/refs?service=git-upload-pack +0 -0
  16. package/report/adapter-openapi.json +4034 -0
  17. package/report/adapter-openapi.yaml +3121 -0
  18. package/report/adapterInfo.json +8 -8
  19. package/report/updateReport1691507531387.json +120 -0
  20. package/report/updateReport1692202549558.json +120 -0
  21. package/report/updateReport1694461579341.json +120 -0
  22. package/report/updateReport1698420876380.json +120 -0
  23. package/sampleProperties.json +64 -3
  24. package/test/integration/adapterTestBasicGet.js +2 -4
  25. package/test/integration/adapterTestConnectivity.js +91 -42
  26. package/test/integration/adapterTestIntegration.js +130 -2
  27. package/test/unit/adapterBaseTestUnit.js +388 -313
  28. package/test/unit/adapterTestUnit.js +338 -112
  29. package/utils/adapterInfo.js +1 -1
  30. package/utils/addAuth.js +1 -1
  31. package/utils/artifactize.js +1 -1
  32. package/utils/checkMigrate.js +1 -1
  33. package/utils/entitiesToDB.js +2 -2
  34. package/utils/findPath.js +1 -1
  35. package/utils/methodDocumentor.js +273 -0
  36. package/utils/modify.js +13 -15
  37. package/utils/packModificationScript.js +1 -1
  38. package/utils/pre-commit.sh +2 -0
  39. package/utils/taskMover.js +309 -0
  40. package/utils/tbScript.js +89 -34
  41. package/utils/tbUtils.js +41 -21
  42. package/utils/testRunner.js +1 -1
  43. package/utils/troubleshootingAdapter.js +9 -6
  44. package/workflows/README.md +0 -3
@@ -0,0 +1,3121 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: adapter-docker
4
+ contact: {}
5
+ version: '1.0.0'
6
+ servers:
7
+ - url: https://{defaultHost}
8
+ variables:
9
+ defaultHost:
10
+ default: www.example.com
11
+ paths:
12
+ /containers/json:
13
+ get:
14
+ summary: getContainersjson
15
+ description: ''
16
+ operationId: getContainersjson
17
+ parameters:
18
+ - name: all
19
+ in: query
20
+ description: ''
21
+ style: form
22
+ explode: true
23
+ schema:
24
+ type: boolean
25
+ - name: limit
26
+ in: query
27
+ description: ''
28
+ style: form
29
+ explode: true
30
+ schema:
31
+ type: number
32
+ format: double
33
+ - name: size
34
+ in: query
35
+ description: ''
36
+ style: form
37
+ explode: true
38
+ schema:
39
+ type: boolean
40
+ - name: filters
41
+ in: query
42
+ description: ''
43
+ style: form
44
+ explode: true
45
+ schema:
46
+ type: string
47
+ responses:
48
+ '200':
49
+ description: Successful operation
50
+ headers: {}
51
+ content:
52
+ application/json:
53
+ schema:
54
+ type: object
55
+ deprecated: false
56
+ /containers/create:
57
+ post:
58
+ summary: postContainerscreate
59
+ description: ''
60
+ operationId: postContainerscreate
61
+ parameters:
62
+ - name: name
63
+ in: query
64
+ description: ''
65
+ style: form
66
+ explode: true
67
+ schema:
68
+ type: string
69
+ requestBody:
70
+ description: ''
71
+ content:
72
+ application/json:
73
+ schema:
74
+ type: object
75
+ required: false
76
+ responses:
77
+ '200':
78
+ description: Successful operation
79
+ headers: {}
80
+ content:
81
+ application/json:
82
+ schema:
83
+ type: object
84
+ deprecated: false
85
+ /containers/{id}/json:
86
+ get:
87
+ summary: getContainersidjson
88
+ description: ''
89
+ operationId: getContainersidjson
90
+ parameters:
91
+ - name: id
92
+ in: path
93
+ description: ''
94
+ required: true
95
+ style: simple
96
+ schema:
97
+ type: string
98
+ - name: size
99
+ in: query
100
+ description: ''
101
+ style: form
102
+ explode: true
103
+ schema:
104
+ type: boolean
105
+ responses:
106
+ '200':
107
+ description: Successful operation
108
+ headers: {}
109
+ content:
110
+ application/json:
111
+ schema:
112
+ type: object
113
+ deprecated: false
114
+ /containers/{id}/top:
115
+ get:
116
+ summary: getContainersidtop
117
+ description: ''
118
+ operationId: getContainersidtop
119
+ parameters:
120
+ - name: id
121
+ in: path
122
+ description: ''
123
+ required: true
124
+ style: simple
125
+ schema:
126
+ type: string
127
+ - name: psArgs
128
+ in: query
129
+ description: ''
130
+ style: form
131
+ explode: true
132
+ schema:
133
+ type: string
134
+ responses:
135
+ '200':
136
+ description: Successful operation
137
+ headers: {}
138
+ content:
139
+ application/json:
140
+ schema:
141
+ type: object
142
+ deprecated: false
143
+ /containers/{id}/logs:
144
+ get:
145
+ summary: getContainersidlogs
146
+ description: ''
147
+ operationId: getContainersidlogs
148
+ parameters:
149
+ - name: id
150
+ in: path
151
+ description: ''
152
+ required: true
153
+ style: simple
154
+ schema:
155
+ type: string
156
+ - name: follow
157
+ in: query
158
+ description: ''
159
+ style: form
160
+ explode: true
161
+ schema:
162
+ type: boolean
163
+ - name: stdout
164
+ in: query
165
+ description: ''
166
+ style: form
167
+ explode: true
168
+ schema:
169
+ type: boolean
170
+ - name: stderr
171
+ in: query
172
+ description: ''
173
+ style: form
174
+ explode: true
175
+ schema:
176
+ type: boolean
177
+ - name: since
178
+ in: query
179
+ description: ''
180
+ style: form
181
+ explode: true
182
+ schema:
183
+ type: number
184
+ format: double
185
+ - name: timestamps
186
+ in: query
187
+ description: ''
188
+ style: form
189
+ explode: true
190
+ schema:
191
+ type: boolean
192
+ - name: tail
193
+ in: query
194
+ description: ''
195
+ style: form
196
+ explode: true
197
+ schema:
198
+ type: string
199
+ responses:
200
+ '200':
201
+ description: Successful operation
202
+ headers: {}
203
+ content:
204
+ application/json:
205
+ schema:
206
+ type: object
207
+ deprecated: false
208
+ /containers/{id}/changes:
209
+ get:
210
+ summary: getContainersidchanges
211
+ description: ''
212
+ operationId: getContainersidchanges
213
+ parameters:
214
+ - name: id
215
+ in: path
216
+ description: ''
217
+ required: true
218
+ style: simple
219
+ schema:
220
+ type: string
221
+ responses:
222
+ '200':
223
+ description: Successful operation
224
+ headers: {}
225
+ content:
226
+ application/json:
227
+ schema:
228
+ type: object
229
+ deprecated: false
230
+ /containers/{id}/export:
231
+ get:
232
+ summary: getContainersidexport
233
+ description: ''
234
+ operationId: getContainersidexport
235
+ parameters:
236
+ - name: id
237
+ in: path
238
+ description: ''
239
+ required: true
240
+ style: simple
241
+ schema:
242
+ type: string
243
+ responses:
244
+ '200':
245
+ description: Successful operation
246
+ headers: {}
247
+ content:
248
+ application/json:
249
+ schema:
250
+ type: object
251
+ deprecated: false
252
+ /containers/{id}/stats:
253
+ get:
254
+ summary: getContainersidstats
255
+ description: ''
256
+ operationId: getContainersidstats
257
+ parameters:
258
+ - name: id
259
+ in: path
260
+ description: ''
261
+ required: true
262
+ style: simple
263
+ schema:
264
+ type: string
265
+ - name: stream
266
+ in: query
267
+ description: ''
268
+ style: form
269
+ explode: true
270
+ schema:
271
+ type: boolean
272
+ responses:
273
+ '200':
274
+ description: Successful operation
275
+ headers: {}
276
+ content:
277
+ application/json:
278
+ schema:
279
+ type: object
280
+ deprecated: false
281
+ /containers/{id}/resize:
282
+ post:
283
+ summary: postContainersidresize
284
+ description: ''
285
+ operationId: postContainersidresize
286
+ parameters:
287
+ - name: id
288
+ in: path
289
+ description: ''
290
+ required: true
291
+ style: simple
292
+ schema:
293
+ type: string
294
+ - name: h
295
+ in: query
296
+ description: ''
297
+ style: form
298
+ explode: true
299
+ schema:
300
+ type: number
301
+ format: double
302
+ - name: w
303
+ in: query
304
+ description: ''
305
+ style: form
306
+ explode: true
307
+ schema:
308
+ type: number
309
+ format: double
310
+ requestBody:
311
+ description: ''
312
+ content:
313
+ application/json:
314
+ schema:
315
+ type: object
316
+ required: false
317
+ responses:
318
+ '200':
319
+ description: Successful operation
320
+ headers: {}
321
+ content:
322
+ application/json:
323
+ schema:
324
+ type: object
325
+ deprecated: false
326
+ /containers/{id}/start:
327
+ post:
328
+ summary: postContainersidstart
329
+ description: ''
330
+ operationId: postContainersidstart
331
+ parameters:
332
+ - name: id
333
+ in: path
334
+ description: ''
335
+ required: true
336
+ style: simple
337
+ schema:
338
+ type: string
339
+ - name: detachKeys
340
+ in: query
341
+ description: ''
342
+ style: form
343
+ explode: true
344
+ schema:
345
+ type: string
346
+ requestBody:
347
+ description: ''
348
+ content:
349
+ application/json:
350
+ schema:
351
+ type: object
352
+ required: false
353
+ responses:
354
+ '200':
355
+ description: Successful operation
356
+ headers: {}
357
+ content:
358
+ application/json:
359
+ schema:
360
+ type: object
361
+ deprecated: false
362
+ /containers/{id}/stop:
363
+ post:
364
+ summary: postContainersidstop
365
+ description: ''
366
+ operationId: postContainersidstop
367
+ parameters:
368
+ - name: id
369
+ in: path
370
+ description: ''
371
+ required: true
372
+ style: simple
373
+ schema:
374
+ type: string
375
+ - name: t
376
+ in: query
377
+ description: ''
378
+ style: form
379
+ explode: true
380
+ schema:
381
+ type: number
382
+ format: double
383
+ requestBody:
384
+ description: ''
385
+ content:
386
+ application/json:
387
+ schema:
388
+ type: object
389
+ required: false
390
+ responses:
391
+ '200':
392
+ description: Successful operation
393
+ headers: {}
394
+ content:
395
+ application/json:
396
+ schema:
397
+ type: object
398
+ deprecated: false
399
+ /containers/{id}/restart:
400
+ post:
401
+ summary: postContainersidrestart
402
+ description: ''
403
+ operationId: postContainersidrestart
404
+ parameters:
405
+ - name: id
406
+ in: path
407
+ description: ''
408
+ required: true
409
+ style: simple
410
+ schema:
411
+ type: string
412
+ - name: t
413
+ in: query
414
+ description: ''
415
+ style: form
416
+ explode: true
417
+ schema:
418
+ type: number
419
+ format: double
420
+ requestBody:
421
+ description: ''
422
+ content:
423
+ application/json:
424
+ schema:
425
+ type: object
426
+ required: false
427
+ responses:
428
+ '200':
429
+ description: Successful operation
430
+ headers: {}
431
+ content:
432
+ application/json:
433
+ schema:
434
+ type: object
435
+ deprecated: false
436
+ /containers/{id}/kill:
437
+ post:
438
+ summary: postContainersidkill
439
+ description: ''
440
+ operationId: postContainersidkill
441
+ parameters:
442
+ - name: id
443
+ in: path
444
+ description: ''
445
+ required: true
446
+ style: simple
447
+ schema:
448
+ type: string
449
+ - name: signal
450
+ in: query
451
+ description: ''
452
+ style: form
453
+ explode: true
454
+ schema:
455
+ type: string
456
+ requestBody:
457
+ description: ''
458
+ content:
459
+ application/json:
460
+ schema:
461
+ type: object
462
+ required: false
463
+ responses:
464
+ '200':
465
+ description: Successful operation
466
+ headers: {}
467
+ content:
468
+ application/json:
469
+ schema:
470
+ type: object
471
+ deprecated: false
472
+ /containers/{id}/update:
473
+ post:
474
+ summary: postContainersidupdate
475
+ description: ''
476
+ operationId: postContainersidupdate
477
+ parameters:
478
+ - name: id
479
+ in: path
480
+ description: ''
481
+ required: true
482
+ style: simple
483
+ schema:
484
+ type: string
485
+ - name: update
486
+ in: query
487
+ description: ''
488
+ required: true
489
+ style: form
490
+ explode: true
491
+ schema:
492
+ type: object
493
+ requestBody:
494
+ description: ''
495
+ content:
496
+ application/json:
497
+ schema:
498
+ type: object
499
+ required: false
500
+ responses:
501
+ '200':
502
+ description: Successful operation
503
+ headers: {}
504
+ content:
505
+ application/json:
506
+ schema:
507
+ type: object
508
+ deprecated: false
509
+ /containers/{id}/rename:
510
+ post:
511
+ summary: postContainersidrename
512
+ description: ''
513
+ operationId: postContainersidrename
514
+ parameters:
515
+ - name: id
516
+ in: path
517
+ description: ''
518
+ required: true
519
+ style: simple
520
+ schema:
521
+ type: string
522
+ - name: name
523
+ in: query
524
+ description: ''
525
+ required: true
526
+ style: form
527
+ explode: true
528
+ schema:
529
+ type: string
530
+ requestBody:
531
+ description: ''
532
+ content:
533
+ application/json:
534
+ schema:
535
+ type: object
536
+ required: false
537
+ responses:
538
+ '200':
539
+ description: Successful operation
540
+ headers: {}
541
+ content:
542
+ application/json:
543
+ schema:
544
+ type: object
545
+ deprecated: false
546
+ /containers/{id}/pause:
547
+ post:
548
+ summary: postContainersidpause
549
+ description: ''
550
+ operationId: postContainersidpause
551
+ parameters:
552
+ - name: id
553
+ in: path
554
+ description: ''
555
+ required: true
556
+ style: simple
557
+ schema:
558
+ type: string
559
+ requestBody:
560
+ description: ''
561
+ content:
562
+ application/json:
563
+ schema:
564
+ type: object
565
+ required: false
566
+ responses:
567
+ '200':
568
+ description: Successful operation
569
+ headers: {}
570
+ content:
571
+ application/json:
572
+ schema:
573
+ type: object
574
+ deprecated: false
575
+ /containers/{id}/unpause:
576
+ post:
577
+ summary: postContainersidunpause
578
+ description: ''
579
+ operationId: postContainersidunpause
580
+ parameters:
581
+ - name: id
582
+ in: path
583
+ description: ''
584
+ required: true
585
+ style: simple
586
+ schema:
587
+ type: string
588
+ requestBody:
589
+ description: ''
590
+ content:
591
+ application/json:
592
+ schema:
593
+ type: object
594
+ required: false
595
+ responses:
596
+ '200':
597
+ description: Successful operation
598
+ headers: {}
599
+ content:
600
+ application/json:
601
+ schema:
602
+ type: object
603
+ deprecated: false
604
+ /containers/{id}/attach:
605
+ post:
606
+ summary: postContainersidattach
607
+ description: ''
608
+ operationId: postContainersidattach
609
+ parameters:
610
+ - name: id
611
+ in: path
612
+ description: ''
613
+ required: true
614
+ style: simple
615
+ schema:
616
+ type: string
617
+ - name: detachKeys
618
+ in: query
619
+ description: ''
620
+ style: form
621
+ explode: true
622
+ schema:
623
+ type: string
624
+ - name: logs
625
+ in: query
626
+ description: ''
627
+ style: form
628
+ explode: true
629
+ schema:
630
+ type: boolean
631
+ - name: stream
632
+ in: query
633
+ description: ''
634
+ style: form
635
+ explode: true
636
+ schema:
637
+ type: boolean
638
+ - name: stdin
639
+ in: query
640
+ description: ''
641
+ style: form
642
+ explode: true
643
+ schema:
644
+ type: boolean
645
+ - name: stdout
646
+ in: query
647
+ description: ''
648
+ style: form
649
+ explode: true
650
+ schema:
651
+ type: boolean
652
+ - name: stderr
653
+ in: query
654
+ description: ''
655
+ style: form
656
+ explode: true
657
+ schema:
658
+ type: boolean
659
+ requestBody:
660
+ description: ''
661
+ content:
662
+ application/json:
663
+ schema:
664
+ type: object
665
+ required: false
666
+ responses:
667
+ '200':
668
+ description: Successful operation
669
+ headers: {}
670
+ content:
671
+ application/json:
672
+ schema:
673
+ type: object
674
+ deprecated: false
675
+ /containers/{id}/attach/ws:
676
+ get:
677
+ summary: getContainersidattachws
678
+ description: ''
679
+ operationId: getContainersidattachws
680
+ parameters:
681
+ - name: id
682
+ in: path
683
+ description: ''
684
+ required: true
685
+ style: simple
686
+ schema:
687
+ type: string
688
+ - name: detachKeys
689
+ in: query
690
+ description: ''
691
+ style: form
692
+ explode: true
693
+ schema:
694
+ type: string
695
+ - name: logs
696
+ in: query
697
+ description: ''
698
+ style: form
699
+ explode: true
700
+ schema:
701
+ type: boolean
702
+ - name: stream
703
+ in: query
704
+ description: ''
705
+ style: form
706
+ explode: true
707
+ schema:
708
+ type: boolean
709
+ - name: stdin
710
+ in: query
711
+ description: ''
712
+ style: form
713
+ explode: true
714
+ schema:
715
+ type: boolean
716
+ - name: stdout
717
+ in: query
718
+ description: ''
719
+ style: form
720
+ explode: true
721
+ schema:
722
+ type: boolean
723
+ - name: stderr
724
+ in: query
725
+ description: ''
726
+ style: form
727
+ explode: true
728
+ schema:
729
+ type: boolean
730
+ responses:
731
+ '200':
732
+ description: Successful operation
733
+ headers: {}
734
+ content:
735
+ application/json:
736
+ schema:
737
+ type: object
738
+ deprecated: false
739
+ /containers/{id}/wait:
740
+ post:
741
+ summary: postContainersidwait
742
+ description: ''
743
+ operationId: postContainersidwait
744
+ parameters:
745
+ - name: id
746
+ in: path
747
+ description: ''
748
+ required: true
749
+ style: simple
750
+ schema:
751
+ type: string
752
+ requestBody:
753
+ description: ''
754
+ content:
755
+ application/json:
756
+ schema:
757
+ type: object
758
+ required: false
759
+ responses:
760
+ '200':
761
+ description: Successful operation
762
+ headers: {}
763
+ content:
764
+ application/json:
765
+ schema:
766
+ type: object
767
+ deprecated: false
768
+ /containers/{id}:
769
+ delete:
770
+ summary: deleteContainersid
771
+ description: ''
772
+ operationId: deleteContainersid
773
+ parameters:
774
+ - name: id
775
+ in: path
776
+ description: ''
777
+ required: true
778
+ style: simple
779
+ schema:
780
+ type: string
781
+ - name: v
782
+ in: query
783
+ description: ''
784
+ style: form
785
+ explode: true
786
+ schema:
787
+ type: boolean
788
+ - name: force
789
+ in: query
790
+ description: ''
791
+ style: form
792
+ explode: true
793
+ schema:
794
+ type: boolean
795
+ responses:
796
+ '200':
797
+ description: Successful operation
798
+ headers: {}
799
+ content:
800
+ application/json:
801
+ schema:
802
+ type: object
803
+ deprecated: false
804
+ /containers/{id}/archive:
805
+ get:
806
+ summary: getContainersidarchive
807
+ description: ''
808
+ operationId: getContainersidarchive
809
+ parameters:
810
+ - name: id
811
+ in: path
812
+ description: ''
813
+ required: true
814
+ style: simple
815
+ schema:
816
+ type: string
817
+ - name: path_resource
818
+ in: query
819
+ description: ''
820
+ required: true
821
+ style: form
822
+ explode: true
823
+ schema:
824
+ type: string
825
+ responses:
826
+ '200':
827
+ description: Successful operation
828
+ headers: {}
829
+ content:
830
+ application/json:
831
+ schema:
832
+ type: object
833
+ deprecated: false
834
+ put:
835
+ summary: putContainersidarchive
836
+ description: ''
837
+ operationId: putContainersidarchive
838
+ parameters:
839
+ - name: id
840
+ in: path
841
+ description: ''
842
+ required: true
843
+ style: simple
844
+ schema:
845
+ type: string
846
+ - name: path_dir
847
+ in: query
848
+ description: ''
849
+ required: true
850
+ style: form
851
+ explode: true
852
+ schema:
853
+ type: string
854
+ - name: noOverwriteDirNonDir
855
+ in: query
856
+ description: ''
857
+ style: form
858
+ explode: true
859
+ schema:
860
+ type: string
861
+ - name: inputStream
862
+ in: query
863
+ description: ''
864
+ required: true
865
+ style: form
866
+ explode: true
867
+ schema:
868
+ type: string
869
+ requestBody:
870
+ description: ''
871
+ content:
872
+ application/json:
873
+ schema:
874
+ type: object
875
+ required: false
876
+ responses:
877
+ '200':
878
+ description: Successful operation
879
+ headers: {}
880
+ content:
881
+ application/json:
882
+ schema:
883
+ type: object
884
+ deprecated: false
885
+ /containers/prune:
886
+ post:
887
+ summary: postContainersprune
888
+ description: ''
889
+ operationId: postContainersprune
890
+ parameters:
891
+ - name: filters
892
+ in: query
893
+ description: ''
894
+ style: form
895
+ explode: true
896
+ schema:
897
+ type: string
898
+ requestBody:
899
+ description: ''
900
+ content:
901
+ application/json:
902
+ schema:
903
+ type: object
904
+ required: false
905
+ responses:
906
+ '200':
907
+ description: Successful operation
908
+ headers: {}
909
+ content:
910
+ application/json:
911
+ schema:
912
+ type: object
913
+ deprecated: false
914
+ /images/json:
915
+ get:
916
+ summary: getImagesjson
917
+ description: ''
918
+ operationId: getImagesjson
919
+ parameters:
920
+ - name: all
921
+ in: query
922
+ description: ''
923
+ style: form
924
+ explode: true
925
+ schema:
926
+ type: boolean
927
+ - name: filters
928
+ in: query
929
+ description: ''
930
+ style: form
931
+ explode: true
932
+ schema:
933
+ type: string
934
+ - name: digests
935
+ in: query
936
+ description: ''
937
+ style: form
938
+ explode: true
939
+ schema:
940
+ type: boolean
941
+ responses:
942
+ '200':
943
+ description: Successful operation
944
+ headers: {}
945
+ content:
946
+ application/json:
947
+ schema:
948
+ type: object
949
+ deprecated: false
950
+ /build:
951
+ post:
952
+ summary: postBuild
953
+ description: ''
954
+ operationId: postBuild
955
+ parameters:
956
+ - name: inputStream
957
+ in: query
958
+ description: ''
959
+ style: form
960
+ explode: true
961
+ schema:
962
+ type: string
963
+ - name: dockerfile
964
+ in: query
965
+ description: ''
966
+ style: form
967
+ explode: true
968
+ schema:
969
+ type: string
970
+ - name: t
971
+ in: query
972
+ description: ''
973
+ style: form
974
+ explode: true
975
+ schema:
976
+ type: string
977
+ - name: remote
978
+ in: query
979
+ description: ''
980
+ style: form
981
+ explode: true
982
+ schema:
983
+ type: string
984
+ - name: q
985
+ in: query
986
+ description: ''
987
+ style: form
988
+ explode: true
989
+ schema:
990
+ type: boolean
991
+ - name: nocache
992
+ in: query
993
+ description: ''
994
+ style: form
995
+ explode: true
996
+ schema:
997
+ type: boolean
998
+ - name: cachefrom
999
+ in: query
1000
+ description: ''
1001
+ style: form
1002
+ explode: true
1003
+ schema:
1004
+ type: string
1005
+ - name: pull
1006
+ in: query
1007
+ description: ''
1008
+ style: form
1009
+ explode: true
1010
+ schema:
1011
+ type: string
1012
+ - name: rm
1013
+ in: query
1014
+ description: ''
1015
+ style: form
1016
+ explode: true
1017
+ schema:
1018
+ type: boolean
1019
+ - name: forcerm
1020
+ in: query
1021
+ description: ''
1022
+ style: form
1023
+ explode: true
1024
+ schema:
1025
+ type: boolean
1026
+ - name: memory
1027
+ in: query
1028
+ description: ''
1029
+ style: form
1030
+ explode: true
1031
+ schema:
1032
+ type: number
1033
+ format: double
1034
+ - name: memswap
1035
+ in: query
1036
+ description: ''
1037
+ style: form
1038
+ explode: true
1039
+ schema:
1040
+ type: number
1041
+ format: double
1042
+ - name: cpushares
1043
+ in: query
1044
+ description: ''
1045
+ style: form
1046
+ explode: true
1047
+ schema:
1048
+ type: number
1049
+ format: double
1050
+ - name: cpusetcpus
1051
+ in: query
1052
+ description: ''
1053
+ style: form
1054
+ explode: true
1055
+ schema:
1056
+ type: string
1057
+ - name: cpuperiod
1058
+ in: query
1059
+ description: ''
1060
+ style: form
1061
+ explode: true
1062
+ schema:
1063
+ type: number
1064
+ format: double
1065
+ - name: cpuquota
1066
+ in: query
1067
+ description: ''
1068
+ style: form
1069
+ explode: true
1070
+ schema:
1071
+ type: number
1072
+ format: double
1073
+ - name: buildargs
1074
+ in: query
1075
+ description: ''
1076
+ style: form
1077
+ explode: true
1078
+ schema:
1079
+ type: number
1080
+ format: double
1081
+ - name: shmsize
1082
+ in: query
1083
+ description: ''
1084
+ style: form
1085
+ explode: true
1086
+ schema:
1087
+ type: number
1088
+ format: double
1089
+ - name: squash
1090
+ in: query
1091
+ description: ''
1092
+ style: form
1093
+ explode: true
1094
+ schema:
1095
+ type: boolean
1096
+ - name: labels
1097
+ in: query
1098
+ description: ''
1099
+ style: form
1100
+ explode: true
1101
+ schema:
1102
+ type: string
1103
+ - name: networkmode
1104
+ in: query
1105
+ description: ''
1106
+ style: form
1107
+ explode: true
1108
+ schema:
1109
+ type: string
1110
+ - name: Contenttype
1111
+ in: query
1112
+ description: ''
1113
+ style: form
1114
+ explode: true
1115
+ schema:
1116
+ type: string
1117
+ - name: XRegistryConfig
1118
+ in: query
1119
+ description: ''
1120
+ style: form
1121
+ explode: true
1122
+ schema:
1123
+ type: string
1124
+ requestBody:
1125
+ description: ''
1126
+ content:
1127
+ application/json:
1128
+ schema:
1129
+ type: object
1130
+ required: false
1131
+ responses:
1132
+ '200':
1133
+ description: Successful operation
1134
+ headers: {}
1135
+ content:
1136
+ application/json:
1137
+ schema:
1138
+ type: object
1139
+ deprecated: false
1140
+ /images/create:
1141
+ post:
1142
+ summary: postImagescreate
1143
+ description: ''
1144
+ operationId: postImagescreate
1145
+ parameters:
1146
+ - name: fromImage
1147
+ in: query
1148
+ description: ''
1149
+ style: form
1150
+ explode: true
1151
+ schema:
1152
+ type: string
1153
+ - name: fromSrc
1154
+ in: query
1155
+ description: ''
1156
+ style: form
1157
+ explode: true
1158
+ schema:
1159
+ type: string
1160
+ - name: repo
1161
+ in: query
1162
+ description: ''
1163
+ style: form
1164
+ explode: true
1165
+ schema:
1166
+ type: string
1167
+ - name: tag
1168
+ in: query
1169
+ description: ''
1170
+ style: form
1171
+ explode: true
1172
+ schema:
1173
+ type: string
1174
+ - name: inputImage
1175
+ in: query
1176
+ description: ''
1177
+ style: form
1178
+ explode: true
1179
+ schema:
1180
+ type: string
1181
+ - name: XRegistryAuth
1182
+ in: query
1183
+ description: ''
1184
+ style: form
1185
+ explode: true
1186
+ schema:
1187
+ type: string
1188
+ requestBody:
1189
+ description: ''
1190
+ content:
1191
+ application/json:
1192
+ schema:
1193
+ type: object
1194
+ required: false
1195
+ responses:
1196
+ '200':
1197
+ description: Successful operation
1198
+ headers: {}
1199
+ content:
1200
+ application/json:
1201
+ schema:
1202
+ type: object
1203
+ deprecated: false
1204
+ /images/{name}/json:
1205
+ get:
1206
+ summary: getImagesnamejson
1207
+ description: ''
1208
+ operationId: getImagesnamejson
1209
+ parameters:
1210
+ - name: name
1211
+ in: path
1212
+ description: ''
1213
+ required: true
1214
+ style: simple
1215
+ schema:
1216
+ type: string
1217
+ responses:
1218
+ '200':
1219
+ description: Successful operation
1220
+ headers: {}
1221
+ content:
1222
+ application/json:
1223
+ schema:
1224
+ type: object
1225
+ deprecated: false
1226
+ /images/{name}/history:
1227
+ get:
1228
+ summary: getImagesnamehistory
1229
+ description: ''
1230
+ operationId: getImagesnamehistory
1231
+ parameters:
1232
+ - name: name
1233
+ in: path
1234
+ description: ''
1235
+ required: true
1236
+ style: simple
1237
+ schema:
1238
+ type: string
1239
+ responses:
1240
+ '200':
1241
+ description: Successful operation
1242
+ headers: {}
1243
+ content:
1244
+ application/json:
1245
+ schema:
1246
+ type: object
1247
+ deprecated: false
1248
+ /images/{name}/push:
1249
+ post:
1250
+ summary: postImagesnamepush
1251
+ description: ''
1252
+ operationId: postImagesnamepush
1253
+ parameters:
1254
+ - name: name
1255
+ in: path
1256
+ description: ''
1257
+ required: true
1258
+ style: simple
1259
+ schema:
1260
+ type: string
1261
+ - name: tag
1262
+ in: query
1263
+ description: ''
1264
+ style: form
1265
+ explode: true
1266
+ schema:
1267
+ type: string
1268
+ - name: XRegistryAuth
1269
+ in: query
1270
+ description: ''
1271
+ required: true
1272
+ style: form
1273
+ explode: true
1274
+ schema:
1275
+ type: string
1276
+ requestBody:
1277
+ description: ''
1278
+ content:
1279
+ application/json:
1280
+ schema:
1281
+ type: object
1282
+ required: false
1283
+ responses:
1284
+ '200':
1285
+ description: Successful operation
1286
+ headers: {}
1287
+ content:
1288
+ application/json:
1289
+ schema:
1290
+ type: object
1291
+ deprecated: false
1292
+ /images/{name}/tag:
1293
+ post:
1294
+ summary: postImagesnametag
1295
+ description: ''
1296
+ operationId: postImagesnametag
1297
+ parameters:
1298
+ - name: name
1299
+ in: path
1300
+ description: ''
1301
+ required: true
1302
+ style: simple
1303
+ schema:
1304
+ type: string
1305
+ - name: repo
1306
+ in: query
1307
+ description: ''
1308
+ style: form
1309
+ explode: true
1310
+ schema:
1311
+ type: string
1312
+ - name: tag
1313
+ in: query
1314
+ description: ''
1315
+ style: form
1316
+ explode: true
1317
+ schema:
1318
+ type: string
1319
+ requestBody:
1320
+ description: ''
1321
+ content:
1322
+ application/json:
1323
+ schema:
1324
+ type: object
1325
+ required: false
1326
+ responses:
1327
+ '200':
1328
+ description: Successful operation
1329
+ headers: {}
1330
+ content:
1331
+ application/json:
1332
+ schema:
1333
+ type: object
1334
+ deprecated: false
1335
+ /images/{name}:
1336
+ delete:
1337
+ summary: deleteImagesname
1338
+ description: ''
1339
+ operationId: deleteImagesname
1340
+ parameters:
1341
+ - name: name
1342
+ in: path
1343
+ description: ''
1344
+ required: true
1345
+ style: simple
1346
+ schema:
1347
+ type: string
1348
+ - name: force
1349
+ in: query
1350
+ description: ''
1351
+ style: form
1352
+ explode: true
1353
+ schema:
1354
+ type: boolean
1355
+ - name: noprune
1356
+ in: query
1357
+ description: ''
1358
+ style: form
1359
+ explode: true
1360
+ schema:
1361
+ type: boolean
1362
+ responses:
1363
+ '200':
1364
+ description: Successful operation
1365
+ headers: {}
1366
+ content:
1367
+ application/json:
1368
+ schema:
1369
+ type: object
1370
+ deprecated: false
1371
+ /images/search:
1372
+ get:
1373
+ summary: getImagessearch
1374
+ description: ''
1375
+ operationId: getImagessearch
1376
+ parameters:
1377
+ - name: term
1378
+ in: query
1379
+ description: ''
1380
+ required: true
1381
+ style: form
1382
+ explode: true
1383
+ schema:
1384
+ type: string
1385
+ - name: limit
1386
+ in: query
1387
+ description: ''
1388
+ style: form
1389
+ explode: true
1390
+ schema:
1391
+ type: number
1392
+ format: double
1393
+ - name: filters
1394
+ in: query
1395
+ description: ''
1396
+ style: form
1397
+ explode: true
1398
+ schema:
1399
+ type: string
1400
+ responses:
1401
+ '200':
1402
+ description: Successful operation
1403
+ headers: {}
1404
+ content:
1405
+ application/json:
1406
+ schema:
1407
+ type: object
1408
+ deprecated: false
1409
+ /images/prune:
1410
+ post:
1411
+ summary: postImagesprune
1412
+ description: ''
1413
+ operationId: postImagesprune
1414
+ parameters:
1415
+ - name: filters
1416
+ in: query
1417
+ description: ''
1418
+ style: form
1419
+ explode: true
1420
+ schema:
1421
+ type: string
1422
+ requestBody:
1423
+ description: ''
1424
+ content:
1425
+ application/json:
1426
+ schema:
1427
+ type: object
1428
+ required: false
1429
+ responses:
1430
+ '200':
1431
+ description: Successful operation
1432
+ headers: {}
1433
+ content:
1434
+ application/json:
1435
+ schema:
1436
+ type: object
1437
+ deprecated: false
1438
+ /commit:
1439
+ post:
1440
+ summary: postCommit
1441
+ description: ''
1442
+ operationId: postCommit
1443
+ parameters:
1444
+ - name: containerConfig
1445
+ in: query
1446
+ description: ''
1447
+ style: form
1448
+ explode: true
1449
+ schema:
1450
+ type: object
1451
+ - name: container
1452
+ in: query
1453
+ description: ''
1454
+ style: form
1455
+ explode: true
1456
+ schema:
1457
+ type: string
1458
+ - name: repo
1459
+ in: query
1460
+ description: ''
1461
+ style: form
1462
+ explode: true
1463
+ schema:
1464
+ type: string
1465
+ - name: tag
1466
+ in: query
1467
+ description: ''
1468
+ style: form
1469
+ explode: true
1470
+ schema:
1471
+ type: string
1472
+ - name: comment
1473
+ in: query
1474
+ description: ''
1475
+ style: form
1476
+ explode: true
1477
+ schema:
1478
+ type: string
1479
+ - name: author
1480
+ in: query
1481
+ description: ''
1482
+ style: form
1483
+ explode: true
1484
+ schema:
1485
+ type: string
1486
+ - name: pause
1487
+ in: query
1488
+ description: ''
1489
+ style: form
1490
+ explode: true
1491
+ schema:
1492
+ type: boolean
1493
+ - name: changes
1494
+ in: query
1495
+ description: ''
1496
+ style: form
1497
+ explode: true
1498
+ schema:
1499
+ type: string
1500
+ requestBody:
1501
+ description: ''
1502
+ content:
1503
+ application/json:
1504
+ schema:
1505
+ type: object
1506
+ required: false
1507
+ responses:
1508
+ '200':
1509
+ description: Successful operation
1510
+ headers: {}
1511
+ content:
1512
+ application/json:
1513
+ schema:
1514
+ type: object
1515
+ deprecated: false
1516
+ /images/{name}/get:
1517
+ get:
1518
+ summary: getImagesnameget
1519
+ description: ''
1520
+ operationId: getImagesnameget
1521
+ parameters:
1522
+ - name: name
1523
+ in: path
1524
+ description: ''
1525
+ required: true
1526
+ style: simple
1527
+ schema:
1528
+ type: string
1529
+ responses:
1530
+ '200':
1531
+ description: Successful operation
1532
+ headers: {}
1533
+ content:
1534
+ application/json:
1535
+ schema:
1536
+ type: object
1537
+ deprecated: false
1538
+ /images/get:
1539
+ get:
1540
+ summary: getImagesget
1541
+ description: ''
1542
+ operationId: getImagesget
1543
+ parameters:
1544
+ - name: names
1545
+ in: query
1546
+ description: ''
1547
+ style: form
1548
+ explode: true
1549
+ schema:
1550
+ type: array
1551
+ items: {}
1552
+ responses:
1553
+ '200':
1554
+ description: Successful operation
1555
+ headers: {}
1556
+ content:
1557
+ application/json:
1558
+ schema:
1559
+ type: object
1560
+ deprecated: false
1561
+ /images/load:
1562
+ post:
1563
+ summary: postImagesload
1564
+ description: ''
1565
+ operationId: postImagesload
1566
+ parameters:
1567
+ - name: imagesTarball
1568
+ in: query
1569
+ description: ''
1570
+ style: form
1571
+ explode: true
1572
+ schema:
1573
+ type: string
1574
+ - name: quiet
1575
+ in: query
1576
+ description: ''
1577
+ style: form
1578
+ explode: true
1579
+ schema:
1580
+ type: boolean
1581
+ requestBody:
1582
+ description: ''
1583
+ content:
1584
+ application/json:
1585
+ schema:
1586
+ type: object
1587
+ required: false
1588
+ responses:
1589
+ '200':
1590
+ description: Successful operation
1591
+ headers: {}
1592
+ content:
1593
+ application/json:
1594
+ schema:
1595
+ type: object
1596
+ deprecated: false
1597
+ /auth:
1598
+ post:
1599
+ summary: postAuth
1600
+ description: ''
1601
+ operationId: postAuth
1602
+ parameters:
1603
+ - name: authConfig
1604
+ in: query
1605
+ description: ''
1606
+ style: form
1607
+ explode: true
1608
+ schema:
1609
+ type: object
1610
+ requestBody:
1611
+ description: ''
1612
+ content:
1613
+ application/json:
1614
+ schema:
1615
+ type: object
1616
+ required: false
1617
+ responses:
1618
+ '200':
1619
+ description: Successful operation
1620
+ headers: {}
1621
+ content:
1622
+ application/json:
1623
+ schema:
1624
+ type: object
1625
+ deprecated: false
1626
+ /info:
1627
+ get:
1628
+ summary: getInfo
1629
+ description: ''
1630
+ operationId: getInfo
1631
+ parameters: []
1632
+ responses:
1633
+ '200':
1634
+ description: Successful operation
1635
+ headers: {}
1636
+ content:
1637
+ application/json:
1638
+ schema:
1639
+ type: object
1640
+ deprecated: false
1641
+ /version:
1642
+ get:
1643
+ summary: getVersion
1644
+ description: ''
1645
+ operationId: getVersion
1646
+ parameters: []
1647
+ responses:
1648
+ '200':
1649
+ description: Successful operation
1650
+ headers: {}
1651
+ content:
1652
+ application/json:
1653
+ schema:
1654
+ type: object
1655
+ deprecated: false
1656
+ /_ping:
1657
+ get:
1658
+ summary: getPing
1659
+ description: ''
1660
+ operationId: getPing
1661
+ parameters: []
1662
+ responses:
1663
+ '200':
1664
+ description: Successful operation
1665
+ headers: {}
1666
+ content:
1667
+ application/json:
1668
+ schema:
1669
+ type: object
1670
+ deprecated: false
1671
+ /events:
1672
+ get:
1673
+ summary: getEvents
1674
+ description: ''
1675
+ operationId: getEvents
1676
+ parameters:
1677
+ - name: since
1678
+ in: query
1679
+ description: ''
1680
+ style: form
1681
+ explode: true
1682
+ schema:
1683
+ type: string
1684
+ - name: until
1685
+ in: query
1686
+ description: ''
1687
+ style: form
1688
+ explode: true
1689
+ schema:
1690
+ type: string
1691
+ - name: filters
1692
+ in: query
1693
+ description: ''
1694
+ style: form
1695
+ explode: true
1696
+ schema:
1697
+ type: string
1698
+ responses:
1699
+ '200':
1700
+ description: Successful operation
1701
+ headers: {}
1702
+ content:
1703
+ application/json:
1704
+ schema:
1705
+ type: object
1706
+ deprecated: false
1707
+ /system/df:
1708
+ get:
1709
+ summary: getSystemdf
1710
+ description: ''
1711
+ operationId: getSystemdf
1712
+ parameters: []
1713
+ responses:
1714
+ '200':
1715
+ description: Successful operation
1716
+ headers: {}
1717
+ content:
1718
+ application/json:
1719
+ schema:
1720
+ type: object
1721
+ deprecated: false
1722
+ /containers/{id}/exec:
1723
+ post:
1724
+ summary: postContainersidexec
1725
+ description: ''
1726
+ operationId: postContainersidexec
1727
+ parameters:
1728
+ - name: id
1729
+ in: path
1730
+ description: ''
1731
+ required: true
1732
+ style: simple
1733
+ schema:
1734
+ type: string
1735
+ - name: execConfig
1736
+ in: query
1737
+ description: ''
1738
+ required: true
1739
+ style: form
1740
+ explode: true
1741
+ schema:
1742
+ type: object
1743
+ requestBody:
1744
+ description: ''
1745
+ content:
1746
+ application/json:
1747
+ schema:
1748
+ type: object
1749
+ required: false
1750
+ responses:
1751
+ '200':
1752
+ description: Successful operation
1753
+ headers: {}
1754
+ content:
1755
+ application/json:
1756
+ schema:
1757
+ type: object
1758
+ deprecated: false
1759
+ /exec/{id}/start:
1760
+ post:
1761
+ summary: postExecidstart
1762
+ description: ''
1763
+ operationId: postExecidstart
1764
+ parameters:
1765
+ - name: id
1766
+ in: path
1767
+ description: ''
1768
+ required: true
1769
+ style: simple
1770
+ schema:
1771
+ type: string
1772
+ - name: execStartConfig
1773
+ in: query
1774
+ description: ''
1775
+ style: form
1776
+ explode: true
1777
+ schema:
1778
+ type: object
1779
+ requestBody:
1780
+ description: ''
1781
+ content:
1782
+ application/json:
1783
+ schema:
1784
+ type: object
1785
+ required: false
1786
+ responses:
1787
+ '200':
1788
+ description: Successful operation
1789
+ headers: {}
1790
+ content:
1791
+ application/json:
1792
+ schema:
1793
+ type: object
1794
+ deprecated: false
1795
+ /exec/{id}/resize:
1796
+ post:
1797
+ summary: postExecidresize
1798
+ description: ''
1799
+ operationId: postExecidresize
1800
+ parameters:
1801
+ - name: id
1802
+ in: path
1803
+ description: ''
1804
+ required: true
1805
+ style: simple
1806
+ schema:
1807
+ type: string
1808
+ - name: h
1809
+ in: query
1810
+ description: ''
1811
+ style: form
1812
+ explode: true
1813
+ schema:
1814
+ type: number
1815
+ format: double
1816
+ - name: w
1817
+ in: query
1818
+ description: ''
1819
+ style: form
1820
+ explode: true
1821
+ schema:
1822
+ type: number
1823
+ format: double
1824
+ requestBody:
1825
+ description: ''
1826
+ content:
1827
+ application/json:
1828
+ schema:
1829
+ type: object
1830
+ required: false
1831
+ responses:
1832
+ '200':
1833
+ description: Successful operation
1834
+ headers: {}
1835
+ content:
1836
+ application/json:
1837
+ schema:
1838
+ type: object
1839
+ deprecated: false
1840
+ /exec/{id}/json:
1841
+ get:
1842
+ summary: getExecidjson
1843
+ description: ''
1844
+ operationId: getExecidjson
1845
+ parameters:
1846
+ - name: id
1847
+ in: path
1848
+ description: ''
1849
+ required: true
1850
+ style: simple
1851
+ schema:
1852
+ type: string
1853
+ responses:
1854
+ '200':
1855
+ description: Successful operation
1856
+ headers: {}
1857
+ content:
1858
+ application/json:
1859
+ schema:
1860
+ type: object
1861
+ deprecated: false
1862
+ /volumes:
1863
+ get:
1864
+ summary: getVolumes
1865
+ description: ''
1866
+ operationId: getVolumes
1867
+ parameters:
1868
+ - name: filters
1869
+ in: query
1870
+ description: ''
1871
+ style: form
1872
+ explode: true
1873
+ schema:
1874
+ type: string
1875
+ responses:
1876
+ '200':
1877
+ description: Successful operation
1878
+ headers: {}
1879
+ content:
1880
+ application/json:
1881
+ schema:
1882
+ type: object
1883
+ deprecated: false
1884
+ /volumes/create:
1885
+ post:
1886
+ summary: postVolumescreate
1887
+ description: ''
1888
+ operationId: postVolumescreate
1889
+ parameters:
1890
+ - name: volumeConfig
1891
+ in: query
1892
+ description: ''
1893
+ required: true
1894
+ style: form
1895
+ explode: true
1896
+ schema:
1897
+ type: object
1898
+ requestBody:
1899
+ description: ''
1900
+ content:
1901
+ application/json:
1902
+ schema:
1903
+ type: object
1904
+ required: false
1905
+ responses:
1906
+ '200':
1907
+ description: Successful operation
1908
+ headers: {}
1909
+ content:
1910
+ application/json:
1911
+ schema:
1912
+ type: object
1913
+ deprecated: false
1914
+ /volumes/{name}:
1915
+ get:
1916
+ summary: getVolumesname
1917
+ description: ''
1918
+ operationId: getVolumesname
1919
+ parameters:
1920
+ - name: name
1921
+ in: path
1922
+ description: ''
1923
+ required: true
1924
+ style: simple
1925
+ schema:
1926
+ type: string
1927
+ responses:
1928
+ '200':
1929
+ description: Successful operation
1930
+ headers: {}
1931
+ content:
1932
+ application/json:
1933
+ schema:
1934
+ type: object
1935
+ deprecated: false
1936
+ delete:
1937
+ summary: deleteVolumesname
1938
+ description: ''
1939
+ operationId: deleteVolumesname
1940
+ parameters:
1941
+ - name: name
1942
+ in: path
1943
+ description: ''
1944
+ required: true
1945
+ style: simple
1946
+ schema:
1947
+ type: string
1948
+ - name: force
1949
+ in: query
1950
+ description: ''
1951
+ style: form
1952
+ explode: true
1953
+ schema:
1954
+ type: boolean
1955
+ responses:
1956
+ '200':
1957
+ description: Successful operation
1958
+ headers: {}
1959
+ content:
1960
+ application/json:
1961
+ schema:
1962
+ type: object
1963
+ deprecated: false
1964
+ /volumes/prune:
1965
+ post:
1966
+ summary: postVolumesprune
1967
+ description: ''
1968
+ operationId: postVolumesprune
1969
+ parameters:
1970
+ - name: filters
1971
+ in: query
1972
+ description: ''
1973
+ style: form
1974
+ explode: true
1975
+ schema:
1976
+ type: string
1977
+ requestBody:
1978
+ description: ''
1979
+ content:
1980
+ application/json:
1981
+ schema:
1982
+ type: object
1983
+ required: false
1984
+ responses:
1985
+ '200':
1986
+ description: Successful operation
1987
+ headers: {}
1988
+ content:
1989
+ application/json:
1990
+ schema:
1991
+ type: object
1992
+ deprecated: false
1993
+ /networks:
1994
+ get:
1995
+ summary: getNetworks
1996
+ description: ''
1997
+ operationId: getNetworks
1998
+ parameters:
1999
+ - name: filters
2000
+ in: query
2001
+ description: ''
2002
+ style: form
2003
+ explode: true
2004
+ schema:
2005
+ type: string
2006
+ responses:
2007
+ '200':
2008
+ description: Successful operation
2009
+ headers: {}
2010
+ content:
2011
+ application/json:
2012
+ schema:
2013
+ type: object
2014
+ deprecated: false
2015
+ /networks/{id}:
2016
+ get:
2017
+ summary: getNetworksid
2018
+ description: ''
2019
+ operationId: getNetworksid
2020
+ parameters:
2021
+ - name: id
2022
+ in: path
2023
+ description: ''
2024
+ required: true
2025
+ style: simple
2026
+ schema:
2027
+ type: string
2028
+ responses:
2029
+ '200':
2030
+ description: Successful operation
2031
+ headers: {}
2032
+ content:
2033
+ application/json:
2034
+ schema:
2035
+ type: object
2036
+ deprecated: false
2037
+ delete:
2038
+ summary: deleteNetworksid
2039
+ description: ''
2040
+ operationId: deleteNetworksid
2041
+ parameters:
2042
+ - name: id
2043
+ in: path
2044
+ description: ''
2045
+ required: true
2046
+ style: simple
2047
+ schema:
2048
+ type: string
2049
+ responses:
2050
+ '200':
2051
+ description: Successful operation
2052
+ headers: {}
2053
+ content:
2054
+ application/json:
2055
+ schema:
2056
+ type: object
2057
+ deprecated: false
2058
+ /networks/create:
2059
+ post:
2060
+ summary: postNetworkscreate
2061
+ description: ''
2062
+ operationId: postNetworkscreate
2063
+ parameters:
2064
+ - name: networkConfig
2065
+ in: query
2066
+ description: ''
2067
+ required: true
2068
+ style: form
2069
+ explode: true
2070
+ schema:
2071
+ type: object
2072
+ requestBody:
2073
+ description: ''
2074
+ content:
2075
+ application/json:
2076
+ schema:
2077
+ type: object
2078
+ required: false
2079
+ responses:
2080
+ '200':
2081
+ description: Successful operation
2082
+ headers: {}
2083
+ content:
2084
+ application/json:
2085
+ schema:
2086
+ type: object
2087
+ deprecated: false
2088
+ /networks/{id}/connect:
2089
+ post:
2090
+ summary: postNetworksidconnect
2091
+ description: ''
2092
+ operationId: postNetworksidconnect
2093
+ parameters:
2094
+ - name: id
2095
+ in: path
2096
+ description: ''
2097
+ required: true
2098
+ style: simple
2099
+ schema:
2100
+ type: string
2101
+ - name: container
2102
+ in: query
2103
+ description: ''
2104
+ required: true
2105
+ style: form
2106
+ explode: true
2107
+ schema:
2108
+ type: object
2109
+ requestBody:
2110
+ description: ''
2111
+ content:
2112
+ application/json:
2113
+ schema:
2114
+ type: object
2115
+ required: false
2116
+ responses:
2117
+ '200':
2118
+ description: Successful operation
2119
+ headers: {}
2120
+ content:
2121
+ application/json:
2122
+ schema:
2123
+ type: object
2124
+ deprecated: false
2125
+ /networks/{id}/disconnect:
2126
+ post:
2127
+ summary: postNetworksiddisconnect
2128
+ description: ''
2129
+ operationId: postNetworksiddisconnect
2130
+ parameters:
2131
+ - name: id
2132
+ in: path
2133
+ description: ''
2134
+ required: true
2135
+ style: simple
2136
+ schema:
2137
+ type: string
2138
+ - name: container
2139
+ in: query
2140
+ description: ''
2141
+ required: true
2142
+ style: form
2143
+ explode: true
2144
+ schema:
2145
+ type: object
2146
+ requestBody:
2147
+ description: ''
2148
+ content:
2149
+ application/json:
2150
+ schema:
2151
+ type: object
2152
+ required: false
2153
+ responses:
2154
+ '200':
2155
+ description: Successful operation
2156
+ headers: {}
2157
+ content:
2158
+ application/json:
2159
+ schema:
2160
+ type: object
2161
+ deprecated: false
2162
+ /networks/prune:
2163
+ post:
2164
+ summary: postNetworksprune
2165
+ description: ''
2166
+ operationId: postNetworksprune
2167
+ parameters:
2168
+ - name: filters
2169
+ in: query
2170
+ description: ''
2171
+ style: form
2172
+ explode: true
2173
+ schema:
2174
+ type: string
2175
+ requestBody:
2176
+ description: ''
2177
+ content:
2178
+ application/json:
2179
+ schema:
2180
+ type: object
2181
+ required: false
2182
+ responses:
2183
+ '200':
2184
+ description: Successful operation
2185
+ headers: {}
2186
+ content:
2187
+ application/json:
2188
+ schema:
2189
+ type: object
2190
+ deprecated: false
2191
+ /plugins:
2192
+ get:
2193
+ summary: getPlugins
2194
+ description: ''
2195
+ operationId: getPlugins
2196
+ parameters: []
2197
+ responses:
2198
+ '200':
2199
+ description: Successful operation
2200
+ headers: {}
2201
+ content:
2202
+ application/json:
2203
+ schema:
2204
+ type: object
2205
+ deprecated: false
2206
+ /plugins/privileges:
2207
+ get:
2208
+ summary: getPluginsprivileges
2209
+ description: ''
2210
+ operationId: getPluginsprivileges
2211
+ parameters:
2212
+ - name: name
2213
+ in: query
2214
+ description: ''
2215
+ required: true
2216
+ style: form
2217
+ explode: true
2218
+ schema:
2219
+ type: string
2220
+ responses:
2221
+ '200':
2222
+ description: Successful operation
2223
+ headers: {}
2224
+ content:
2225
+ application/json:
2226
+ schema:
2227
+ type: object
2228
+ deprecated: false
2229
+ /plugins/pull:
2230
+ post:
2231
+ summary: postPluginspull
2232
+ description: ''
2233
+ operationId: postPluginspull
2234
+ parameters:
2235
+ - name: remote
2236
+ in: query
2237
+ description: ''
2238
+ required: true
2239
+ style: form
2240
+ explode: true
2241
+ schema:
2242
+ type: string
2243
+ - name: name
2244
+ in: query
2245
+ description: ''
2246
+ style: form
2247
+ explode: true
2248
+ schema:
2249
+ type: string
2250
+ - name: XRegistryAuth
2251
+ in: query
2252
+ description: ''
2253
+ style: form
2254
+ explode: true
2255
+ schema:
2256
+ type: string
2257
+ requestBody:
2258
+ description: ''
2259
+ content:
2260
+ application/json:
2261
+ schema:
2262
+ type: object
2263
+ required: false
2264
+ responses:
2265
+ '200':
2266
+ description: Successful operation
2267
+ headers: {}
2268
+ content:
2269
+ application/json:
2270
+ schema:
2271
+ type: object
2272
+ deprecated: false
2273
+ /plugins/{name}/json:
2274
+ get:
2275
+ summary: getPluginsnamejson
2276
+ description: ''
2277
+ operationId: getPluginsnamejson
2278
+ parameters:
2279
+ - name: name
2280
+ in: path
2281
+ description: ''
2282
+ required: true
2283
+ style: simple
2284
+ schema:
2285
+ type: string
2286
+ responses:
2287
+ '200':
2288
+ description: Successful operation
2289
+ headers: {}
2290
+ content:
2291
+ application/json:
2292
+ schema:
2293
+ type: object
2294
+ deprecated: false
2295
+ /plugins/{name}:
2296
+ delete:
2297
+ summary: deletePluginsname
2298
+ description: ''
2299
+ operationId: deletePluginsname
2300
+ parameters:
2301
+ - name: name
2302
+ in: path
2303
+ description: ''
2304
+ required: true
2305
+ style: simple
2306
+ schema:
2307
+ type: string
2308
+ - name: force
2309
+ in: query
2310
+ description: ''
2311
+ style: form
2312
+ explode: true
2313
+ schema:
2314
+ type: boolean
2315
+ responses:
2316
+ '200':
2317
+ description: Successful operation
2318
+ headers: {}
2319
+ content:
2320
+ application/json:
2321
+ schema:
2322
+ type: object
2323
+ deprecated: false
2324
+ /plugins/{name}/enable:
2325
+ post:
2326
+ summary: postPluginsnameenable
2327
+ description: ''
2328
+ operationId: postPluginsnameenable
2329
+ parameters:
2330
+ - name: name
2331
+ in: path
2332
+ description: ''
2333
+ required: true
2334
+ style: simple
2335
+ schema:
2336
+ type: string
2337
+ - name: timeout
2338
+ in: query
2339
+ description: ''
2340
+ style: form
2341
+ explode: true
2342
+ schema:
2343
+ type: number
2344
+ format: double
2345
+ requestBody:
2346
+ description: ''
2347
+ content:
2348
+ application/json:
2349
+ schema:
2350
+ type: object
2351
+ required: false
2352
+ responses:
2353
+ '200':
2354
+ description: Successful operation
2355
+ headers: {}
2356
+ content:
2357
+ application/json:
2358
+ schema:
2359
+ type: object
2360
+ deprecated: false
2361
+ /plugins/{name}/disable:
2362
+ post:
2363
+ summary: postPluginsnamedisable
2364
+ description: ''
2365
+ operationId: postPluginsnamedisable
2366
+ parameters:
2367
+ - name: name
2368
+ in: path
2369
+ description: ''
2370
+ required: true
2371
+ style: simple
2372
+ schema:
2373
+ type: string
2374
+ requestBody:
2375
+ description: ''
2376
+ content:
2377
+ application/json:
2378
+ schema:
2379
+ type: object
2380
+ required: false
2381
+ responses:
2382
+ '200':
2383
+ description: Successful operation
2384
+ headers: {}
2385
+ content:
2386
+ application/json:
2387
+ schema:
2388
+ type: object
2389
+ deprecated: false
2390
+ /plugins/create:
2391
+ post:
2392
+ summary: postPluginscreate
2393
+ description: ''
2394
+ operationId: postPluginscreate
2395
+ parameters:
2396
+ - name: name
2397
+ in: query
2398
+ description: ''
2399
+ required: true
2400
+ style: form
2401
+ explode: true
2402
+ schema:
2403
+ type: string
2404
+ - name: tarContext
2405
+ in: query
2406
+ description: ''
2407
+ style: form
2408
+ explode: true
2409
+ schema:
2410
+ type: string
2411
+ requestBody:
2412
+ description: ''
2413
+ content:
2414
+ application/json:
2415
+ schema:
2416
+ type: object
2417
+ required: false
2418
+ responses:
2419
+ '200':
2420
+ description: Successful operation
2421
+ headers: {}
2422
+ content:
2423
+ application/json:
2424
+ schema:
2425
+ type: object
2426
+ deprecated: false
2427
+ /plugins/{name}/push:
2428
+ post:
2429
+ summary: postPluginsnamepush
2430
+ description: ''
2431
+ operationId: postPluginsnamepush
2432
+ parameters:
2433
+ - name: name
2434
+ in: path
2435
+ description: ''
2436
+ required: true
2437
+ style: simple
2438
+ schema:
2439
+ type: string
2440
+ requestBody:
2441
+ description: ''
2442
+ content:
2443
+ application/json:
2444
+ schema:
2445
+ type: object
2446
+ required: false
2447
+ responses:
2448
+ '200':
2449
+ description: Successful operation
2450
+ headers: {}
2451
+ content:
2452
+ application/json:
2453
+ schema:
2454
+ type: object
2455
+ deprecated: false
2456
+ /plugins/{name}/set:
2457
+ post:
2458
+ summary: postPluginsnameset
2459
+ description: ''
2460
+ operationId: postPluginsnameset
2461
+ parameters:
2462
+ - name: name
2463
+ in: path
2464
+ description: ''
2465
+ required: true
2466
+ style: simple
2467
+ schema:
2468
+ type: string
2469
+ requestBody:
2470
+ description: ''
2471
+ content:
2472
+ application/json:
2473
+ schema:
2474
+ type: object
2475
+ required: false
2476
+ responses:
2477
+ '200':
2478
+ description: Successful operation
2479
+ headers: {}
2480
+ content:
2481
+ application/json:
2482
+ schema:
2483
+ type: object
2484
+ deprecated: false
2485
+ /nodes:
2486
+ get:
2487
+ summary: getNodes
2488
+ description: ''
2489
+ operationId: getNodes
2490
+ parameters:
2491
+ - name: filters
2492
+ in: query
2493
+ description: ''
2494
+ style: form
2495
+ explode: true
2496
+ schema:
2497
+ type: string
2498
+ responses:
2499
+ '200':
2500
+ description: Successful operation
2501
+ headers: {}
2502
+ content:
2503
+ application/json:
2504
+ schema:
2505
+ type: object
2506
+ deprecated: false
2507
+ /nodes/{id}:
2508
+ get:
2509
+ summary: getNodesid
2510
+ description: ''
2511
+ operationId: getNodesid
2512
+ parameters:
2513
+ - name: id
2514
+ in: path
2515
+ description: ''
2516
+ required: true
2517
+ style: simple
2518
+ schema:
2519
+ type: string
2520
+ responses:
2521
+ '200':
2522
+ description: Successful operation
2523
+ headers: {}
2524
+ content:
2525
+ application/json:
2526
+ schema:
2527
+ type: object
2528
+ deprecated: false
2529
+ delete:
2530
+ summary: deleteNodesid
2531
+ description: ''
2532
+ operationId: deleteNodesid
2533
+ parameters:
2534
+ - name: id
2535
+ in: path
2536
+ description: ''
2537
+ required: true
2538
+ style: simple
2539
+ schema:
2540
+ type: string
2541
+ - name: force
2542
+ in: query
2543
+ description: ''
2544
+ style: form
2545
+ explode: true
2546
+ schema:
2547
+ type: boolean
2548
+ responses:
2549
+ '200':
2550
+ description: Successful operation
2551
+ headers: {}
2552
+ content:
2553
+ application/json:
2554
+ schema:
2555
+ type: object
2556
+ deprecated: false
2557
+ /nodes/{id}/update:
2558
+ post:
2559
+ summary: postNodesidupdate
2560
+ description: ''
2561
+ operationId: postNodesidupdate
2562
+ parameters:
2563
+ - name: id
2564
+ in: path
2565
+ description: ''
2566
+ required: true
2567
+ style: simple
2568
+ schema:
2569
+ type: string
2570
+ - name: version
2571
+ in: query
2572
+ description: ''
2573
+ required: true
2574
+ style: form
2575
+ explode: true
2576
+ schema:
2577
+ type: number
2578
+ format: double
2579
+ requestBody:
2580
+ description: ''
2581
+ content:
2582
+ application/json:
2583
+ schema:
2584
+ type: object
2585
+ required: false
2586
+ responses:
2587
+ '200':
2588
+ description: Successful operation
2589
+ headers: {}
2590
+ content:
2591
+ application/json:
2592
+ schema:
2593
+ type: object
2594
+ deprecated: false
2595
+ /swarm:
2596
+ get:
2597
+ summary: getSwarm
2598
+ description: ''
2599
+ operationId: getSwarm
2600
+ parameters: []
2601
+ responses:
2602
+ '200':
2603
+ description: Successful operation
2604
+ headers: {}
2605
+ content:
2606
+ application/json:
2607
+ schema:
2608
+ type: object
2609
+ deprecated: false
2610
+ /swarm/init:
2611
+ post:
2612
+ summary: postSwarminit
2613
+ description: ''
2614
+ operationId: postSwarminit
2615
+ parameters: []
2616
+ requestBody:
2617
+ description: ''
2618
+ content:
2619
+ application/json:
2620
+ schema:
2621
+ type: object
2622
+ required: false
2623
+ responses:
2624
+ '200':
2625
+ description: Successful operation
2626
+ headers: {}
2627
+ content:
2628
+ application/json:
2629
+ schema:
2630
+ type: object
2631
+ deprecated: false
2632
+ /swarm/join:
2633
+ post:
2634
+ summary: postSwarmjoin
2635
+ description: ''
2636
+ operationId: postSwarmjoin
2637
+ parameters: []
2638
+ requestBody:
2639
+ description: ''
2640
+ content:
2641
+ application/json:
2642
+ schema:
2643
+ type: object
2644
+ required: false
2645
+ responses:
2646
+ '200':
2647
+ description: Successful operation
2648
+ headers: {}
2649
+ content:
2650
+ application/json:
2651
+ schema:
2652
+ type: object
2653
+ deprecated: false
2654
+ /swarm/leave:
2655
+ post:
2656
+ summary: postSwarmleave
2657
+ description: ''
2658
+ operationId: postSwarmleave
2659
+ parameters:
2660
+ - name: force
2661
+ in: query
2662
+ description: ''
2663
+ style: form
2664
+ explode: true
2665
+ schema:
2666
+ type: boolean
2667
+ requestBody:
2668
+ description: ''
2669
+ content:
2670
+ application/json:
2671
+ schema:
2672
+ type: object
2673
+ required: false
2674
+ responses:
2675
+ '200':
2676
+ description: Successful operation
2677
+ headers: {}
2678
+ content:
2679
+ application/json:
2680
+ schema:
2681
+ type: object
2682
+ deprecated: false
2683
+ /swarm/update:
2684
+ post:
2685
+ summary: postSwarmupdate
2686
+ description: ''
2687
+ operationId: postSwarmupdate
2688
+ parameters:
2689
+ - name: version
2690
+ in: query
2691
+ description: ''
2692
+ required: true
2693
+ style: form
2694
+ explode: true
2695
+ schema:
2696
+ type: number
2697
+ format: double
2698
+ - name: rotateWorkerToken
2699
+ in: query
2700
+ description: ''
2701
+ style: form
2702
+ explode: true
2703
+ schema:
2704
+ type: boolean
2705
+ - name: rotateManagerToken
2706
+ in: query
2707
+ description: ''
2708
+ style: form
2709
+ explode: true
2710
+ schema:
2711
+ type: boolean
2712
+ - name: rotateManagerUnlockKey
2713
+ in: query
2714
+ description: ''
2715
+ style: form
2716
+ explode: true
2717
+ schema:
2718
+ type: boolean
2719
+ requestBody:
2720
+ description: ''
2721
+ content:
2722
+ application/json:
2723
+ schema:
2724
+ type: object
2725
+ required: false
2726
+ responses:
2727
+ '200':
2728
+ description: Successful operation
2729
+ headers: {}
2730
+ content:
2731
+ application/json:
2732
+ schema:
2733
+ type: object
2734
+ deprecated: false
2735
+ /swarm/unlockkey:
2736
+ get:
2737
+ summary: getSwarmunlockkey
2738
+ description: ''
2739
+ operationId: getSwarmunlockkey
2740
+ parameters: []
2741
+ responses:
2742
+ '200':
2743
+ description: Successful operation
2744
+ headers: {}
2745
+ content:
2746
+ application/json:
2747
+ schema:
2748
+ type: object
2749
+ deprecated: false
2750
+ /swarm/unlock:
2751
+ post:
2752
+ summary: postSwarmunlock
2753
+ description: ''
2754
+ operationId: postSwarmunlock
2755
+ parameters: []
2756
+ requestBody:
2757
+ description: ''
2758
+ content:
2759
+ application/json:
2760
+ schema:
2761
+ type: object
2762
+ required: false
2763
+ responses:
2764
+ '200':
2765
+ description: Successful operation
2766
+ headers: {}
2767
+ content:
2768
+ application/json:
2769
+ schema:
2770
+ type: object
2771
+ deprecated: false
2772
+ /services:
2773
+ get:
2774
+ summary: getServices
2775
+ description: ''
2776
+ operationId: getServices
2777
+ parameters:
2778
+ - name: filters
2779
+ in: query
2780
+ description: ''
2781
+ style: form
2782
+ explode: true
2783
+ schema:
2784
+ type: string
2785
+ responses:
2786
+ '200':
2787
+ description: Successful operation
2788
+ headers: {}
2789
+ content:
2790
+ application/json:
2791
+ schema:
2792
+ type: object
2793
+ deprecated: false
2794
+ /services/create:
2795
+ post:
2796
+ summary: postServicescreate
2797
+ description: ''
2798
+ operationId: postServicescreate
2799
+ parameters:
2800
+ - name: XRegistryAuth
2801
+ in: query
2802
+ description: ''
2803
+ style: form
2804
+ explode: true
2805
+ schema:
2806
+ type: string
2807
+ requestBody:
2808
+ description: ''
2809
+ content:
2810
+ application/json:
2811
+ schema:
2812
+ type: object
2813
+ required: false
2814
+ responses:
2815
+ '200':
2816
+ description: Successful operation
2817
+ headers: {}
2818
+ content:
2819
+ application/json:
2820
+ schema:
2821
+ type: object
2822
+ deprecated: false
2823
+ /services/{id}:
2824
+ get:
2825
+ summary: getServicesid
2826
+ description: ''
2827
+ operationId: getServicesid
2828
+ parameters:
2829
+ - name: id
2830
+ in: path
2831
+ description: ''
2832
+ required: true
2833
+ style: simple
2834
+ schema:
2835
+ type: string
2836
+ responses:
2837
+ '200':
2838
+ description: Successful operation
2839
+ headers: {}
2840
+ content:
2841
+ application/json:
2842
+ schema:
2843
+ type: object
2844
+ deprecated: false
2845
+ delete:
2846
+ summary: deleteServicesid
2847
+ description: ''
2848
+ operationId: deleteServicesid
2849
+ parameters:
2850
+ - name: id
2851
+ in: path
2852
+ description: ''
2853
+ required: true
2854
+ style: simple
2855
+ schema:
2856
+ type: string
2857
+ responses:
2858
+ '200':
2859
+ description: Successful operation
2860
+ headers: {}
2861
+ content:
2862
+ application/json:
2863
+ schema:
2864
+ type: object
2865
+ deprecated: false
2866
+ /services/{id}/update:
2867
+ post:
2868
+ summary: postServicesidupdate
2869
+ description: ''
2870
+ operationId: postServicesidupdate
2871
+ parameters:
2872
+ - name: id
2873
+ in: path
2874
+ description: ''
2875
+ required: true
2876
+ style: simple
2877
+ schema:
2878
+ type: string
2879
+ - name: version
2880
+ in: query
2881
+ description: ''
2882
+ required: true
2883
+ style: form
2884
+ explode: true
2885
+ schema:
2886
+ type: number
2887
+ format: double
2888
+ - name: registryAuthFrom
2889
+ in: query
2890
+ description: ''
2891
+ style: form
2892
+ explode: true
2893
+ schema:
2894
+ type: string
2895
+ - name: XRegistryAuth
2896
+ in: query
2897
+ description: ''
2898
+ style: form
2899
+ explode: true
2900
+ schema:
2901
+ type: string
2902
+ requestBody:
2903
+ description: ''
2904
+ content:
2905
+ application/json:
2906
+ schema:
2907
+ type: object
2908
+ required: false
2909
+ responses:
2910
+ '200':
2911
+ description: Successful operation
2912
+ headers: {}
2913
+ content:
2914
+ application/json:
2915
+ schema:
2916
+ type: object
2917
+ deprecated: false
2918
+ /services/{id}/logs:
2919
+ get:
2920
+ summary: getServicesidlogs
2921
+ description: ''
2922
+ operationId: getServicesidlogs
2923
+ parameters:
2924
+ - name: id
2925
+ in: path
2926
+ description: ''
2927
+ required: true
2928
+ style: simple
2929
+ schema:
2930
+ type: string
2931
+ - name: details
2932
+ in: query
2933
+ description: ''
2934
+ style: form
2935
+ explode: true
2936
+ schema:
2937
+ type: boolean
2938
+ - name: follow
2939
+ in: query
2940
+ description: ''
2941
+ style: form
2942
+ explode: true
2943
+ schema:
2944
+ type: boolean
2945
+ - name: stdout
2946
+ in: query
2947
+ description: ''
2948
+ style: form
2949
+ explode: true
2950
+ schema:
2951
+ type: boolean
2952
+ - name: stderr
2953
+ in: query
2954
+ description: ''
2955
+ style: form
2956
+ explode: true
2957
+ schema:
2958
+ type: boolean
2959
+ - name: since
2960
+ in: query
2961
+ description: ''
2962
+ style: form
2963
+ explode: true
2964
+ schema:
2965
+ type: number
2966
+ format: double
2967
+ - name: timestamps
2968
+ in: query
2969
+ description: ''
2970
+ style: form
2971
+ explode: true
2972
+ schema:
2973
+ type: boolean
2974
+ - name: tail
2975
+ in: query
2976
+ description: ''
2977
+ style: form
2978
+ explode: true
2979
+ schema:
2980
+ type: string
2981
+ responses:
2982
+ '200':
2983
+ description: Successful operation
2984
+ headers: {}
2985
+ content:
2986
+ application/json:
2987
+ schema:
2988
+ type: object
2989
+ deprecated: false
2990
+ /tasks:
2991
+ get:
2992
+ summary: getTasks
2993
+ description: ''
2994
+ operationId: getTasks
2995
+ parameters:
2996
+ - name: filters
2997
+ in: query
2998
+ description: ''
2999
+ style: form
3000
+ explode: true
3001
+ schema:
3002
+ type: string
3003
+ responses:
3004
+ '200':
3005
+ description: Successful operation
3006
+ headers: {}
3007
+ content:
3008
+ application/json:
3009
+ schema:
3010
+ type: object
3011
+ deprecated: false
3012
+ /tasks/{id}:
3013
+ get:
3014
+ summary: getTasksid
3015
+ description: ''
3016
+ operationId: getTasksid
3017
+ parameters:
3018
+ - name: id
3019
+ in: path
3020
+ description: ''
3021
+ required: true
3022
+ style: simple
3023
+ schema:
3024
+ type: string
3025
+ responses:
3026
+ '200':
3027
+ description: Successful operation
3028
+ headers: {}
3029
+ content:
3030
+ application/json:
3031
+ schema:
3032
+ type: object
3033
+ deprecated: false
3034
+ /secrets:
3035
+ get:
3036
+ summary: getSecrets
3037
+ description: ''
3038
+ operationId: getSecrets
3039
+ parameters:
3040
+ - name: filters
3041
+ in: query
3042
+ description: ''
3043
+ style: form
3044
+ explode: true
3045
+ schema:
3046
+ type: string
3047
+ responses:
3048
+ '200':
3049
+ description: Successful operation
3050
+ headers: {}
3051
+ content:
3052
+ application/json:
3053
+ schema:
3054
+ type: object
3055
+ deprecated: false
3056
+ /secrets/create:
3057
+ post:
3058
+ summary: postSecretscreate
3059
+ description: ''
3060
+ operationId: postSecretscreate
3061
+ parameters: []
3062
+ requestBody:
3063
+ description: ''
3064
+ content:
3065
+ application/json:
3066
+ schema:
3067
+ type: object
3068
+ required: false
3069
+ responses:
3070
+ '200':
3071
+ description: Successful operation
3072
+ headers: {}
3073
+ content:
3074
+ application/json:
3075
+ schema:
3076
+ type: object
3077
+ deprecated: false
3078
+ /secrets/{id}:
3079
+ get:
3080
+ summary: getSecretsid
3081
+ description: ''
3082
+ operationId: getSecretsid
3083
+ parameters:
3084
+ - name: id
3085
+ in: path
3086
+ description: ''
3087
+ required: true
3088
+ style: simple
3089
+ schema:
3090
+ type: string
3091
+ responses:
3092
+ '200':
3093
+ description: Successful operation
3094
+ headers: {}
3095
+ content:
3096
+ application/json:
3097
+ schema:
3098
+ type: object
3099
+ deprecated: false
3100
+ delete:
3101
+ summary: deleteSecretsid
3102
+ description: ''
3103
+ operationId: deleteSecretsid
3104
+ parameters:
3105
+ - name: id
3106
+ in: path
3107
+ description: ''
3108
+ required: true
3109
+ style: simple
3110
+ schema:
3111
+ type: string
3112
+ responses:
3113
+ '200':
3114
+ description: Successful operation
3115
+ headers: {}
3116
+ content:
3117
+ application/json:
3118
+ schema:
3119
+ type: object
3120
+ deprecated: false
3121
+ tags: []