@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,4034 @@
1
+ {
2
+ "openapi": "3.0.2",
3
+ "info": {
4
+ "title": "adapter-docker",
5
+ "version": "1.0.0"
6
+ },
7
+ "paths": {
8
+ "/containers/json": {
9
+ "get": {
10
+ "operationId": "getContainersjson",
11
+ "responses": {
12
+ "200": {
13
+ "description": "Successful operation",
14
+ "content": {
15
+ "application/json": {
16
+ "schema": {
17
+ "title": "result",
18
+ "type": "object"
19
+ }
20
+ }
21
+ }
22
+ }
23
+ },
24
+ "parameters": [
25
+ {
26
+ "name": "all",
27
+ "in": "query",
28
+ "required": false,
29
+ "schema": {
30
+ "title": "all",
31
+ "type": "boolean"
32
+ }
33
+ },
34
+ {
35
+ "name": "limit",
36
+ "in": "query",
37
+ "required": false,
38
+ "schema": {
39
+ "title": "limit",
40
+ "type": "number"
41
+ }
42
+ },
43
+ {
44
+ "name": "size",
45
+ "in": "query",
46
+ "required": false,
47
+ "schema": {
48
+ "title": "size",
49
+ "type": "boolean"
50
+ }
51
+ },
52
+ {
53
+ "name": "filters",
54
+ "in": "query",
55
+ "required": false,
56
+ "schema": {
57
+ "title": "filters",
58
+ "type": "string"
59
+ }
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ "/containers/create": {
65
+ "post": {
66
+ "operationId": "postContainerscreate",
67
+ "responses": {
68
+ "200": {
69
+ "description": "Successful operation",
70
+ "content": {
71
+ "application/json": {
72
+ "schema": {
73
+ "title": "result",
74
+ "type": "object"
75
+ }
76
+ }
77
+ }
78
+ }
79
+ },
80
+ "parameters": [
81
+ {
82
+ "name": "name",
83
+ "in": "query",
84
+ "required": false,
85
+ "schema": {
86
+ "title": "name",
87
+ "type": "string"
88
+ }
89
+ }
90
+ ],
91
+ "requestBody": {
92
+ "content": {
93
+ "application/json": {
94
+ "schema": {
95
+ "type": "object"
96
+ }
97
+ }
98
+ }
99
+ }
100
+ }
101
+ },
102
+ "/containers/{id}/json": {
103
+ "get": {
104
+ "operationId": "getContainersidjson",
105
+ "responses": {
106
+ "200": {
107
+ "description": "Successful operation",
108
+ "content": {
109
+ "application/json": {
110
+ "schema": {
111
+ "title": "result",
112
+ "type": "object"
113
+ }
114
+ }
115
+ }
116
+ }
117
+ },
118
+ "parameters": [
119
+ {
120
+ "name": "id",
121
+ "in": "path",
122
+ "required": true,
123
+ "schema": {
124
+ "title": "id",
125
+ "type": "string"
126
+ }
127
+ },
128
+ {
129
+ "name": "size",
130
+ "in": "query",
131
+ "required": false,
132
+ "schema": {
133
+ "title": "size",
134
+ "type": "boolean"
135
+ }
136
+ }
137
+ ]
138
+ }
139
+ },
140
+ "/containers/{id}/top": {
141
+ "get": {
142
+ "operationId": "getContainersidtop",
143
+ "responses": {
144
+ "200": {
145
+ "description": "Successful operation",
146
+ "content": {
147
+ "application/json": {
148
+ "schema": {
149
+ "title": "result",
150
+ "type": "object"
151
+ }
152
+ }
153
+ }
154
+ }
155
+ },
156
+ "parameters": [
157
+ {
158
+ "name": "id",
159
+ "in": "path",
160
+ "required": true,
161
+ "schema": {
162
+ "title": "id",
163
+ "type": "string"
164
+ }
165
+ },
166
+ {
167
+ "name": "psArgs",
168
+ "in": "query",
169
+ "required": false,
170
+ "schema": {
171
+ "title": "psArgs",
172
+ "type": "string"
173
+ }
174
+ }
175
+ ]
176
+ }
177
+ },
178
+ "/containers/{id}/logs": {
179
+ "get": {
180
+ "operationId": "getContainersidlogs",
181
+ "responses": {
182
+ "200": {
183
+ "description": "Successful operation",
184
+ "content": {
185
+ "application/json": {
186
+ "schema": {
187
+ "title": "result",
188
+ "type": "object"
189
+ }
190
+ }
191
+ }
192
+ }
193
+ },
194
+ "parameters": [
195
+ {
196
+ "name": "id",
197
+ "in": "path",
198
+ "required": true,
199
+ "schema": {
200
+ "title": "id",
201
+ "type": "string"
202
+ }
203
+ },
204
+ {
205
+ "name": "follow",
206
+ "in": "query",
207
+ "required": false,
208
+ "schema": {
209
+ "title": "follow",
210
+ "type": "boolean"
211
+ }
212
+ },
213
+ {
214
+ "name": "stdout",
215
+ "in": "query",
216
+ "required": false,
217
+ "schema": {
218
+ "title": "stdout",
219
+ "type": "boolean"
220
+ }
221
+ },
222
+ {
223
+ "name": "stderr",
224
+ "in": "query",
225
+ "required": false,
226
+ "schema": {
227
+ "title": "stderr",
228
+ "type": "boolean"
229
+ }
230
+ },
231
+ {
232
+ "name": "since",
233
+ "in": "query",
234
+ "required": false,
235
+ "schema": {
236
+ "title": "since",
237
+ "type": "number"
238
+ }
239
+ },
240
+ {
241
+ "name": "timestamps",
242
+ "in": "query",
243
+ "required": false,
244
+ "schema": {
245
+ "title": "timestamps",
246
+ "type": "boolean"
247
+ }
248
+ },
249
+ {
250
+ "name": "tail",
251
+ "in": "query",
252
+ "required": false,
253
+ "schema": {
254
+ "title": "tail",
255
+ "type": "string"
256
+ }
257
+ }
258
+ ]
259
+ }
260
+ },
261
+ "/containers/{id}/changes": {
262
+ "get": {
263
+ "operationId": "getContainersidchanges",
264
+ "responses": {
265
+ "200": {
266
+ "description": "Successful operation",
267
+ "content": {
268
+ "application/json": {
269
+ "schema": {
270
+ "title": "result",
271
+ "type": "object"
272
+ }
273
+ }
274
+ }
275
+ }
276
+ },
277
+ "parameters": [
278
+ {
279
+ "name": "id",
280
+ "in": "path",
281
+ "required": true,
282
+ "schema": {
283
+ "title": "id",
284
+ "type": "string"
285
+ }
286
+ }
287
+ ]
288
+ }
289
+ },
290
+ "/containers/{id}/export": {
291
+ "get": {
292
+ "operationId": "getContainersidexport",
293
+ "responses": {
294
+ "200": {
295
+ "description": "Successful operation",
296
+ "content": {
297
+ "application/json": {
298
+ "schema": {
299
+ "title": "result",
300
+ "type": "object"
301
+ }
302
+ }
303
+ }
304
+ }
305
+ },
306
+ "parameters": [
307
+ {
308
+ "name": "id",
309
+ "in": "path",
310
+ "required": true,
311
+ "schema": {
312
+ "title": "id",
313
+ "type": "string"
314
+ }
315
+ }
316
+ ]
317
+ }
318
+ },
319
+ "/containers/{id}/stats": {
320
+ "get": {
321
+ "operationId": "getContainersidstats",
322
+ "responses": {
323
+ "200": {
324
+ "description": "Successful operation",
325
+ "content": {
326
+ "application/json": {
327
+ "schema": {
328
+ "title": "result",
329
+ "type": "object"
330
+ }
331
+ }
332
+ }
333
+ }
334
+ },
335
+ "parameters": [
336
+ {
337
+ "name": "id",
338
+ "in": "path",
339
+ "required": true,
340
+ "schema": {
341
+ "title": "id",
342
+ "type": "string"
343
+ }
344
+ },
345
+ {
346
+ "name": "stream",
347
+ "in": "query",
348
+ "required": false,
349
+ "schema": {
350
+ "title": "stream",
351
+ "type": "boolean"
352
+ }
353
+ }
354
+ ]
355
+ }
356
+ },
357
+ "/containers/{id}/resize": {
358
+ "post": {
359
+ "operationId": "postContainersidresize",
360
+ "responses": {
361
+ "200": {
362
+ "description": "Successful operation",
363
+ "content": {
364
+ "application/json": {
365
+ "schema": {
366
+ "title": "result",
367
+ "type": "object"
368
+ }
369
+ }
370
+ }
371
+ }
372
+ },
373
+ "parameters": [
374
+ {
375
+ "name": "id",
376
+ "in": "path",
377
+ "required": true,
378
+ "schema": {
379
+ "title": "id",
380
+ "type": "string"
381
+ }
382
+ },
383
+ {
384
+ "name": "h",
385
+ "in": "query",
386
+ "required": false,
387
+ "schema": {
388
+ "title": "h",
389
+ "type": "number"
390
+ }
391
+ },
392
+ {
393
+ "name": "w",
394
+ "in": "query",
395
+ "required": false,
396
+ "schema": {
397
+ "title": "w",
398
+ "type": "number"
399
+ }
400
+ }
401
+ ],
402
+ "requestBody": {
403
+ "content": {
404
+ "application/json": {
405
+ "schema": {
406
+ "type": "object"
407
+ }
408
+ }
409
+ }
410
+ }
411
+ }
412
+ },
413
+ "/containers/{id}/start": {
414
+ "post": {
415
+ "operationId": "postContainersidstart",
416
+ "responses": {
417
+ "200": {
418
+ "description": "Successful operation",
419
+ "content": {
420
+ "application/json": {
421
+ "schema": {
422
+ "title": "result",
423
+ "type": "object"
424
+ }
425
+ }
426
+ }
427
+ }
428
+ },
429
+ "parameters": [
430
+ {
431
+ "name": "id",
432
+ "in": "path",
433
+ "required": true,
434
+ "schema": {
435
+ "title": "id",
436
+ "type": "string"
437
+ }
438
+ },
439
+ {
440
+ "name": "detachKeys",
441
+ "in": "query",
442
+ "required": false,
443
+ "schema": {
444
+ "title": "detachKeys",
445
+ "type": "string"
446
+ }
447
+ }
448
+ ],
449
+ "requestBody": {
450
+ "content": {
451
+ "application/json": {
452
+ "schema": {
453
+ "type": "object"
454
+ }
455
+ }
456
+ }
457
+ }
458
+ }
459
+ },
460
+ "/containers/{id}/stop": {
461
+ "post": {
462
+ "operationId": "postContainersidstop",
463
+ "responses": {
464
+ "200": {
465
+ "description": "Successful operation",
466
+ "content": {
467
+ "application/json": {
468
+ "schema": {
469
+ "title": "result",
470
+ "type": "object"
471
+ }
472
+ }
473
+ }
474
+ }
475
+ },
476
+ "parameters": [
477
+ {
478
+ "name": "id",
479
+ "in": "path",
480
+ "required": true,
481
+ "schema": {
482
+ "title": "id",
483
+ "type": "string"
484
+ }
485
+ },
486
+ {
487
+ "name": "t",
488
+ "in": "query",
489
+ "required": false,
490
+ "schema": {
491
+ "title": "t",
492
+ "type": "number"
493
+ }
494
+ }
495
+ ],
496
+ "requestBody": {
497
+ "content": {
498
+ "application/json": {
499
+ "schema": {
500
+ "type": "object"
501
+ }
502
+ }
503
+ }
504
+ }
505
+ }
506
+ },
507
+ "/containers/{id}/restart": {
508
+ "post": {
509
+ "operationId": "postContainersidrestart",
510
+ "responses": {
511
+ "200": {
512
+ "description": "Successful operation",
513
+ "content": {
514
+ "application/json": {
515
+ "schema": {
516
+ "title": "result",
517
+ "type": "object"
518
+ }
519
+ }
520
+ }
521
+ }
522
+ },
523
+ "parameters": [
524
+ {
525
+ "name": "id",
526
+ "in": "path",
527
+ "required": true,
528
+ "schema": {
529
+ "title": "id",
530
+ "type": "string"
531
+ }
532
+ },
533
+ {
534
+ "name": "t",
535
+ "in": "query",
536
+ "required": false,
537
+ "schema": {
538
+ "title": "t",
539
+ "type": "number"
540
+ }
541
+ }
542
+ ],
543
+ "requestBody": {
544
+ "content": {
545
+ "application/json": {
546
+ "schema": {
547
+ "type": "object"
548
+ }
549
+ }
550
+ }
551
+ }
552
+ }
553
+ },
554
+ "/containers/{id}/kill": {
555
+ "post": {
556
+ "operationId": "postContainersidkill",
557
+ "responses": {
558
+ "200": {
559
+ "description": "Successful operation",
560
+ "content": {
561
+ "application/json": {
562
+ "schema": {
563
+ "title": "result",
564
+ "type": "object"
565
+ }
566
+ }
567
+ }
568
+ }
569
+ },
570
+ "parameters": [
571
+ {
572
+ "name": "id",
573
+ "in": "path",
574
+ "required": true,
575
+ "schema": {
576
+ "title": "id",
577
+ "type": "string"
578
+ }
579
+ },
580
+ {
581
+ "name": "signal",
582
+ "in": "query",
583
+ "required": false,
584
+ "schema": {
585
+ "title": "signal",
586
+ "type": "string"
587
+ }
588
+ }
589
+ ],
590
+ "requestBody": {
591
+ "content": {
592
+ "application/json": {
593
+ "schema": {
594
+ "type": "object"
595
+ }
596
+ }
597
+ }
598
+ }
599
+ }
600
+ },
601
+ "/containers/{id}/update": {
602
+ "post": {
603
+ "operationId": "postContainersidupdate",
604
+ "responses": {
605
+ "200": {
606
+ "description": "Successful operation",
607
+ "content": {
608
+ "application/json": {
609
+ "schema": {
610
+ "title": "result",
611
+ "type": "object"
612
+ }
613
+ }
614
+ }
615
+ }
616
+ },
617
+ "parameters": [
618
+ {
619
+ "name": "id",
620
+ "in": "path",
621
+ "required": true,
622
+ "schema": {
623
+ "title": "id",
624
+ "type": "string"
625
+ }
626
+ },
627
+ {
628
+ "name": "update",
629
+ "in": "query",
630
+ "required": true,
631
+ "schema": {
632
+ "title": "update",
633
+ "type": "object"
634
+ }
635
+ }
636
+ ],
637
+ "requestBody": {
638
+ "content": {
639
+ "application/json": {
640
+ "schema": {
641
+ "type": "object"
642
+ }
643
+ }
644
+ }
645
+ }
646
+ }
647
+ },
648
+ "/containers/{id}/rename": {
649
+ "post": {
650
+ "operationId": "postContainersidrename",
651
+ "responses": {
652
+ "200": {
653
+ "description": "Successful operation",
654
+ "content": {
655
+ "application/json": {
656
+ "schema": {
657
+ "title": "result",
658
+ "type": "object"
659
+ }
660
+ }
661
+ }
662
+ }
663
+ },
664
+ "parameters": [
665
+ {
666
+ "name": "id",
667
+ "in": "path",
668
+ "required": true,
669
+ "schema": {
670
+ "title": "id",
671
+ "type": "string"
672
+ }
673
+ },
674
+ {
675
+ "name": "name",
676
+ "in": "query",
677
+ "required": true,
678
+ "schema": {
679
+ "title": "name",
680
+ "type": "string"
681
+ }
682
+ }
683
+ ],
684
+ "requestBody": {
685
+ "content": {
686
+ "application/json": {
687
+ "schema": {
688
+ "type": "object"
689
+ }
690
+ }
691
+ }
692
+ }
693
+ }
694
+ },
695
+ "/containers/{id}/pause": {
696
+ "post": {
697
+ "operationId": "postContainersidpause",
698
+ "responses": {
699
+ "200": {
700
+ "description": "Successful operation",
701
+ "content": {
702
+ "application/json": {
703
+ "schema": {
704
+ "title": "result",
705
+ "type": "object"
706
+ }
707
+ }
708
+ }
709
+ }
710
+ },
711
+ "parameters": [
712
+ {
713
+ "name": "id",
714
+ "in": "path",
715
+ "required": true,
716
+ "schema": {
717
+ "title": "id",
718
+ "type": "string"
719
+ }
720
+ }
721
+ ],
722
+ "requestBody": {
723
+ "content": {
724
+ "application/json": {
725
+ "schema": {
726
+ "type": "object"
727
+ }
728
+ }
729
+ }
730
+ }
731
+ }
732
+ },
733
+ "/containers/{id}/unpause": {
734
+ "post": {
735
+ "operationId": "postContainersidunpause",
736
+ "responses": {
737
+ "200": {
738
+ "description": "Successful operation",
739
+ "content": {
740
+ "application/json": {
741
+ "schema": {
742
+ "title": "result",
743
+ "type": "object"
744
+ }
745
+ }
746
+ }
747
+ }
748
+ },
749
+ "parameters": [
750
+ {
751
+ "name": "id",
752
+ "in": "path",
753
+ "required": true,
754
+ "schema": {
755
+ "title": "id",
756
+ "type": "string"
757
+ }
758
+ }
759
+ ],
760
+ "requestBody": {
761
+ "content": {
762
+ "application/json": {
763
+ "schema": {
764
+ "type": "object"
765
+ }
766
+ }
767
+ }
768
+ }
769
+ }
770
+ },
771
+ "/containers/{id}/attach": {
772
+ "post": {
773
+ "operationId": "postContainersidattach",
774
+ "responses": {
775
+ "200": {
776
+ "description": "Successful operation",
777
+ "content": {
778
+ "application/json": {
779
+ "schema": {
780
+ "title": "result",
781
+ "type": "object"
782
+ }
783
+ }
784
+ }
785
+ }
786
+ },
787
+ "parameters": [
788
+ {
789
+ "name": "id",
790
+ "in": "path",
791
+ "required": true,
792
+ "schema": {
793
+ "title": "id",
794
+ "type": "string"
795
+ }
796
+ },
797
+ {
798
+ "name": "detachKeys",
799
+ "in": "query",
800
+ "required": false,
801
+ "schema": {
802
+ "title": "detachKeys",
803
+ "type": "string"
804
+ }
805
+ },
806
+ {
807
+ "name": "logs",
808
+ "in": "query",
809
+ "required": false,
810
+ "schema": {
811
+ "title": "logs",
812
+ "type": "boolean"
813
+ }
814
+ },
815
+ {
816
+ "name": "stream",
817
+ "in": "query",
818
+ "required": false,
819
+ "schema": {
820
+ "title": "stream",
821
+ "type": "boolean"
822
+ }
823
+ },
824
+ {
825
+ "name": "stdin",
826
+ "in": "query",
827
+ "required": false,
828
+ "schema": {
829
+ "title": "stdin",
830
+ "type": "boolean"
831
+ }
832
+ },
833
+ {
834
+ "name": "stdout",
835
+ "in": "query",
836
+ "required": false,
837
+ "schema": {
838
+ "title": "stdout",
839
+ "type": "boolean"
840
+ }
841
+ },
842
+ {
843
+ "name": "stderr",
844
+ "in": "query",
845
+ "required": false,
846
+ "schema": {
847
+ "title": "stderr",
848
+ "type": "boolean"
849
+ }
850
+ }
851
+ ],
852
+ "requestBody": {
853
+ "content": {
854
+ "application/json": {
855
+ "schema": {
856
+ "type": "object"
857
+ }
858
+ }
859
+ }
860
+ }
861
+ }
862
+ },
863
+ "/containers/{id}/attach/ws": {
864
+ "get": {
865
+ "operationId": "getContainersidattachws",
866
+ "responses": {
867
+ "200": {
868
+ "description": "Successful operation",
869
+ "content": {
870
+ "application/json": {
871
+ "schema": {
872
+ "title": "result",
873
+ "type": "object"
874
+ }
875
+ }
876
+ }
877
+ }
878
+ },
879
+ "parameters": [
880
+ {
881
+ "name": "id",
882
+ "in": "path",
883
+ "required": true,
884
+ "schema": {
885
+ "title": "id",
886
+ "type": "string"
887
+ }
888
+ },
889
+ {
890
+ "name": "detachKeys",
891
+ "in": "query",
892
+ "required": false,
893
+ "schema": {
894
+ "title": "detachKeys",
895
+ "type": "string"
896
+ }
897
+ },
898
+ {
899
+ "name": "logs",
900
+ "in": "query",
901
+ "required": false,
902
+ "schema": {
903
+ "title": "logs",
904
+ "type": "boolean"
905
+ }
906
+ },
907
+ {
908
+ "name": "stream",
909
+ "in": "query",
910
+ "required": false,
911
+ "schema": {
912
+ "title": "stream",
913
+ "type": "boolean"
914
+ }
915
+ },
916
+ {
917
+ "name": "stdin",
918
+ "in": "query",
919
+ "required": false,
920
+ "schema": {
921
+ "title": "stdin",
922
+ "type": "boolean"
923
+ }
924
+ },
925
+ {
926
+ "name": "stdout",
927
+ "in": "query",
928
+ "required": false,
929
+ "schema": {
930
+ "title": "stdout",
931
+ "type": "boolean"
932
+ }
933
+ },
934
+ {
935
+ "name": "stderr",
936
+ "in": "query",
937
+ "required": false,
938
+ "schema": {
939
+ "title": "stderr",
940
+ "type": "boolean"
941
+ }
942
+ }
943
+ ]
944
+ }
945
+ },
946
+ "/containers/{id}/wait": {
947
+ "post": {
948
+ "operationId": "postContainersidwait",
949
+ "responses": {
950
+ "200": {
951
+ "description": "Successful operation",
952
+ "content": {
953
+ "application/json": {
954
+ "schema": {
955
+ "title": "result",
956
+ "type": "object"
957
+ }
958
+ }
959
+ }
960
+ }
961
+ },
962
+ "parameters": [
963
+ {
964
+ "name": "id",
965
+ "in": "path",
966
+ "required": true,
967
+ "schema": {
968
+ "title": "id",
969
+ "type": "string"
970
+ }
971
+ }
972
+ ],
973
+ "requestBody": {
974
+ "content": {
975
+ "application/json": {
976
+ "schema": {
977
+ "type": "object"
978
+ }
979
+ }
980
+ }
981
+ }
982
+ }
983
+ },
984
+ "/containers/{id}": {
985
+ "delete": {
986
+ "operationId": "deleteContainersid",
987
+ "responses": {
988
+ "200": {
989
+ "description": "Successful operation",
990
+ "content": {
991
+ "application/json": {
992
+ "schema": {
993
+ "title": "result",
994
+ "type": "object"
995
+ }
996
+ }
997
+ }
998
+ }
999
+ },
1000
+ "parameters": [
1001
+ {
1002
+ "name": "id",
1003
+ "in": "path",
1004
+ "required": true,
1005
+ "schema": {
1006
+ "title": "id",
1007
+ "type": "string"
1008
+ }
1009
+ },
1010
+ {
1011
+ "name": "v",
1012
+ "in": "query",
1013
+ "required": false,
1014
+ "schema": {
1015
+ "title": "v",
1016
+ "type": "boolean"
1017
+ }
1018
+ },
1019
+ {
1020
+ "name": "force",
1021
+ "in": "query",
1022
+ "required": false,
1023
+ "schema": {
1024
+ "title": "force",
1025
+ "type": "boolean"
1026
+ }
1027
+ }
1028
+ ]
1029
+ }
1030
+ },
1031
+ "/containers/{id}/archive": {
1032
+ "head": {
1033
+ "operationId": "headContainersidarchive",
1034
+ "responses": {
1035
+ "200": {
1036
+ "description": "Successful operation",
1037
+ "content": {
1038
+ "application/json": {
1039
+ "schema": {
1040
+ "title": "result",
1041
+ "type": "object"
1042
+ }
1043
+ }
1044
+ }
1045
+ }
1046
+ },
1047
+ "parameters": [
1048
+ {
1049
+ "name": "id",
1050
+ "in": "path",
1051
+ "required": true,
1052
+ "schema": {
1053
+ "title": "id",
1054
+ "type": "string"
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "path_resource",
1059
+ "in": "query",
1060
+ "required": true,
1061
+ "schema": {
1062
+ "title": "path_resource",
1063
+ "type": "string"
1064
+ }
1065
+ }
1066
+ ]
1067
+ },
1068
+ "get": {
1069
+ "operationId": "getContainersidarchive",
1070
+ "responses": {
1071
+ "200": {
1072
+ "description": "Successful operation",
1073
+ "content": {
1074
+ "application/json": {
1075
+ "schema": {
1076
+ "title": "result",
1077
+ "type": "object"
1078
+ }
1079
+ }
1080
+ }
1081
+ }
1082
+ },
1083
+ "parameters": [
1084
+ {
1085
+ "name": "id",
1086
+ "in": "path",
1087
+ "required": true,
1088
+ "schema": {
1089
+ "title": "id",
1090
+ "type": "string"
1091
+ }
1092
+ },
1093
+ {
1094
+ "name": "path_resource",
1095
+ "in": "query",
1096
+ "required": true,
1097
+ "schema": {
1098
+ "title": "path_resource",
1099
+ "type": "string"
1100
+ }
1101
+ }
1102
+ ]
1103
+ },
1104
+ "put": {
1105
+ "operationId": "putContainersidarchive",
1106
+ "responses": {
1107
+ "200": {
1108
+ "description": "Successful operation",
1109
+ "content": {
1110
+ "application/json": {
1111
+ "schema": {
1112
+ "title": "result",
1113
+ "type": "object"
1114
+ }
1115
+ }
1116
+ }
1117
+ }
1118
+ },
1119
+ "parameters": [
1120
+ {
1121
+ "name": "id",
1122
+ "in": "path",
1123
+ "required": true,
1124
+ "schema": {
1125
+ "title": "id",
1126
+ "type": "string"
1127
+ }
1128
+ },
1129
+ {
1130
+ "name": "path_dir",
1131
+ "in": "query",
1132
+ "required": true,
1133
+ "schema": {
1134
+ "title": "path_dir",
1135
+ "type": "string"
1136
+ }
1137
+ },
1138
+ {
1139
+ "name": "noOverwriteDirNonDir",
1140
+ "in": "query",
1141
+ "required": false,
1142
+ "schema": {
1143
+ "title": "noOverwriteDirNonDir",
1144
+ "type": "string"
1145
+ }
1146
+ },
1147
+ {
1148
+ "name": "inputStream",
1149
+ "in": "query",
1150
+ "required": true,
1151
+ "schema": {
1152
+ "title": "inputStream",
1153
+ "type": "string"
1154
+ }
1155
+ }
1156
+ ],
1157
+ "requestBody": {
1158
+ "content": {
1159
+ "application/json": {
1160
+ "schema": {
1161
+ "type": "object"
1162
+ }
1163
+ }
1164
+ }
1165
+ }
1166
+ }
1167
+ },
1168
+ "/containers/prune": {
1169
+ "post": {
1170
+ "operationId": "postContainersprune",
1171
+ "responses": {
1172
+ "200": {
1173
+ "description": "Successful operation",
1174
+ "content": {
1175
+ "application/json": {
1176
+ "schema": {
1177
+ "title": "result",
1178
+ "type": "object"
1179
+ }
1180
+ }
1181
+ }
1182
+ }
1183
+ },
1184
+ "parameters": [
1185
+ {
1186
+ "name": "filters",
1187
+ "in": "query",
1188
+ "required": false,
1189
+ "schema": {
1190
+ "title": "filters",
1191
+ "type": "string"
1192
+ }
1193
+ }
1194
+ ],
1195
+ "requestBody": {
1196
+ "content": {
1197
+ "application/json": {
1198
+ "schema": {
1199
+ "type": "object"
1200
+ }
1201
+ }
1202
+ }
1203
+ }
1204
+ }
1205
+ },
1206
+ "/images/json": {
1207
+ "get": {
1208
+ "operationId": "getImagesjson",
1209
+ "responses": {
1210
+ "200": {
1211
+ "description": "Successful operation",
1212
+ "content": {
1213
+ "application/json": {
1214
+ "schema": {
1215
+ "title": "result",
1216
+ "type": "object"
1217
+ }
1218
+ }
1219
+ }
1220
+ }
1221
+ },
1222
+ "parameters": [
1223
+ {
1224
+ "name": "all",
1225
+ "in": "query",
1226
+ "required": false,
1227
+ "schema": {
1228
+ "title": "all",
1229
+ "type": "boolean"
1230
+ }
1231
+ },
1232
+ {
1233
+ "name": "filters",
1234
+ "in": "query",
1235
+ "required": false,
1236
+ "schema": {
1237
+ "title": "filters",
1238
+ "type": "string"
1239
+ }
1240
+ },
1241
+ {
1242
+ "name": "digests",
1243
+ "in": "query",
1244
+ "required": false,
1245
+ "schema": {
1246
+ "title": "digests",
1247
+ "type": "boolean"
1248
+ }
1249
+ }
1250
+ ]
1251
+ }
1252
+ },
1253
+ "/build": {
1254
+ "post": {
1255
+ "operationId": "postBuild",
1256
+ "responses": {
1257
+ "200": {
1258
+ "description": "Successful operation",
1259
+ "content": {
1260
+ "application/json": {
1261
+ "schema": {
1262
+ "title": "result",
1263
+ "type": "object"
1264
+ }
1265
+ }
1266
+ }
1267
+ }
1268
+ },
1269
+ "parameters": [
1270
+ {
1271
+ "name": "inputStream",
1272
+ "in": "query",
1273
+ "required": false,
1274
+ "schema": {
1275
+ "title": "inputStream",
1276
+ "type": "string"
1277
+ }
1278
+ },
1279
+ {
1280
+ "name": "dockerfile",
1281
+ "in": "query",
1282
+ "required": false,
1283
+ "schema": {
1284
+ "title": "dockerfile",
1285
+ "type": "string"
1286
+ }
1287
+ },
1288
+ {
1289
+ "name": "t",
1290
+ "in": "query",
1291
+ "required": false,
1292
+ "schema": {
1293
+ "title": "t",
1294
+ "type": "string"
1295
+ }
1296
+ },
1297
+ {
1298
+ "name": "remote",
1299
+ "in": "query",
1300
+ "required": false,
1301
+ "schema": {
1302
+ "title": "remote",
1303
+ "type": "string"
1304
+ }
1305
+ },
1306
+ {
1307
+ "name": "q",
1308
+ "in": "query",
1309
+ "required": false,
1310
+ "schema": {
1311
+ "title": "q",
1312
+ "type": "boolean"
1313
+ }
1314
+ },
1315
+ {
1316
+ "name": "nocache",
1317
+ "in": "query",
1318
+ "required": false,
1319
+ "schema": {
1320
+ "title": "nocache",
1321
+ "type": "boolean"
1322
+ }
1323
+ },
1324
+ {
1325
+ "name": "cachefrom",
1326
+ "in": "query",
1327
+ "required": false,
1328
+ "schema": {
1329
+ "title": "cachefrom",
1330
+ "type": "string"
1331
+ }
1332
+ },
1333
+ {
1334
+ "name": "pull",
1335
+ "in": "query",
1336
+ "required": false,
1337
+ "schema": {
1338
+ "title": "pull",
1339
+ "type": "string"
1340
+ }
1341
+ },
1342
+ {
1343
+ "name": "rm",
1344
+ "in": "query",
1345
+ "required": false,
1346
+ "schema": {
1347
+ "title": "rm",
1348
+ "type": "boolean"
1349
+ }
1350
+ },
1351
+ {
1352
+ "name": "forcerm",
1353
+ "in": "query",
1354
+ "required": false,
1355
+ "schema": {
1356
+ "title": "forcerm",
1357
+ "type": "boolean"
1358
+ }
1359
+ },
1360
+ {
1361
+ "name": "memory",
1362
+ "in": "query",
1363
+ "required": false,
1364
+ "schema": {
1365
+ "title": "memory",
1366
+ "type": "number"
1367
+ }
1368
+ },
1369
+ {
1370
+ "name": "memswap",
1371
+ "in": "query",
1372
+ "required": false,
1373
+ "schema": {
1374
+ "title": "memswap",
1375
+ "type": "number"
1376
+ }
1377
+ },
1378
+ {
1379
+ "name": "cpushares",
1380
+ "in": "query",
1381
+ "required": false,
1382
+ "schema": {
1383
+ "title": "cpushares",
1384
+ "type": "number"
1385
+ }
1386
+ },
1387
+ {
1388
+ "name": "cpusetcpus",
1389
+ "in": "query",
1390
+ "required": false,
1391
+ "schema": {
1392
+ "title": "cpusetcpus",
1393
+ "type": "string"
1394
+ }
1395
+ },
1396
+ {
1397
+ "name": "cpuperiod",
1398
+ "in": "query",
1399
+ "required": false,
1400
+ "schema": {
1401
+ "title": "cpuperiod",
1402
+ "type": "number"
1403
+ }
1404
+ },
1405
+ {
1406
+ "name": "cpuquota",
1407
+ "in": "query",
1408
+ "required": false,
1409
+ "schema": {
1410
+ "title": "cpuquota",
1411
+ "type": "number"
1412
+ }
1413
+ },
1414
+ {
1415
+ "name": "buildargs",
1416
+ "in": "query",
1417
+ "required": false,
1418
+ "schema": {
1419
+ "title": "buildargs",
1420
+ "type": "number"
1421
+ }
1422
+ },
1423
+ {
1424
+ "name": "shmsize",
1425
+ "in": "query",
1426
+ "required": false,
1427
+ "schema": {
1428
+ "title": "shmsize",
1429
+ "type": "number"
1430
+ }
1431
+ },
1432
+ {
1433
+ "name": "squash",
1434
+ "in": "query",
1435
+ "required": false,
1436
+ "schema": {
1437
+ "title": "squash",
1438
+ "type": "boolean"
1439
+ }
1440
+ },
1441
+ {
1442
+ "name": "labels",
1443
+ "in": "query",
1444
+ "required": false,
1445
+ "schema": {
1446
+ "title": "labels",
1447
+ "type": "string"
1448
+ }
1449
+ },
1450
+ {
1451
+ "name": "networkmode",
1452
+ "in": "query",
1453
+ "required": false,
1454
+ "schema": {
1455
+ "title": "networkmode",
1456
+ "type": "string"
1457
+ }
1458
+ },
1459
+ {
1460
+ "name": "Contenttype",
1461
+ "in": "query",
1462
+ "required": false,
1463
+ "schema": {
1464
+ "title": "Contenttype",
1465
+ "type": "string"
1466
+ }
1467
+ },
1468
+ {
1469
+ "name": "XRegistryConfig",
1470
+ "in": "query",
1471
+ "required": false,
1472
+ "schema": {
1473
+ "title": "XRegistryConfig",
1474
+ "type": "string"
1475
+ }
1476
+ }
1477
+ ],
1478
+ "requestBody": {
1479
+ "content": {
1480
+ "application/json": {
1481
+ "schema": {
1482
+ "type": "object"
1483
+ }
1484
+ }
1485
+ }
1486
+ }
1487
+ }
1488
+ },
1489
+ "/images/create": {
1490
+ "post": {
1491
+ "operationId": "postImagescreate",
1492
+ "responses": {
1493
+ "200": {
1494
+ "description": "Successful operation",
1495
+ "content": {
1496
+ "application/json": {
1497
+ "schema": {
1498
+ "title": "result",
1499
+ "type": "object"
1500
+ }
1501
+ }
1502
+ }
1503
+ }
1504
+ },
1505
+ "parameters": [
1506
+ {
1507
+ "name": "fromImage",
1508
+ "in": "query",
1509
+ "required": false,
1510
+ "schema": {
1511
+ "title": "fromImage",
1512
+ "type": "string"
1513
+ }
1514
+ },
1515
+ {
1516
+ "name": "fromSrc",
1517
+ "in": "query",
1518
+ "required": false,
1519
+ "schema": {
1520
+ "title": "fromSrc",
1521
+ "type": "string"
1522
+ }
1523
+ },
1524
+ {
1525
+ "name": "repo",
1526
+ "in": "query",
1527
+ "required": false,
1528
+ "schema": {
1529
+ "title": "repo",
1530
+ "type": "string"
1531
+ }
1532
+ },
1533
+ {
1534
+ "name": "tag",
1535
+ "in": "query",
1536
+ "required": false,
1537
+ "schema": {
1538
+ "title": "tag",
1539
+ "type": "string"
1540
+ }
1541
+ },
1542
+ {
1543
+ "name": "inputImage",
1544
+ "in": "query",
1545
+ "required": false,
1546
+ "schema": {
1547
+ "title": "inputImage",
1548
+ "type": "string"
1549
+ }
1550
+ },
1551
+ {
1552
+ "name": "XRegistryAuth",
1553
+ "in": "query",
1554
+ "required": false,
1555
+ "schema": {
1556
+ "title": "XRegistryAuth",
1557
+ "type": "string"
1558
+ }
1559
+ }
1560
+ ],
1561
+ "requestBody": {
1562
+ "content": {
1563
+ "application/json": {
1564
+ "schema": {
1565
+ "type": "object"
1566
+ }
1567
+ }
1568
+ }
1569
+ }
1570
+ }
1571
+ },
1572
+ "/images/{name}/json": {
1573
+ "get": {
1574
+ "operationId": "getImagesnamejson",
1575
+ "responses": {
1576
+ "200": {
1577
+ "description": "Successful operation",
1578
+ "content": {
1579
+ "application/json": {
1580
+ "schema": {
1581
+ "title": "result",
1582
+ "type": "object"
1583
+ }
1584
+ }
1585
+ }
1586
+ }
1587
+ },
1588
+ "parameters": [
1589
+ {
1590
+ "name": "name",
1591
+ "in": "path",
1592
+ "required": true,
1593
+ "schema": {
1594
+ "title": "name",
1595
+ "type": "string"
1596
+ }
1597
+ }
1598
+ ]
1599
+ }
1600
+ },
1601
+ "/images/{name}/history": {
1602
+ "get": {
1603
+ "operationId": "getImagesnamehistory",
1604
+ "responses": {
1605
+ "200": {
1606
+ "description": "Successful operation",
1607
+ "content": {
1608
+ "application/json": {
1609
+ "schema": {
1610
+ "title": "result",
1611
+ "type": "object"
1612
+ }
1613
+ }
1614
+ }
1615
+ }
1616
+ },
1617
+ "parameters": [
1618
+ {
1619
+ "name": "name",
1620
+ "in": "path",
1621
+ "required": true,
1622
+ "schema": {
1623
+ "title": "name",
1624
+ "type": "string"
1625
+ }
1626
+ }
1627
+ ]
1628
+ }
1629
+ },
1630
+ "/images/{name}/push": {
1631
+ "post": {
1632
+ "operationId": "postImagesnamepush",
1633
+ "responses": {
1634
+ "200": {
1635
+ "description": "Successful operation",
1636
+ "content": {
1637
+ "application/json": {
1638
+ "schema": {
1639
+ "title": "result",
1640
+ "type": "object"
1641
+ }
1642
+ }
1643
+ }
1644
+ }
1645
+ },
1646
+ "parameters": [
1647
+ {
1648
+ "name": "name",
1649
+ "in": "path",
1650
+ "required": true,
1651
+ "schema": {
1652
+ "title": "name",
1653
+ "type": "string"
1654
+ }
1655
+ },
1656
+ {
1657
+ "name": "tag",
1658
+ "in": "query",
1659
+ "required": false,
1660
+ "schema": {
1661
+ "title": "tag",
1662
+ "type": "string"
1663
+ }
1664
+ },
1665
+ {
1666
+ "name": "XRegistryAuth",
1667
+ "in": "query",
1668
+ "required": true,
1669
+ "schema": {
1670
+ "title": "XRegistryAuth",
1671
+ "type": "string"
1672
+ }
1673
+ }
1674
+ ],
1675
+ "requestBody": {
1676
+ "content": {
1677
+ "application/json": {
1678
+ "schema": {
1679
+ "type": "object"
1680
+ }
1681
+ }
1682
+ }
1683
+ }
1684
+ }
1685
+ },
1686
+ "/images/{name}/tag": {
1687
+ "post": {
1688
+ "operationId": "postImagesnametag",
1689
+ "responses": {
1690
+ "200": {
1691
+ "description": "Successful operation",
1692
+ "content": {
1693
+ "application/json": {
1694
+ "schema": {
1695
+ "title": "result",
1696
+ "type": "object"
1697
+ }
1698
+ }
1699
+ }
1700
+ }
1701
+ },
1702
+ "parameters": [
1703
+ {
1704
+ "name": "name",
1705
+ "in": "path",
1706
+ "required": true,
1707
+ "schema": {
1708
+ "title": "name",
1709
+ "type": "string"
1710
+ }
1711
+ },
1712
+ {
1713
+ "name": "repo",
1714
+ "in": "query",
1715
+ "required": false,
1716
+ "schema": {
1717
+ "title": "repo",
1718
+ "type": "string"
1719
+ }
1720
+ },
1721
+ {
1722
+ "name": "tag",
1723
+ "in": "query",
1724
+ "required": false,
1725
+ "schema": {
1726
+ "title": "tag",
1727
+ "type": "string"
1728
+ }
1729
+ }
1730
+ ],
1731
+ "requestBody": {
1732
+ "content": {
1733
+ "application/json": {
1734
+ "schema": {
1735
+ "type": "object"
1736
+ }
1737
+ }
1738
+ }
1739
+ }
1740
+ }
1741
+ },
1742
+ "/images/{name}": {
1743
+ "delete": {
1744
+ "operationId": "deleteImagesname",
1745
+ "responses": {
1746
+ "200": {
1747
+ "description": "Successful operation",
1748
+ "content": {
1749
+ "application/json": {
1750
+ "schema": {
1751
+ "title": "result",
1752
+ "type": "object"
1753
+ }
1754
+ }
1755
+ }
1756
+ }
1757
+ },
1758
+ "parameters": [
1759
+ {
1760
+ "name": "name",
1761
+ "in": "path",
1762
+ "required": true,
1763
+ "schema": {
1764
+ "title": "name",
1765
+ "type": "string"
1766
+ }
1767
+ },
1768
+ {
1769
+ "name": "force",
1770
+ "in": "query",
1771
+ "required": false,
1772
+ "schema": {
1773
+ "title": "force",
1774
+ "type": "boolean"
1775
+ }
1776
+ },
1777
+ {
1778
+ "name": "noprune",
1779
+ "in": "query",
1780
+ "required": false,
1781
+ "schema": {
1782
+ "title": "noprune",
1783
+ "type": "boolean"
1784
+ }
1785
+ }
1786
+ ]
1787
+ }
1788
+ },
1789
+ "/images/search": {
1790
+ "get": {
1791
+ "operationId": "getImagessearch",
1792
+ "responses": {
1793
+ "200": {
1794
+ "description": "Successful operation",
1795
+ "content": {
1796
+ "application/json": {
1797
+ "schema": {
1798
+ "title": "result",
1799
+ "type": "object"
1800
+ }
1801
+ }
1802
+ }
1803
+ }
1804
+ },
1805
+ "parameters": [
1806
+ {
1807
+ "name": "term",
1808
+ "in": "query",
1809
+ "required": true,
1810
+ "schema": {
1811
+ "title": "term",
1812
+ "type": "string"
1813
+ }
1814
+ },
1815
+ {
1816
+ "name": "limit",
1817
+ "in": "query",
1818
+ "required": false,
1819
+ "schema": {
1820
+ "title": "limit",
1821
+ "type": "number"
1822
+ }
1823
+ },
1824
+ {
1825
+ "name": "filters",
1826
+ "in": "query",
1827
+ "required": false,
1828
+ "schema": {
1829
+ "title": "filters",
1830
+ "type": "string"
1831
+ }
1832
+ }
1833
+ ]
1834
+ }
1835
+ },
1836
+ "/images/prune": {
1837
+ "post": {
1838
+ "operationId": "postImagesprune",
1839
+ "responses": {
1840
+ "200": {
1841
+ "description": "Successful operation",
1842
+ "content": {
1843
+ "application/json": {
1844
+ "schema": {
1845
+ "title": "result",
1846
+ "type": "object"
1847
+ }
1848
+ }
1849
+ }
1850
+ }
1851
+ },
1852
+ "parameters": [
1853
+ {
1854
+ "name": "filters",
1855
+ "in": "query",
1856
+ "required": false,
1857
+ "schema": {
1858
+ "title": "filters",
1859
+ "type": "string"
1860
+ }
1861
+ }
1862
+ ],
1863
+ "requestBody": {
1864
+ "content": {
1865
+ "application/json": {
1866
+ "schema": {
1867
+ "type": "object"
1868
+ }
1869
+ }
1870
+ }
1871
+ }
1872
+ }
1873
+ },
1874
+ "/commit": {
1875
+ "post": {
1876
+ "operationId": "postCommit",
1877
+ "responses": {
1878
+ "200": {
1879
+ "description": "Successful operation",
1880
+ "content": {
1881
+ "application/json": {
1882
+ "schema": {
1883
+ "title": "result",
1884
+ "type": "object"
1885
+ }
1886
+ }
1887
+ }
1888
+ }
1889
+ },
1890
+ "parameters": [
1891
+ {
1892
+ "name": "containerConfig",
1893
+ "in": "query",
1894
+ "required": false,
1895
+ "schema": {
1896
+ "title": "containerConfig",
1897
+ "type": "object"
1898
+ }
1899
+ },
1900
+ {
1901
+ "name": "container",
1902
+ "in": "query",
1903
+ "required": false,
1904
+ "schema": {
1905
+ "title": "container",
1906
+ "type": "string"
1907
+ }
1908
+ },
1909
+ {
1910
+ "name": "repo",
1911
+ "in": "query",
1912
+ "required": false,
1913
+ "schema": {
1914
+ "title": "repo",
1915
+ "type": "string"
1916
+ }
1917
+ },
1918
+ {
1919
+ "name": "tag",
1920
+ "in": "query",
1921
+ "required": false,
1922
+ "schema": {
1923
+ "title": "tag",
1924
+ "type": "string"
1925
+ }
1926
+ },
1927
+ {
1928
+ "name": "comment",
1929
+ "in": "query",
1930
+ "required": false,
1931
+ "schema": {
1932
+ "title": "comment",
1933
+ "type": "string"
1934
+ }
1935
+ },
1936
+ {
1937
+ "name": "author",
1938
+ "in": "query",
1939
+ "required": false,
1940
+ "schema": {
1941
+ "title": "author",
1942
+ "type": "string"
1943
+ }
1944
+ },
1945
+ {
1946
+ "name": "pause",
1947
+ "in": "query",
1948
+ "required": false,
1949
+ "schema": {
1950
+ "title": "pause",
1951
+ "type": "boolean"
1952
+ }
1953
+ },
1954
+ {
1955
+ "name": "changes",
1956
+ "in": "query",
1957
+ "required": false,
1958
+ "schema": {
1959
+ "title": "changes",
1960
+ "type": "string"
1961
+ }
1962
+ }
1963
+ ],
1964
+ "requestBody": {
1965
+ "content": {
1966
+ "application/json": {
1967
+ "schema": {
1968
+ "type": "object"
1969
+ }
1970
+ }
1971
+ }
1972
+ }
1973
+ }
1974
+ },
1975
+ "/images/{name}/get": {
1976
+ "get": {
1977
+ "operationId": "getImagesnameget",
1978
+ "responses": {
1979
+ "200": {
1980
+ "description": "Successful operation",
1981
+ "content": {
1982
+ "application/json": {
1983
+ "schema": {
1984
+ "title": "result",
1985
+ "type": "object"
1986
+ }
1987
+ }
1988
+ }
1989
+ }
1990
+ },
1991
+ "parameters": [
1992
+ {
1993
+ "name": "name",
1994
+ "in": "path",
1995
+ "required": true,
1996
+ "schema": {
1997
+ "title": "name",
1998
+ "type": "string"
1999
+ }
2000
+ }
2001
+ ]
2002
+ }
2003
+ },
2004
+ "/images/get": {
2005
+ "get": {
2006
+ "operationId": "getImagesget",
2007
+ "responses": {
2008
+ "200": {
2009
+ "description": "Successful operation",
2010
+ "content": {
2011
+ "application/json": {
2012
+ "schema": {
2013
+ "title": "result",
2014
+ "type": "object"
2015
+ }
2016
+ }
2017
+ }
2018
+ }
2019
+ },
2020
+ "parameters": [
2021
+ {
2022
+ "name": "names",
2023
+ "in": "query",
2024
+ "required": false,
2025
+ "schema": {
2026
+ "title": "names",
2027
+ "type": "array"
2028
+ }
2029
+ }
2030
+ ]
2031
+ }
2032
+ },
2033
+ "/images/load": {
2034
+ "post": {
2035
+ "operationId": "postImagesload",
2036
+ "responses": {
2037
+ "200": {
2038
+ "description": "Successful operation",
2039
+ "content": {
2040
+ "application/json": {
2041
+ "schema": {
2042
+ "title": "result",
2043
+ "type": "object"
2044
+ }
2045
+ }
2046
+ }
2047
+ }
2048
+ },
2049
+ "parameters": [
2050
+ {
2051
+ "name": "imagesTarball",
2052
+ "in": "query",
2053
+ "required": false,
2054
+ "schema": {
2055
+ "title": "imagesTarball",
2056
+ "type": "string"
2057
+ }
2058
+ },
2059
+ {
2060
+ "name": "quiet",
2061
+ "in": "query",
2062
+ "required": false,
2063
+ "schema": {
2064
+ "title": "quiet",
2065
+ "type": "boolean"
2066
+ }
2067
+ }
2068
+ ],
2069
+ "requestBody": {
2070
+ "content": {
2071
+ "application/json": {
2072
+ "schema": {
2073
+ "type": "object"
2074
+ }
2075
+ }
2076
+ }
2077
+ }
2078
+ }
2079
+ },
2080
+ "/auth": {
2081
+ "post": {
2082
+ "operationId": "postAuth",
2083
+ "responses": {
2084
+ "200": {
2085
+ "description": "Successful operation",
2086
+ "content": {
2087
+ "application/json": {
2088
+ "schema": {
2089
+ "title": "result",
2090
+ "type": "object"
2091
+ }
2092
+ }
2093
+ }
2094
+ }
2095
+ },
2096
+ "parameters": [
2097
+ {
2098
+ "name": "authConfig",
2099
+ "in": "query",
2100
+ "required": false,
2101
+ "schema": {
2102
+ "title": "authConfig",
2103
+ "type": "object"
2104
+ }
2105
+ }
2106
+ ],
2107
+ "requestBody": {
2108
+ "content": {
2109
+ "application/json": {
2110
+ "schema": {
2111
+ "type": "object"
2112
+ }
2113
+ }
2114
+ }
2115
+ }
2116
+ }
2117
+ },
2118
+ "/info": {
2119
+ "get": {
2120
+ "operationId": "getInfo",
2121
+ "responses": {
2122
+ "200": {
2123
+ "description": "Successful operation",
2124
+ "content": {
2125
+ "application/json": {
2126
+ "schema": {
2127
+ "title": "result",
2128
+ "type": "object"
2129
+ }
2130
+ }
2131
+ }
2132
+ }
2133
+ }
2134
+ }
2135
+ },
2136
+ "/version": {
2137
+ "get": {
2138
+ "operationId": "getVersion",
2139
+ "responses": {
2140
+ "200": {
2141
+ "description": "Successful operation",
2142
+ "content": {
2143
+ "application/json": {
2144
+ "schema": {
2145
+ "title": "result",
2146
+ "type": "object"
2147
+ }
2148
+ }
2149
+ }
2150
+ }
2151
+ }
2152
+ }
2153
+ },
2154
+ "/_ping": {
2155
+ "get": {
2156
+ "operationId": "getPing",
2157
+ "responses": {
2158
+ "200": {
2159
+ "description": "Successful operation",
2160
+ "content": {
2161
+ "application/json": {
2162
+ "schema": {
2163
+ "title": "result",
2164
+ "type": "object"
2165
+ }
2166
+ }
2167
+ }
2168
+ }
2169
+ }
2170
+ }
2171
+ },
2172
+ "/events": {
2173
+ "get": {
2174
+ "operationId": "getEvents",
2175
+ "responses": {
2176
+ "200": {
2177
+ "description": "Successful operation",
2178
+ "content": {
2179
+ "application/json": {
2180
+ "schema": {
2181
+ "title": "result",
2182
+ "type": "object"
2183
+ }
2184
+ }
2185
+ }
2186
+ }
2187
+ },
2188
+ "parameters": [
2189
+ {
2190
+ "name": "since",
2191
+ "in": "query",
2192
+ "required": false,
2193
+ "schema": {
2194
+ "title": "since",
2195
+ "type": "string"
2196
+ }
2197
+ },
2198
+ {
2199
+ "name": "until",
2200
+ "in": "query",
2201
+ "required": false,
2202
+ "schema": {
2203
+ "title": "until",
2204
+ "type": "string"
2205
+ }
2206
+ },
2207
+ {
2208
+ "name": "filters",
2209
+ "in": "query",
2210
+ "required": false,
2211
+ "schema": {
2212
+ "title": "filters",
2213
+ "type": "string"
2214
+ }
2215
+ }
2216
+ ]
2217
+ }
2218
+ },
2219
+ "/system/df": {
2220
+ "get": {
2221
+ "operationId": "getSystemdf",
2222
+ "responses": {
2223
+ "200": {
2224
+ "description": "Successful operation",
2225
+ "content": {
2226
+ "application/json": {
2227
+ "schema": {
2228
+ "title": "result",
2229
+ "type": "object"
2230
+ }
2231
+ }
2232
+ }
2233
+ }
2234
+ }
2235
+ }
2236
+ },
2237
+ "/containers/{id}/exec": {
2238
+ "post": {
2239
+ "operationId": "postContainersidexec",
2240
+ "responses": {
2241
+ "200": {
2242
+ "description": "Successful operation",
2243
+ "content": {
2244
+ "application/json": {
2245
+ "schema": {
2246
+ "title": "result",
2247
+ "type": "object"
2248
+ }
2249
+ }
2250
+ }
2251
+ }
2252
+ },
2253
+ "parameters": [
2254
+ {
2255
+ "name": "id",
2256
+ "in": "path",
2257
+ "required": true,
2258
+ "schema": {
2259
+ "title": "id",
2260
+ "type": "string"
2261
+ }
2262
+ },
2263
+ {
2264
+ "name": "execConfig",
2265
+ "in": "query",
2266
+ "required": true,
2267
+ "schema": {
2268
+ "title": "execConfig",
2269
+ "type": "object"
2270
+ }
2271
+ }
2272
+ ],
2273
+ "requestBody": {
2274
+ "content": {
2275
+ "application/json": {
2276
+ "schema": {
2277
+ "type": "object"
2278
+ }
2279
+ }
2280
+ }
2281
+ }
2282
+ }
2283
+ },
2284
+ "/exec/{id}/start": {
2285
+ "post": {
2286
+ "operationId": "postExecidstart",
2287
+ "responses": {
2288
+ "200": {
2289
+ "description": "Successful operation",
2290
+ "content": {
2291
+ "application/json": {
2292
+ "schema": {
2293
+ "title": "result",
2294
+ "type": "object"
2295
+ }
2296
+ }
2297
+ }
2298
+ }
2299
+ },
2300
+ "parameters": [
2301
+ {
2302
+ "name": "id",
2303
+ "in": "path",
2304
+ "required": true,
2305
+ "schema": {
2306
+ "title": "id",
2307
+ "type": "string"
2308
+ }
2309
+ },
2310
+ {
2311
+ "name": "execStartConfig",
2312
+ "in": "query",
2313
+ "required": false,
2314
+ "schema": {
2315
+ "title": "execStartConfig",
2316
+ "type": "object"
2317
+ }
2318
+ }
2319
+ ],
2320
+ "requestBody": {
2321
+ "content": {
2322
+ "application/json": {
2323
+ "schema": {
2324
+ "type": "object"
2325
+ }
2326
+ }
2327
+ }
2328
+ }
2329
+ }
2330
+ },
2331
+ "/exec/{id}/resize": {
2332
+ "post": {
2333
+ "operationId": "postExecidresize",
2334
+ "responses": {
2335
+ "200": {
2336
+ "description": "Successful operation",
2337
+ "content": {
2338
+ "application/json": {
2339
+ "schema": {
2340
+ "title": "result",
2341
+ "type": "object"
2342
+ }
2343
+ }
2344
+ }
2345
+ }
2346
+ },
2347
+ "parameters": [
2348
+ {
2349
+ "name": "id",
2350
+ "in": "path",
2351
+ "required": true,
2352
+ "schema": {
2353
+ "title": "id",
2354
+ "type": "string"
2355
+ }
2356
+ },
2357
+ {
2358
+ "name": "h",
2359
+ "in": "query",
2360
+ "required": false,
2361
+ "schema": {
2362
+ "title": "h",
2363
+ "type": "number"
2364
+ }
2365
+ },
2366
+ {
2367
+ "name": "w",
2368
+ "in": "query",
2369
+ "required": false,
2370
+ "schema": {
2371
+ "title": "w",
2372
+ "type": "number"
2373
+ }
2374
+ }
2375
+ ],
2376
+ "requestBody": {
2377
+ "content": {
2378
+ "application/json": {
2379
+ "schema": {
2380
+ "type": "object"
2381
+ }
2382
+ }
2383
+ }
2384
+ }
2385
+ }
2386
+ },
2387
+ "/exec/{id}/json": {
2388
+ "get": {
2389
+ "operationId": "getExecidjson",
2390
+ "responses": {
2391
+ "200": {
2392
+ "description": "Successful operation",
2393
+ "content": {
2394
+ "application/json": {
2395
+ "schema": {
2396
+ "title": "result",
2397
+ "type": "object"
2398
+ }
2399
+ }
2400
+ }
2401
+ }
2402
+ },
2403
+ "parameters": [
2404
+ {
2405
+ "name": "id",
2406
+ "in": "path",
2407
+ "required": true,
2408
+ "schema": {
2409
+ "title": "id",
2410
+ "type": "string"
2411
+ }
2412
+ }
2413
+ ]
2414
+ }
2415
+ },
2416
+ "/volumes": {
2417
+ "get": {
2418
+ "operationId": "getVolumes",
2419
+ "responses": {
2420
+ "200": {
2421
+ "description": "Successful operation",
2422
+ "content": {
2423
+ "application/json": {
2424
+ "schema": {
2425
+ "title": "result",
2426
+ "type": "object"
2427
+ }
2428
+ }
2429
+ }
2430
+ }
2431
+ },
2432
+ "parameters": [
2433
+ {
2434
+ "name": "filters",
2435
+ "in": "query",
2436
+ "required": false,
2437
+ "schema": {
2438
+ "title": "filters",
2439
+ "type": "string"
2440
+ }
2441
+ }
2442
+ ]
2443
+ }
2444
+ },
2445
+ "/volumes/create": {
2446
+ "post": {
2447
+ "operationId": "postVolumescreate",
2448
+ "responses": {
2449
+ "200": {
2450
+ "description": "Successful operation",
2451
+ "content": {
2452
+ "application/json": {
2453
+ "schema": {
2454
+ "title": "result",
2455
+ "type": "object"
2456
+ }
2457
+ }
2458
+ }
2459
+ }
2460
+ },
2461
+ "parameters": [
2462
+ {
2463
+ "name": "volumeConfig",
2464
+ "in": "query",
2465
+ "required": true,
2466
+ "schema": {
2467
+ "title": "volumeConfig",
2468
+ "type": "object"
2469
+ }
2470
+ }
2471
+ ],
2472
+ "requestBody": {
2473
+ "content": {
2474
+ "application/json": {
2475
+ "schema": {
2476
+ "type": "object"
2477
+ }
2478
+ }
2479
+ }
2480
+ }
2481
+ }
2482
+ },
2483
+ "/volumes/{name}": {
2484
+ "get": {
2485
+ "operationId": "getVolumesname",
2486
+ "responses": {
2487
+ "200": {
2488
+ "description": "Successful operation",
2489
+ "content": {
2490
+ "application/json": {
2491
+ "schema": {
2492
+ "title": "result",
2493
+ "type": "object"
2494
+ }
2495
+ }
2496
+ }
2497
+ }
2498
+ },
2499
+ "parameters": [
2500
+ {
2501
+ "name": "name",
2502
+ "in": "path",
2503
+ "required": true,
2504
+ "schema": {
2505
+ "title": "name",
2506
+ "type": "string"
2507
+ }
2508
+ }
2509
+ ]
2510
+ },
2511
+ "delete": {
2512
+ "operationId": "deleteVolumesname",
2513
+ "responses": {
2514
+ "200": {
2515
+ "description": "Successful operation",
2516
+ "content": {
2517
+ "application/json": {
2518
+ "schema": {
2519
+ "title": "result",
2520
+ "type": "object"
2521
+ }
2522
+ }
2523
+ }
2524
+ }
2525
+ },
2526
+ "parameters": [
2527
+ {
2528
+ "name": "name",
2529
+ "in": "path",
2530
+ "required": true,
2531
+ "schema": {
2532
+ "title": "name",
2533
+ "type": "string"
2534
+ }
2535
+ },
2536
+ {
2537
+ "name": "force",
2538
+ "in": "query",
2539
+ "required": false,
2540
+ "schema": {
2541
+ "title": "force",
2542
+ "type": "boolean"
2543
+ }
2544
+ }
2545
+ ]
2546
+ }
2547
+ },
2548
+ "/volumes/prune": {
2549
+ "post": {
2550
+ "operationId": "postVolumesprune",
2551
+ "responses": {
2552
+ "200": {
2553
+ "description": "Successful operation",
2554
+ "content": {
2555
+ "application/json": {
2556
+ "schema": {
2557
+ "title": "result",
2558
+ "type": "object"
2559
+ }
2560
+ }
2561
+ }
2562
+ }
2563
+ },
2564
+ "parameters": [
2565
+ {
2566
+ "name": "filters",
2567
+ "in": "query",
2568
+ "required": false,
2569
+ "schema": {
2570
+ "title": "filters",
2571
+ "type": "string"
2572
+ }
2573
+ }
2574
+ ],
2575
+ "requestBody": {
2576
+ "content": {
2577
+ "application/json": {
2578
+ "schema": {
2579
+ "type": "object"
2580
+ }
2581
+ }
2582
+ }
2583
+ }
2584
+ }
2585
+ },
2586
+ "/networks": {
2587
+ "get": {
2588
+ "operationId": "getNetworks",
2589
+ "responses": {
2590
+ "200": {
2591
+ "description": "Successful operation",
2592
+ "content": {
2593
+ "application/json": {
2594
+ "schema": {
2595
+ "title": "result",
2596
+ "type": "object"
2597
+ }
2598
+ }
2599
+ }
2600
+ }
2601
+ },
2602
+ "parameters": [
2603
+ {
2604
+ "name": "filters",
2605
+ "in": "query",
2606
+ "required": false,
2607
+ "schema": {
2608
+ "title": "filters",
2609
+ "type": "string"
2610
+ }
2611
+ }
2612
+ ]
2613
+ }
2614
+ },
2615
+ "/networks/{id}": {
2616
+ "get": {
2617
+ "operationId": "getNetworksid",
2618
+ "responses": {
2619
+ "200": {
2620
+ "description": "Successful operation",
2621
+ "content": {
2622
+ "application/json": {
2623
+ "schema": {
2624
+ "title": "result",
2625
+ "type": "object"
2626
+ }
2627
+ }
2628
+ }
2629
+ }
2630
+ },
2631
+ "parameters": [
2632
+ {
2633
+ "name": "id",
2634
+ "in": "path",
2635
+ "required": true,
2636
+ "schema": {
2637
+ "title": "id",
2638
+ "type": "string"
2639
+ }
2640
+ }
2641
+ ]
2642
+ },
2643
+ "delete": {
2644
+ "operationId": "deleteNetworksid",
2645
+ "responses": {
2646
+ "200": {
2647
+ "description": "Successful operation",
2648
+ "content": {
2649
+ "application/json": {
2650
+ "schema": {
2651
+ "title": "result",
2652
+ "type": "object"
2653
+ }
2654
+ }
2655
+ }
2656
+ }
2657
+ },
2658
+ "parameters": [
2659
+ {
2660
+ "name": "id",
2661
+ "in": "path",
2662
+ "required": true,
2663
+ "schema": {
2664
+ "title": "id",
2665
+ "type": "string"
2666
+ }
2667
+ }
2668
+ ]
2669
+ }
2670
+ },
2671
+ "/networks/create": {
2672
+ "post": {
2673
+ "operationId": "postNetworkscreate",
2674
+ "responses": {
2675
+ "200": {
2676
+ "description": "Successful operation",
2677
+ "content": {
2678
+ "application/json": {
2679
+ "schema": {
2680
+ "title": "result",
2681
+ "type": "object"
2682
+ }
2683
+ }
2684
+ }
2685
+ }
2686
+ },
2687
+ "parameters": [
2688
+ {
2689
+ "name": "networkConfig",
2690
+ "in": "query",
2691
+ "required": true,
2692
+ "schema": {
2693
+ "title": "networkConfig",
2694
+ "type": "object"
2695
+ }
2696
+ }
2697
+ ],
2698
+ "requestBody": {
2699
+ "content": {
2700
+ "application/json": {
2701
+ "schema": {
2702
+ "type": "object"
2703
+ }
2704
+ }
2705
+ }
2706
+ }
2707
+ }
2708
+ },
2709
+ "/networks/{id}/connect": {
2710
+ "post": {
2711
+ "operationId": "postNetworksidconnect",
2712
+ "responses": {
2713
+ "200": {
2714
+ "description": "Successful operation",
2715
+ "content": {
2716
+ "application/json": {
2717
+ "schema": {
2718
+ "title": "result",
2719
+ "type": "object"
2720
+ }
2721
+ }
2722
+ }
2723
+ }
2724
+ },
2725
+ "parameters": [
2726
+ {
2727
+ "name": "id",
2728
+ "in": "path",
2729
+ "required": true,
2730
+ "schema": {
2731
+ "title": "id",
2732
+ "type": "string"
2733
+ }
2734
+ },
2735
+ {
2736
+ "name": "container",
2737
+ "in": "query",
2738
+ "required": true,
2739
+ "schema": {
2740
+ "title": "container",
2741
+ "type": "object"
2742
+ }
2743
+ }
2744
+ ],
2745
+ "requestBody": {
2746
+ "content": {
2747
+ "application/json": {
2748
+ "schema": {
2749
+ "type": "object"
2750
+ }
2751
+ }
2752
+ }
2753
+ }
2754
+ }
2755
+ },
2756
+ "/networks/{id}/disconnect": {
2757
+ "post": {
2758
+ "operationId": "postNetworksiddisconnect",
2759
+ "responses": {
2760
+ "200": {
2761
+ "description": "Successful operation",
2762
+ "content": {
2763
+ "application/json": {
2764
+ "schema": {
2765
+ "title": "result",
2766
+ "type": "object"
2767
+ }
2768
+ }
2769
+ }
2770
+ }
2771
+ },
2772
+ "parameters": [
2773
+ {
2774
+ "name": "id",
2775
+ "in": "path",
2776
+ "required": true,
2777
+ "schema": {
2778
+ "title": "id",
2779
+ "type": "string"
2780
+ }
2781
+ },
2782
+ {
2783
+ "name": "container",
2784
+ "in": "query",
2785
+ "required": true,
2786
+ "schema": {
2787
+ "title": "container",
2788
+ "type": "object"
2789
+ }
2790
+ }
2791
+ ],
2792
+ "requestBody": {
2793
+ "content": {
2794
+ "application/json": {
2795
+ "schema": {
2796
+ "type": "object"
2797
+ }
2798
+ }
2799
+ }
2800
+ }
2801
+ }
2802
+ },
2803
+ "/networks/prune": {
2804
+ "post": {
2805
+ "operationId": "postNetworksprune",
2806
+ "responses": {
2807
+ "200": {
2808
+ "description": "Successful operation",
2809
+ "content": {
2810
+ "application/json": {
2811
+ "schema": {
2812
+ "title": "result",
2813
+ "type": "object"
2814
+ }
2815
+ }
2816
+ }
2817
+ }
2818
+ },
2819
+ "parameters": [
2820
+ {
2821
+ "name": "filters",
2822
+ "in": "query",
2823
+ "required": false,
2824
+ "schema": {
2825
+ "title": "filters",
2826
+ "type": "string"
2827
+ }
2828
+ }
2829
+ ],
2830
+ "requestBody": {
2831
+ "content": {
2832
+ "application/json": {
2833
+ "schema": {
2834
+ "type": "object"
2835
+ }
2836
+ }
2837
+ }
2838
+ }
2839
+ }
2840
+ },
2841
+ "/plugins": {
2842
+ "get": {
2843
+ "operationId": "getPlugins",
2844
+ "responses": {
2845
+ "200": {
2846
+ "description": "Successful operation",
2847
+ "content": {
2848
+ "application/json": {
2849
+ "schema": {
2850
+ "title": "result",
2851
+ "type": "object"
2852
+ }
2853
+ }
2854
+ }
2855
+ }
2856
+ }
2857
+ }
2858
+ },
2859
+ "/plugins/privileges": {
2860
+ "get": {
2861
+ "operationId": "getPluginsprivileges",
2862
+ "responses": {
2863
+ "200": {
2864
+ "description": "Successful operation",
2865
+ "content": {
2866
+ "application/json": {
2867
+ "schema": {
2868
+ "title": "result",
2869
+ "type": "object"
2870
+ }
2871
+ }
2872
+ }
2873
+ }
2874
+ },
2875
+ "parameters": [
2876
+ {
2877
+ "name": "name",
2878
+ "in": "query",
2879
+ "required": true,
2880
+ "schema": {
2881
+ "title": "name",
2882
+ "type": "string"
2883
+ }
2884
+ }
2885
+ ]
2886
+ }
2887
+ },
2888
+ "/plugins/pull": {
2889
+ "post": {
2890
+ "operationId": "postPluginspull",
2891
+ "responses": {
2892
+ "200": {
2893
+ "description": "Successful operation",
2894
+ "content": {
2895
+ "application/json": {
2896
+ "schema": {
2897
+ "title": "result",
2898
+ "type": "object"
2899
+ }
2900
+ }
2901
+ }
2902
+ }
2903
+ },
2904
+ "parameters": [
2905
+ {
2906
+ "name": "remote",
2907
+ "in": "query",
2908
+ "required": true,
2909
+ "schema": {
2910
+ "title": "remote",
2911
+ "type": "string"
2912
+ }
2913
+ },
2914
+ {
2915
+ "name": "name",
2916
+ "in": "query",
2917
+ "required": false,
2918
+ "schema": {
2919
+ "title": "name",
2920
+ "type": "string"
2921
+ }
2922
+ },
2923
+ {
2924
+ "name": "XRegistryAuth",
2925
+ "in": "query",
2926
+ "required": false,
2927
+ "schema": {
2928
+ "title": "XRegistryAuth",
2929
+ "type": "string"
2930
+ }
2931
+ }
2932
+ ],
2933
+ "requestBody": {
2934
+ "content": {
2935
+ "application/json": {
2936
+ "schema": {
2937
+ "type": "object"
2938
+ }
2939
+ }
2940
+ }
2941
+ }
2942
+ }
2943
+ },
2944
+ "/plugins/{name}/json": {
2945
+ "get": {
2946
+ "operationId": "getPluginsnamejson",
2947
+ "responses": {
2948
+ "200": {
2949
+ "description": "Successful operation",
2950
+ "content": {
2951
+ "application/json": {
2952
+ "schema": {
2953
+ "title": "result",
2954
+ "type": "object"
2955
+ }
2956
+ }
2957
+ }
2958
+ }
2959
+ },
2960
+ "parameters": [
2961
+ {
2962
+ "name": "name",
2963
+ "in": "path",
2964
+ "required": true,
2965
+ "schema": {
2966
+ "title": "name",
2967
+ "type": "string"
2968
+ }
2969
+ }
2970
+ ]
2971
+ }
2972
+ },
2973
+ "/plugins/{name}": {
2974
+ "delete": {
2975
+ "operationId": "deletePluginsname",
2976
+ "responses": {
2977
+ "200": {
2978
+ "description": "Successful operation",
2979
+ "content": {
2980
+ "application/json": {
2981
+ "schema": {
2982
+ "title": "result",
2983
+ "type": "object"
2984
+ }
2985
+ }
2986
+ }
2987
+ }
2988
+ },
2989
+ "parameters": [
2990
+ {
2991
+ "name": "name",
2992
+ "in": "path",
2993
+ "required": true,
2994
+ "schema": {
2995
+ "title": "name",
2996
+ "type": "string"
2997
+ }
2998
+ },
2999
+ {
3000
+ "name": "force",
3001
+ "in": "query",
3002
+ "required": false,
3003
+ "schema": {
3004
+ "title": "force",
3005
+ "type": "boolean"
3006
+ }
3007
+ }
3008
+ ]
3009
+ }
3010
+ },
3011
+ "/plugins/{name}/enable": {
3012
+ "post": {
3013
+ "operationId": "postPluginsnameenable",
3014
+ "responses": {
3015
+ "200": {
3016
+ "description": "Successful operation",
3017
+ "content": {
3018
+ "application/json": {
3019
+ "schema": {
3020
+ "title": "result",
3021
+ "type": "object"
3022
+ }
3023
+ }
3024
+ }
3025
+ }
3026
+ },
3027
+ "parameters": [
3028
+ {
3029
+ "name": "name",
3030
+ "in": "path",
3031
+ "required": true,
3032
+ "schema": {
3033
+ "title": "name",
3034
+ "type": "string"
3035
+ }
3036
+ },
3037
+ {
3038
+ "name": "timeout",
3039
+ "in": "query",
3040
+ "required": false,
3041
+ "schema": {
3042
+ "title": "timeout",
3043
+ "type": "number"
3044
+ }
3045
+ }
3046
+ ],
3047
+ "requestBody": {
3048
+ "content": {
3049
+ "application/json": {
3050
+ "schema": {
3051
+ "type": "object"
3052
+ }
3053
+ }
3054
+ }
3055
+ }
3056
+ }
3057
+ },
3058
+ "/plugins/{name}/disable": {
3059
+ "post": {
3060
+ "operationId": "postPluginsnamedisable",
3061
+ "responses": {
3062
+ "200": {
3063
+ "description": "Successful operation",
3064
+ "content": {
3065
+ "application/json": {
3066
+ "schema": {
3067
+ "title": "result",
3068
+ "type": "object"
3069
+ }
3070
+ }
3071
+ }
3072
+ }
3073
+ },
3074
+ "parameters": [
3075
+ {
3076
+ "name": "name",
3077
+ "in": "path",
3078
+ "required": true,
3079
+ "schema": {
3080
+ "title": "name",
3081
+ "type": "string"
3082
+ }
3083
+ }
3084
+ ],
3085
+ "requestBody": {
3086
+ "content": {
3087
+ "application/json": {
3088
+ "schema": {
3089
+ "type": "object"
3090
+ }
3091
+ }
3092
+ }
3093
+ }
3094
+ }
3095
+ },
3096
+ "/plugins/create": {
3097
+ "post": {
3098
+ "operationId": "postPluginscreate",
3099
+ "responses": {
3100
+ "200": {
3101
+ "description": "Successful operation",
3102
+ "content": {
3103
+ "application/json": {
3104
+ "schema": {
3105
+ "title": "result",
3106
+ "type": "object"
3107
+ }
3108
+ }
3109
+ }
3110
+ }
3111
+ },
3112
+ "parameters": [
3113
+ {
3114
+ "name": "name",
3115
+ "in": "query",
3116
+ "required": true,
3117
+ "schema": {
3118
+ "title": "name",
3119
+ "type": "string"
3120
+ }
3121
+ },
3122
+ {
3123
+ "name": "tarContext",
3124
+ "in": "query",
3125
+ "required": false,
3126
+ "schema": {
3127
+ "title": "tarContext",
3128
+ "type": "string"
3129
+ }
3130
+ }
3131
+ ],
3132
+ "requestBody": {
3133
+ "content": {
3134
+ "application/json": {
3135
+ "schema": {
3136
+ "type": "object"
3137
+ }
3138
+ }
3139
+ }
3140
+ }
3141
+ }
3142
+ },
3143
+ "/plugins/{name}/push": {
3144
+ "post": {
3145
+ "operationId": "postPluginsnamepush",
3146
+ "responses": {
3147
+ "200": {
3148
+ "description": "Successful operation",
3149
+ "content": {
3150
+ "application/json": {
3151
+ "schema": {
3152
+ "title": "result",
3153
+ "type": "object"
3154
+ }
3155
+ }
3156
+ }
3157
+ }
3158
+ },
3159
+ "parameters": [
3160
+ {
3161
+ "name": "name",
3162
+ "in": "path",
3163
+ "required": true,
3164
+ "schema": {
3165
+ "title": "name",
3166
+ "type": "string"
3167
+ }
3168
+ }
3169
+ ],
3170
+ "requestBody": {
3171
+ "content": {
3172
+ "application/json": {
3173
+ "schema": {
3174
+ "type": "object"
3175
+ }
3176
+ }
3177
+ }
3178
+ }
3179
+ }
3180
+ },
3181
+ "/plugins/{name}/set": {
3182
+ "post": {
3183
+ "operationId": "postPluginsnameset",
3184
+ "responses": {
3185
+ "200": {
3186
+ "description": "Successful operation",
3187
+ "content": {
3188
+ "application/json": {
3189
+ "schema": {
3190
+ "title": "result",
3191
+ "type": "object"
3192
+ }
3193
+ }
3194
+ }
3195
+ }
3196
+ },
3197
+ "parameters": [
3198
+ {
3199
+ "name": "name",
3200
+ "in": "path",
3201
+ "required": true,
3202
+ "schema": {
3203
+ "title": "name",
3204
+ "type": "string"
3205
+ }
3206
+ }
3207
+ ],
3208
+ "requestBody": {
3209
+ "content": {
3210
+ "application/json": {
3211
+ "schema": {
3212
+ "type": "object"
3213
+ }
3214
+ }
3215
+ }
3216
+ }
3217
+ }
3218
+ },
3219
+ "/nodes": {
3220
+ "get": {
3221
+ "operationId": "getNodes",
3222
+ "responses": {
3223
+ "200": {
3224
+ "description": "Successful operation",
3225
+ "content": {
3226
+ "application/json": {
3227
+ "schema": {
3228
+ "title": "result",
3229
+ "type": "object"
3230
+ }
3231
+ }
3232
+ }
3233
+ }
3234
+ },
3235
+ "parameters": [
3236
+ {
3237
+ "name": "filters",
3238
+ "in": "query",
3239
+ "required": false,
3240
+ "schema": {
3241
+ "title": "filters",
3242
+ "type": "string"
3243
+ }
3244
+ }
3245
+ ]
3246
+ }
3247
+ },
3248
+ "/nodes/{id}": {
3249
+ "get": {
3250
+ "operationId": "getNodesid",
3251
+ "responses": {
3252
+ "200": {
3253
+ "description": "Successful operation",
3254
+ "content": {
3255
+ "application/json": {
3256
+ "schema": {
3257
+ "title": "result",
3258
+ "type": "object"
3259
+ }
3260
+ }
3261
+ }
3262
+ }
3263
+ },
3264
+ "parameters": [
3265
+ {
3266
+ "name": "id",
3267
+ "in": "path",
3268
+ "required": true,
3269
+ "schema": {
3270
+ "title": "id",
3271
+ "type": "string"
3272
+ }
3273
+ }
3274
+ ]
3275
+ },
3276
+ "delete": {
3277
+ "operationId": "deleteNodesid",
3278
+ "responses": {
3279
+ "200": {
3280
+ "description": "Successful operation",
3281
+ "content": {
3282
+ "application/json": {
3283
+ "schema": {
3284
+ "title": "result",
3285
+ "type": "object"
3286
+ }
3287
+ }
3288
+ }
3289
+ }
3290
+ },
3291
+ "parameters": [
3292
+ {
3293
+ "name": "id",
3294
+ "in": "path",
3295
+ "required": true,
3296
+ "schema": {
3297
+ "title": "id",
3298
+ "type": "string"
3299
+ }
3300
+ },
3301
+ {
3302
+ "name": "force",
3303
+ "in": "query",
3304
+ "required": false,
3305
+ "schema": {
3306
+ "title": "force",
3307
+ "type": "boolean"
3308
+ }
3309
+ }
3310
+ ]
3311
+ }
3312
+ },
3313
+ "/nodes/{id}/update": {
3314
+ "post": {
3315
+ "operationId": "postNodesidupdate",
3316
+ "responses": {
3317
+ "200": {
3318
+ "description": "Successful operation",
3319
+ "content": {
3320
+ "application/json": {
3321
+ "schema": {
3322
+ "title": "result",
3323
+ "type": "object"
3324
+ }
3325
+ }
3326
+ }
3327
+ }
3328
+ },
3329
+ "parameters": [
3330
+ {
3331
+ "name": "id",
3332
+ "in": "path",
3333
+ "required": true,
3334
+ "schema": {
3335
+ "title": "id",
3336
+ "type": "string"
3337
+ }
3338
+ },
3339
+ {
3340
+ "name": "version",
3341
+ "in": "query",
3342
+ "required": true,
3343
+ "schema": {
3344
+ "title": "version",
3345
+ "type": "number"
3346
+ }
3347
+ }
3348
+ ],
3349
+ "requestBody": {
3350
+ "content": {
3351
+ "application/json": {
3352
+ "schema": {
3353
+ "type": "object"
3354
+ }
3355
+ }
3356
+ }
3357
+ }
3358
+ }
3359
+ },
3360
+ "/swarm": {
3361
+ "get": {
3362
+ "operationId": "getSwarm",
3363
+ "responses": {
3364
+ "200": {
3365
+ "description": "Successful operation",
3366
+ "content": {
3367
+ "application/json": {
3368
+ "schema": {
3369
+ "title": "result",
3370
+ "type": "object"
3371
+ }
3372
+ }
3373
+ }
3374
+ }
3375
+ }
3376
+ }
3377
+ },
3378
+ "/swarm/init": {
3379
+ "post": {
3380
+ "operationId": "postSwarminit",
3381
+ "responses": {
3382
+ "200": {
3383
+ "description": "Successful operation",
3384
+ "content": {
3385
+ "application/json": {
3386
+ "schema": {
3387
+ "title": "result",
3388
+ "type": "object"
3389
+ }
3390
+ }
3391
+ }
3392
+ }
3393
+ },
3394
+ "requestBody": {
3395
+ "content": {
3396
+ "application/json": {
3397
+ "schema": {
3398
+ "type": "object"
3399
+ }
3400
+ }
3401
+ }
3402
+ }
3403
+ }
3404
+ },
3405
+ "/swarm/join": {
3406
+ "post": {
3407
+ "operationId": "postSwarmjoin",
3408
+ "responses": {
3409
+ "200": {
3410
+ "description": "Successful operation",
3411
+ "content": {
3412
+ "application/json": {
3413
+ "schema": {
3414
+ "title": "result",
3415
+ "type": "object"
3416
+ }
3417
+ }
3418
+ }
3419
+ }
3420
+ },
3421
+ "requestBody": {
3422
+ "content": {
3423
+ "application/json": {
3424
+ "schema": {
3425
+ "type": "object"
3426
+ }
3427
+ }
3428
+ }
3429
+ }
3430
+ }
3431
+ },
3432
+ "/swarm/leave": {
3433
+ "post": {
3434
+ "operationId": "postSwarmleave",
3435
+ "responses": {
3436
+ "200": {
3437
+ "description": "Successful operation",
3438
+ "content": {
3439
+ "application/json": {
3440
+ "schema": {
3441
+ "title": "result",
3442
+ "type": "object"
3443
+ }
3444
+ }
3445
+ }
3446
+ }
3447
+ },
3448
+ "parameters": [
3449
+ {
3450
+ "name": "force",
3451
+ "in": "query",
3452
+ "required": false,
3453
+ "schema": {
3454
+ "title": "force",
3455
+ "type": "boolean"
3456
+ }
3457
+ }
3458
+ ],
3459
+ "requestBody": {
3460
+ "content": {
3461
+ "application/json": {
3462
+ "schema": {
3463
+ "type": "object"
3464
+ }
3465
+ }
3466
+ }
3467
+ }
3468
+ }
3469
+ },
3470
+ "/swarm/update": {
3471
+ "post": {
3472
+ "operationId": "postSwarmupdate",
3473
+ "responses": {
3474
+ "200": {
3475
+ "description": "Successful operation",
3476
+ "content": {
3477
+ "application/json": {
3478
+ "schema": {
3479
+ "title": "result",
3480
+ "type": "object"
3481
+ }
3482
+ }
3483
+ }
3484
+ }
3485
+ },
3486
+ "parameters": [
3487
+ {
3488
+ "name": "version",
3489
+ "in": "query",
3490
+ "required": true,
3491
+ "schema": {
3492
+ "title": "version",
3493
+ "type": "number"
3494
+ }
3495
+ },
3496
+ {
3497
+ "name": "rotateWorkerToken",
3498
+ "in": "query",
3499
+ "required": false,
3500
+ "schema": {
3501
+ "title": "rotateWorkerToken",
3502
+ "type": "boolean"
3503
+ }
3504
+ },
3505
+ {
3506
+ "name": "rotateManagerToken",
3507
+ "in": "query",
3508
+ "required": false,
3509
+ "schema": {
3510
+ "title": "rotateManagerToken",
3511
+ "type": "boolean"
3512
+ }
3513
+ },
3514
+ {
3515
+ "name": "rotateManagerUnlockKey",
3516
+ "in": "query",
3517
+ "required": false,
3518
+ "schema": {
3519
+ "title": "rotateManagerUnlockKey",
3520
+ "type": "boolean"
3521
+ }
3522
+ }
3523
+ ],
3524
+ "requestBody": {
3525
+ "content": {
3526
+ "application/json": {
3527
+ "schema": {
3528
+ "type": "object"
3529
+ }
3530
+ }
3531
+ }
3532
+ }
3533
+ }
3534
+ },
3535
+ "/swarm/unlockkey": {
3536
+ "get": {
3537
+ "operationId": "getSwarmunlockkey",
3538
+ "responses": {
3539
+ "200": {
3540
+ "description": "Successful operation",
3541
+ "content": {
3542
+ "application/json": {
3543
+ "schema": {
3544
+ "title": "result",
3545
+ "type": "object"
3546
+ }
3547
+ }
3548
+ }
3549
+ }
3550
+ }
3551
+ }
3552
+ },
3553
+ "/swarm/unlock": {
3554
+ "post": {
3555
+ "operationId": "postSwarmunlock",
3556
+ "responses": {
3557
+ "200": {
3558
+ "description": "Successful operation",
3559
+ "content": {
3560
+ "application/json": {
3561
+ "schema": {
3562
+ "title": "result",
3563
+ "type": "object"
3564
+ }
3565
+ }
3566
+ }
3567
+ }
3568
+ },
3569
+ "requestBody": {
3570
+ "content": {
3571
+ "application/json": {
3572
+ "schema": {
3573
+ "type": "object"
3574
+ }
3575
+ }
3576
+ }
3577
+ }
3578
+ }
3579
+ },
3580
+ "/services": {
3581
+ "get": {
3582
+ "operationId": "getServices",
3583
+ "responses": {
3584
+ "200": {
3585
+ "description": "Successful operation",
3586
+ "content": {
3587
+ "application/json": {
3588
+ "schema": {
3589
+ "title": "result",
3590
+ "type": "object"
3591
+ }
3592
+ }
3593
+ }
3594
+ }
3595
+ },
3596
+ "parameters": [
3597
+ {
3598
+ "name": "filters",
3599
+ "in": "query",
3600
+ "required": false,
3601
+ "schema": {
3602
+ "title": "filters",
3603
+ "type": "string"
3604
+ }
3605
+ }
3606
+ ]
3607
+ }
3608
+ },
3609
+ "/services/create": {
3610
+ "post": {
3611
+ "operationId": "postServicescreate",
3612
+ "responses": {
3613
+ "200": {
3614
+ "description": "Successful operation",
3615
+ "content": {
3616
+ "application/json": {
3617
+ "schema": {
3618
+ "title": "result",
3619
+ "type": "object"
3620
+ }
3621
+ }
3622
+ }
3623
+ }
3624
+ },
3625
+ "parameters": [
3626
+ {
3627
+ "name": "XRegistryAuth",
3628
+ "in": "query",
3629
+ "required": false,
3630
+ "schema": {
3631
+ "title": "XRegistryAuth",
3632
+ "type": "string"
3633
+ }
3634
+ }
3635
+ ],
3636
+ "requestBody": {
3637
+ "content": {
3638
+ "application/json": {
3639
+ "schema": {
3640
+ "type": "object"
3641
+ }
3642
+ }
3643
+ }
3644
+ }
3645
+ }
3646
+ },
3647
+ "/services/{id}": {
3648
+ "get": {
3649
+ "operationId": "getServicesid",
3650
+ "responses": {
3651
+ "200": {
3652
+ "description": "Successful operation",
3653
+ "content": {
3654
+ "application/json": {
3655
+ "schema": {
3656
+ "title": "result",
3657
+ "type": "object"
3658
+ }
3659
+ }
3660
+ }
3661
+ }
3662
+ },
3663
+ "parameters": [
3664
+ {
3665
+ "name": "id",
3666
+ "in": "path",
3667
+ "required": true,
3668
+ "schema": {
3669
+ "title": "id",
3670
+ "type": "string"
3671
+ }
3672
+ }
3673
+ ]
3674
+ },
3675
+ "delete": {
3676
+ "operationId": "deleteServicesid",
3677
+ "responses": {
3678
+ "200": {
3679
+ "description": "Successful operation",
3680
+ "content": {
3681
+ "application/json": {
3682
+ "schema": {
3683
+ "title": "result",
3684
+ "type": "object"
3685
+ }
3686
+ }
3687
+ }
3688
+ }
3689
+ },
3690
+ "parameters": [
3691
+ {
3692
+ "name": "id",
3693
+ "in": "path",
3694
+ "required": true,
3695
+ "schema": {
3696
+ "title": "id",
3697
+ "type": "string"
3698
+ }
3699
+ }
3700
+ ]
3701
+ }
3702
+ },
3703
+ "/services/{id}/update": {
3704
+ "post": {
3705
+ "operationId": "postServicesidupdate",
3706
+ "responses": {
3707
+ "200": {
3708
+ "description": "Successful operation",
3709
+ "content": {
3710
+ "application/json": {
3711
+ "schema": {
3712
+ "title": "result",
3713
+ "type": "object"
3714
+ }
3715
+ }
3716
+ }
3717
+ }
3718
+ },
3719
+ "parameters": [
3720
+ {
3721
+ "name": "id",
3722
+ "in": "path",
3723
+ "required": true,
3724
+ "schema": {
3725
+ "title": "id",
3726
+ "type": "string"
3727
+ }
3728
+ },
3729
+ {
3730
+ "name": "version",
3731
+ "in": "query",
3732
+ "required": true,
3733
+ "schema": {
3734
+ "title": "version",
3735
+ "type": "number"
3736
+ }
3737
+ },
3738
+ {
3739
+ "name": "registryAuthFrom",
3740
+ "in": "query",
3741
+ "required": false,
3742
+ "schema": {
3743
+ "title": "registryAuthFrom",
3744
+ "type": "string"
3745
+ }
3746
+ },
3747
+ {
3748
+ "name": "XRegistryAuth",
3749
+ "in": "query",
3750
+ "required": false,
3751
+ "schema": {
3752
+ "title": "XRegistryAuth",
3753
+ "type": "string"
3754
+ }
3755
+ }
3756
+ ],
3757
+ "requestBody": {
3758
+ "content": {
3759
+ "application/json": {
3760
+ "schema": {
3761
+ "type": "object"
3762
+ }
3763
+ }
3764
+ }
3765
+ }
3766
+ }
3767
+ },
3768
+ "/services/{id}/logs": {
3769
+ "get": {
3770
+ "operationId": "getServicesidlogs",
3771
+ "responses": {
3772
+ "200": {
3773
+ "description": "Successful operation",
3774
+ "content": {
3775
+ "application/json": {
3776
+ "schema": {
3777
+ "title": "result",
3778
+ "type": "object"
3779
+ }
3780
+ }
3781
+ }
3782
+ }
3783
+ },
3784
+ "parameters": [
3785
+ {
3786
+ "name": "id",
3787
+ "in": "path",
3788
+ "required": true,
3789
+ "schema": {
3790
+ "title": "id",
3791
+ "type": "string"
3792
+ }
3793
+ },
3794
+ {
3795
+ "name": "details",
3796
+ "in": "query",
3797
+ "required": false,
3798
+ "schema": {
3799
+ "title": "details",
3800
+ "type": "boolean"
3801
+ }
3802
+ },
3803
+ {
3804
+ "name": "follow",
3805
+ "in": "query",
3806
+ "required": false,
3807
+ "schema": {
3808
+ "title": "follow",
3809
+ "type": "boolean"
3810
+ }
3811
+ },
3812
+ {
3813
+ "name": "stdout",
3814
+ "in": "query",
3815
+ "required": false,
3816
+ "schema": {
3817
+ "title": "stdout",
3818
+ "type": "boolean"
3819
+ }
3820
+ },
3821
+ {
3822
+ "name": "stderr",
3823
+ "in": "query",
3824
+ "required": false,
3825
+ "schema": {
3826
+ "title": "stderr",
3827
+ "type": "boolean"
3828
+ }
3829
+ },
3830
+ {
3831
+ "name": "since",
3832
+ "in": "query",
3833
+ "required": false,
3834
+ "schema": {
3835
+ "title": "since",
3836
+ "type": "number"
3837
+ }
3838
+ },
3839
+ {
3840
+ "name": "timestamps",
3841
+ "in": "query",
3842
+ "required": false,
3843
+ "schema": {
3844
+ "title": "timestamps",
3845
+ "type": "boolean"
3846
+ }
3847
+ },
3848
+ {
3849
+ "name": "tail",
3850
+ "in": "query",
3851
+ "required": false,
3852
+ "schema": {
3853
+ "title": "tail",
3854
+ "type": "string"
3855
+ }
3856
+ }
3857
+ ]
3858
+ }
3859
+ },
3860
+ "/tasks": {
3861
+ "get": {
3862
+ "operationId": "getTasks",
3863
+ "responses": {
3864
+ "200": {
3865
+ "description": "Successful operation",
3866
+ "content": {
3867
+ "application/json": {
3868
+ "schema": {
3869
+ "title": "result",
3870
+ "type": "object"
3871
+ }
3872
+ }
3873
+ }
3874
+ }
3875
+ },
3876
+ "parameters": [
3877
+ {
3878
+ "name": "filters",
3879
+ "in": "query",
3880
+ "required": false,
3881
+ "schema": {
3882
+ "title": "filters",
3883
+ "type": "string"
3884
+ }
3885
+ }
3886
+ ]
3887
+ }
3888
+ },
3889
+ "/tasks/{id}": {
3890
+ "get": {
3891
+ "operationId": "getTasksid",
3892
+ "responses": {
3893
+ "200": {
3894
+ "description": "Successful operation",
3895
+ "content": {
3896
+ "application/json": {
3897
+ "schema": {
3898
+ "title": "result",
3899
+ "type": "object"
3900
+ }
3901
+ }
3902
+ }
3903
+ }
3904
+ },
3905
+ "parameters": [
3906
+ {
3907
+ "name": "id",
3908
+ "in": "path",
3909
+ "required": true,
3910
+ "schema": {
3911
+ "title": "id",
3912
+ "type": "string"
3913
+ }
3914
+ }
3915
+ ]
3916
+ }
3917
+ },
3918
+ "/secrets": {
3919
+ "get": {
3920
+ "operationId": "getSecrets",
3921
+ "responses": {
3922
+ "200": {
3923
+ "description": "Successful operation",
3924
+ "content": {
3925
+ "application/json": {
3926
+ "schema": {
3927
+ "title": "result",
3928
+ "type": "object"
3929
+ }
3930
+ }
3931
+ }
3932
+ }
3933
+ },
3934
+ "parameters": [
3935
+ {
3936
+ "name": "filters",
3937
+ "in": "query",
3938
+ "required": false,
3939
+ "schema": {
3940
+ "title": "filters",
3941
+ "type": "string"
3942
+ }
3943
+ }
3944
+ ]
3945
+ }
3946
+ },
3947
+ "/secrets/create": {
3948
+ "post": {
3949
+ "operationId": "postSecretscreate",
3950
+ "responses": {
3951
+ "200": {
3952
+ "description": "Successful operation",
3953
+ "content": {
3954
+ "application/json": {
3955
+ "schema": {
3956
+ "title": "result",
3957
+ "type": "object"
3958
+ }
3959
+ }
3960
+ }
3961
+ }
3962
+ },
3963
+ "requestBody": {
3964
+ "content": {
3965
+ "application/json": {
3966
+ "schema": {
3967
+ "type": "object"
3968
+ }
3969
+ }
3970
+ }
3971
+ }
3972
+ }
3973
+ },
3974
+ "/secrets/{id}": {
3975
+ "get": {
3976
+ "operationId": "getSecretsid",
3977
+ "responses": {
3978
+ "200": {
3979
+ "description": "Successful operation",
3980
+ "content": {
3981
+ "application/json": {
3982
+ "schema": {
3983
+ "title": "result",
3984
+ "type": "object"
3985
+ }
3986
+ }
3987
+ }
3988
+ }
3989
+ },
3990
+ "parameters": [
3991
+ {
3992
+ "name": "id",
3993
+ "in": "path",
3994
+ "required": true,
3995
+ "schema": {
3996
+ "title": "id",
3997
+ "type": "string"
3998
+ }
3999
+ }
4000
+ ]
4001
+ },
4002
+ "delete": {
4003
+ "operationId": "deleteSecretsid",
4004
+ "responses": {
4005
+ "200": {
4006
+ "description": "Successful operation",
4007
+ "content": {
4008
+ "application/json": {
4009
+ "schema": {
4010
+ "title": "result",
4011
+ "type": "object"
4012
+ }
4013
+ }
4014
+ }
4015
+ }
4016
+ },
4017
+ "parameters": [
4018
+ {
4019
+ "name": "id",
4020
+ "in": "path",
4021
+ "required": true,
4022
+ "schema": {
4023
+ "title": "id",
4024
+ "type": "string"
4025
+ }
4026
+ }
4027
+ ]
4028
+ }
4029
+ }
4030
+ },
4031
+ "components": {
4032
+ "schemas": {}
4033
+ }
4034
+ }