@itentialopensource/adapter-menmice_micetro 0.2.0 → 0.3.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 (42) hide show
  1. package/CALLS.md +840 -0
  2. package/CHANGELOG.md +16 -0
  3. package/CONTRIBUTING.md +1 -160
  4. package/ENHANCE.md +2 -2
  5. package/README.md +32 -23
  6. package/adapter.js +161 -333
  7. package/adapterBase.js +549 -879
  8. package/changelogs/changelog.md +16 -0
  9. package/metadata.json +49 -0
  10. package/package.json +24 -25
  11. package/pronghorn.json +981 -642
  12. package/propertiesSchema.json +431 -31
  13. package/refs?service=git-upload-pack +0 -0
  14. package/report/adapter-openapi.json +4594 -0
  15. package/report/adapter-openapi.yaml +3404 -0
  16. package/report/adapterInfo.json +8 -8
  17. package/report/updateReport1691508458650.json +120 -0
  18. package/report/updateReport1692202935275.json +120 -0
  19. package/report/updateReport1694465998504.json +120 -0
  20. package/report/updateReport1698421878532.json +120 -0
  21. package/sampleProperties.json +63 -2
  22. package/test/integration/adapterTestBasicGet.js +2 -4
  23. package/test/integration/adapterTestConnectivity.js +91 -42
  24. package/test/integration/adapterTestIntegration.js +130 -2
  25. package/test/unit/adapterBaseTestUnit.js +388 -313
  26. package/test/unit/adapterTestUnit.js +338 -112
  27. package/utils/adapterInfo.js +1 -1
  28. package/utils/addAuth.js +1 -1
  29. package/utils/artifactize.js +1 -1
  30. package/utils/checkMigrate.js +1 -1
  31. package/utils/entitiesToDB.js +2 -2
  32. package/utils/findPath.js +1 -1
  33. package/utils/methodDocumentor.js +273 -0
  34. package/utils/modify.js +13 -15
  35. package/utils/packModificationScript.js +1 -1
  36. package/utils/pre-commit.sh +2 -0
  37. package/utils/taskMover.js +309 -0
  38. package/utils/tbScript.js +89 -34
  39. package/utils/tbUtils.js +41 -21
  40. package/utils/testRunner.js +1 -1
  41. package/utils/troubleshootingAdapter.js +9 -6
  42. package/workflows/README.md +0 -3
@@ -0,0 +1,4594 @@
1
+ {
2
+ "openapi":"3.0.0",
3
+ "servers":[
4
+ {
5
+ "url":"https://micetro.menandmice.com",
6
+ "description":"",
7
+ "variables":{
8
+ }
9
+ }
10
+ ],
11
+ "info":{
12
+ "version":"13.0",
13
+ "title":"MenAndMice",
14
+ "description":"",
15
+ "termsOfService":"",
16
+ "contact":{
17
+ },
18
+ "license":{
19
+ "name":""
20
+ }
21
+ },
22
+ "paths":{
23
+ "/mmws/api/AddressSpaces": {
24
+ "post": {
25
+ "tags": [
26
+ "AddressSpace"
27
+ ],
28
+ "summary": "Create Address Space",
29
+ "description": "Create Address Space",
30
+ "operationId": "createAddressSpace",
31
+ "parameters": [],
32
+ "requestBody": {
33
+ "description": "Address Space",
34
+ "content": {
35
+ "application/json": {
36
+ "schema": {
37
+ "title": "addressSpace",
38
+ "type": "object"
39
+ }
40
+ }
41
+ },
42
+ "required": true
43
+ },
44
+ "responses": {
45
+ "200": {
46
+ "description": "successful response",
47
+ "content": {
48
+ "application/json": {
49
+ "schema": {
50
+ "type": "object"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ }
56
+ },
57
+ "get": {
58
+ "tags": [
59
+ "AddressSpace"
60
+ ],
61
+ "summary": "Get Address Spaces",
62
+ "description": "Get Address Spaces",
63
+ "operationId": "getAddressSpaces",
64
+ "parameters": [],
65
+ "responses": {
66
+ "200": {
67
+ "description": "successful response",
68
+ "content": {
69
+ "application/json": {
70
+ "schema": {
71
+ "type": "object"
72
+ }
73
+ }
74
+ }
75
+ }
76
+ }
77
+ }
78
+ },
79
+ "/mmws/api/AddressSpaces/{addressSpaceId}":{
80
+ "put":{
81
+ "tags": [
82
+ "AddressSpace"
83
+ ],
84
+ "summary": "Update Address Space",
85
+ "description": "Update Address Space",
86
+ "operationId": "updateAddressSpace",
87
+ "parameters":[
88
+ {
89
+ "name": "addressSpaceId",
90
+ "in": "path",
91
+ "description": "id of the address space to update",
92
+ "required": true,
93
+ "schema":{
94
+ "type": "string"
95
+ }
96
+ }
97
+ ],
98
+ "requestBody": {
99
+ "description": "Address Space",
100
+ "content": {
101
+ "application/json": {
102
+ "schema": {
103
+ "title": "addressSpace",
104
+ "type": "object"
105
+ }
106
+ }
107
+ },
108
+ "required": true
109
+ },
110
+ "responses": {
111
+ "200": {
112
+ "description": "successful response",
113
+ "content": {
114
+ "application/json": {
115
+ "schema": {
116
+ "type": "object"
117
+ }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ },
123
+ "get":{
124
+ "tags": [
125
+ "AddressSpace"
126
+ ],
127
+ "summary": "Get Address Space By Id",
128
+ "description": "Get Address Space By Id",
129
+ "operationId": "getAddressSpaceById",
130
+ "parameters":[
131
+ {
132
+ "name": "addressSpaceId",
133
+ "in": "path",
134
+ "description": "id of the Address Space to get",
135
+ "required": true,
136
+ "schema":{
137
+ "type": "string"
138
+ }
139
+ }
140
+ ],
141
+ "responses": {
142
+ "200": {
143
+ "description": "successful response",
144
+ "content": {
145
+ "application/json": {
146
+ "schema": {
147
+ "type": "object"
148
+ }
149
+ }
150
+ }
151
+ }
152
+ }
153
+ },
154
+ "delete":{
155
+ "tags": [
156
+ "AddressSpace"
157
+ ],
158
+ "summary": "Delete Address Space",
159
+ "description": "Delete Address Space",
160
+ "operationId": "deleteAddressSpace",
161
+ "parameters":[
162
+ {
163
+ "name": "addressSpaceId",
164
+ "in": "path",
165
+ "description": "id of the Address Space to delete",
166
+ "required": true,
167
+ "schema":{
168
+ "type": "string"
169
+ }
170
+ }
171
+ ],
172
+ "responses": {
173
+ "200": {
174
+ "description": "successful response",
175
+ "content": {
176
+ "application/json": {
177
+ "schema": {
178
+ "type": "object"
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
184
+ }
185
+ },
186
+ "/mmws/api/ADForests": {
187
+ "post": {
188
+ "tags": [
189
+ "ADForest"
190
+ ],
191
+ "summary": "Create AD Forest",
192
+ "description": "Create AD Forest",
193
+ "operationId": "createADForest",
194
+ "parameters": [],
195
+ "requestBody": {
196
+ "description": "AD Forest",
197
+ "content": {
198
+ "application/json": {
199
+ "schema": {
200
+ "title": "adForest",
201
+ "type": "object"
202
+ }
203
+ }
204
+ },
205
+ "required": true
206
+ },
207
+ "responses": {
208
+ "200": {
209
+ "description": "successful response",
210
+ "content": {
211
+ "application/json": {
212
+ "schema": {
213
+ "type": "object"
214
+ }
215
+ }
216
+ }
217
+ }
218
+ }
219
+ },
220
+ "get": {
221
+ "tags": [
222
+ "ADForest"
223
+ ],
224
+ "summary": "Get AD Forests",
225
+ "description": "Get AD Forests",
226
+ "operationId": "getADForests",
227
+ "parameters": [],
228
+ "responses": {
229
+ "200": {
230
+ "description": "successful response",
231
+ "content": {
232
+ "application/json": {
233
+ "schema": {
234
+ "type": "object"
235
+ }
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }
241
+ },
242
+ "/mmws/api/ADForests/{adForestId}":{
243
+ "put":{
244
+ "tags": [
245
+ "ADForest"
246
+ ],
247
+ "summary": "Update AD Forest",
248
+ "description": "Update AD Forest",
249
+ "operationId": "updateADForest",
250
+ "parameters":[
251
+ {
252
+ "name": "adForestId",
253
+ "in": "path",
254
+ "description": "id of the AD Forest to update",
255
+ "required": true,
256
+ "schema":{
257
+ "type": "string"
258
+ }
259
+ }
260
+ ],
261
+ "requestBody": {
262
+ "description": "AD Forest",
263
+ "content": {
264
+ "application/json": {
265
+ "schema": {
266
+ "title": "adForest",
267
+ "type": "object"
268
+ }
269
+ }
270
+ },
271
+ "required": true
272
+ },
273
+ "responses": {
274
+ "200": {
275
+ "description": "successful response",
276
+ "content": {
277
+ "application/json": {
278
+ "schema": {
279
+ "type": "object"
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
285
+ },
286
+ "get":{
287
+ "tags": [
288
+ "ADForest"
289
+ ],
290
+ "summary": "Get AD Forest By Id",
291
+ "description": "Get AD Forest By Id",
292
+ "operationId": "getADForestById",
293
+ "parameters":[
294
+ {
295
+ "name": "adForestId",
296
+ "in": "path",
297
+ "description": "id of the AD Forest to get",
298
+ "required": true,
299
+ "schema":{
300
+ "type": "string"
301
+ }
302
+ }
303
+ ],
304
+ "responses": {
305
+ "200": {
306
+ "description": "successful response",
307
+ "content": {
308
+ "application/json": {
309
+ "schema": {
310
+ "type": "object"
311
+ }
312
+ }
313
+ }
314
+ }
315
+ }
316
+ },
317
+ "delete":{
318
+ "tags": [
319
+ "ADForest"
320
+ ],
321
+ "summary": "Delete AD Forest",
322
+ "description": "Delete AD Forest",
323
+ "operationId": "deleteADForest",
324
+ "parameters":[
325
+ {
326
+ "name": "adForestId",
327
+ "in": "path",
328
+ "description": "id of the AD Forest to delete",
329
+ "required": true,
330
+ "schema":{
331
+ "type": "string"
332
+ }
333
+ }
334
+ ],
335
+ "responses": {
336
+ "200": {
337
+ "description": "successful response",
338
+ "content": {
339
+ "application/json": {
340
+ "schema": {
341
+ "type": "object"
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ }
348
+ },
349
+ "/mmws/api/ADSiteLinks": {
350
+ "post": {
351
+ "tags": [
352
+ "ADSiteLink"
353
+ ],
354
+ "summary": "Create AD SiteLink",
355
+ "description": "Create AD SiteLink",
356
+ "operationId": "createADSiteLink",
357
+ "parameters": [],
358
+ "requestBody": {
359
+ "description": "AD SiteLink",
360
+ "content": {
361
+ "application/json": {
362
+ "schema": {
363
+ "title": "adSiteLink",
364
+ "type": "object"
365
+ }
366
+ }
367
+ },
368
+ "required": true
369
+ },
370
+ "responses": {
371
+ "200": {
372
+ "description": "successful response",
373
+ "content": {
374
+ "application/json": {
375
+ "schema": {
376
+ "type": "object"
377
+ }
378
+ }
379
+ }
380
+ }
381
+ }
382
+ },
383
+ "get": {
384
+ "tags": [
385
+ "ADSiteLink"
386
+ ],
387
+ "summary": "Get AD Site Links",
388
+ "description": "Get AD Site Links",
389
+ "operationId": "getADSiteLinks",
390
+ "parameters": [],
391
+ "responses": {
392
+ "200": {
393
+ "description": "successful response",
394
+ "content": {
395
+ "application/json": {
396
+ "schema": {
397
+ "type": "object"
398
+ }
399
+ }
400
+ }
401
+ }
402
+ }
403
+ }
404
+ },
405
+ "/mmws/api/ADSiteLinks/{adSiteLinkId}":{
406
+ "put":{
407
+ "tags": [
408
+ "ADSiteLink"
409
+ ],
410
+ "summary": "Update AD Site Link",
411
+ "description": "Update AD Site Link",
412
+ "operationId": "updateADSiteLink",
413
+ "parameters":[
414
+ {
415
+ "name": "adSiteLinkId",
416
+ "in": "path",
417
+ "description": "id of the AD Site Link to update",
418
+ "required": true,
419
+ "schema":{
420
+ "type": "string"
421
+ }
422
+ }
423
+ ],
424
+ "requestBody": {
425
+ "description": "AD Site Link",
426
+ "content": {
427
+ "application/json": {
428
+ "schema": {
429
+ "title": "adSiteLink",
430
+ "type": "object"
431
+ }
432
+ }
433
+ },
434
+ "required": true
435
+ },
436
+ "responses": {
437
+ "200": {
438
+ "description": "successful response",
439
+ "content": {
440
+ "application/json": {
441
+ "schema": {
442
+ "type": "object"
443
+ }
444
+ }
445
+ }
446
+ }
447
+ }
448
+ },
449
+ "get":{
450
+ "tags": [
451
+ "ADSiteLink"
452
+ ],
453
+ "summary": "Get AD Site Link By Id",
454
+ "description": "Get AD Site Link By Id",
455
+ "operationId": "getADSiteLinkById",
456
+ "parameters":[
457
+ {
458
+ "name": "adSiteLinkId",
459
+ "in": "path",
460
+ "description": "id of the AD Site Link to get",
461
+ "required": true,
462
+ "schema":{
463
+ "type": "string"
464
+ }
465
+ }
466
+ ],
467
+ "responses": {
468
+ "200": {
469
+ "description": "successful response",
470
+ "content": {
471
+ "application/json": {
472
+ "schema": {
473
+ "type": "object"
474
+ }
475
+ }
476
+ }
477
+ }
478
+ }
479
+ },
480
+ "delete":{
481
+ "tags": [
482
+ "ADSiteLink"
483
+ ],
484
+ "summary": "Delete AD Site Link",
485
+ "description": "Delete AD Site Link",
486
+ "operationId": "deleteADSiteLink",
487
+ "parameters":[
488
+ {
489
+ "name": "adSiteLinkId",
490
+ "in": "path",
491
+ "description": "id of the AD Site Link to delete",
492
+ "required": true,
493
+ "schema":{
494
+ "type": "string"
495
+ }
496
+ }
497
+ ],
498
+ "responses": {
499
+ "200": {
500
+ "description": "successful response",
501
+ "content": {
502
+ "application/json": {
503
+ "schema": {
504
+ "type": "object"
505
+ }
506
+ }
507
+ }
508
+ }
509
+ }
510
+ }
511
+ },
512
+ "/mmws/api/ADSites": {
513
+ "post": {
514
+ "tags": [
515
+ "ADSite"
516
+ ],
517
+ "summary": "Create AD Site",
518
+ "description": "Create AD Site",
519
+ "operationId": "createADSite",
520
+ "parameters": [],
521
+ "requestBody": {
522
+ "description": "AD Site",
523
+ "content": {
524
+ "application/json": {
525
+ "schema": {
526
+ "title": "adSite",
527
+ "type": "object"
528
+ }
529
+ }
530
+ },
531
+ "required": true
532
+ },
533
+ "responses": {
534
+ "200": {
535
+ "description": "successful response",
536
+ "content": {
537
+ "application/json": {
538
+ "schema": {
539
+ "type": "object"
540
+ }
541
+ }
542
+ }
543
+ }
544
+ }
545
+ },
546
+ "get": {
547
+ "tags": [
548
+ "ADSite"
549
+ ],
550
+ "summary": "Get AD Sites",
551
+ "description": "Get AD Sites",
552
+ "operationId": "getADSites",
553
+ "parameters": [],
554
+ "responses": {
555
+ "200": {
556
+ "description": "successful response",
557
+ "content": {
558
+ "application/json": {
559
+ "schema": {
560
+ "type": "object"
561
+ }
562
+ }
563
+ }
564
+ }
565
+ }
566
+ }
567
+ },
568
+ "/mmws/api/ADSites/{adSiteId}":{
569
+ "put":{
570
+ "tags": [
571
+ "ADSite"
572
+ ],
573
+ "summary": "Update AD Site",
574
+ "description": "Update AD Site",
575
+ "operationId": "updateADSite",
576
+ "parameters":[
577
+ {
578
+ "name": "adSiteId",
579
+ "in": "path",
580
+ "description": "id of the AD Site to update",
581
+ "required": true,
582
+ "schema":{
583
+ "type": "string"
584
+ }
585
+ }
586
+ ],
587
+ "requestBody": {
588
+ "description": "AD Site",
589
+ "content": {
590
+ "application/json": {
591
+ "schema": {
592
+ "title": "adSite",
593
+ "type": "object"
594
+ }
595
+ }
596
+ },
597
+ "required": true
598
+ },
599
+ "responses": {
600
+ "200": {
601
+ "description": "successful response",
602
+ "content": {
603
+ "application/json": {
604
+ "schema": {
605
+ "type": "object"
606
+ }
607
+ }
608
+ }
609
+ }
610
+ }
611
+ },
612
+ "get":{
613
+ "tags": [
614
+ "ADSite"
615
+ ],
616
+ "summary": "Get AD Site By Id",
617
+ "description": "Get AD Site By Id",
618
+ "operationId": "getADSiteById",
619
+ "parameters":[
620
+ {
621
+ "name": "adSiteId",
622
+ "in": "path",
623
+ "description": "id of the AD Site to get",
624
+ "required": true,
625
+ "schema":{
626
+ "type": "string"
627
+ }
628
+ }
629
+ ],
630
+ "responses": {
631
+ "200": {
632
+ "description": "successful response",
633
+ "content": {
634
+ "application/json": {
635
+ "schema": {
636
+ "type": "object"
637
+ }
638
+ }
639
+ }
640
+ }
641
+ }
642
+ },
643
+ "delete":{
644
+ "tags": [
645
+ "ADSite"
646
+ ],
647
+ "summary": "Delete AD Site",
648
+ "description": "Delete AD Site",
649
+ "operationId": "deleteADSite",
650
+ "parameters":[
651
+ {
652
+ "name": "adSiteId",
653
+ "in": "path",
654
+ "description": "id of the AD Site to delete",
655
+ "required": true,
656
+ "schema":{
657
+ "type": "string"
658
+ }
659
+ }
660
+ ],
661
+ "responses": {
662
+ "200": {
663
+ "description": "successful response",
664
+ "content": {
665
+ "application/json": {
666
+ "schema": {
667
+ "type": "object"
668
+ }
669
+ }
670
+ }
671
+ }
672
+ }
673
+ }
674
+ },
675
+ "/mmws/api/ChangeRequests": {
676
+ "post": {
677
+ "tags": [
678
+ "ChangeRequest"
679
+ ],
680
+ "summary": "Create Change Request",
681
+ "description": "Create Change Request",
682
+ "operationId": "createChangeRequest",
683
+ "parameters": [],
684
+ "requestBody": {
685
+ "description": "ChangeRequest",
686
+ "content": {
687
+ "application/json": {
688
+ "schema": {
689
+ "title": "changeRequest",
690
+ "type": "object"
691
+ }
692
+ }
693
+ },
694
+ "required": true
695
+ },
696
+ "responses": {
697
+ "200": {
698
+ "description": "successful response",
699
+ "content": {
700
+ "application/json": {
701
+ "schema": {
702
+ "type": "object"
703
+ }
704
+ }
705
+ }
706
+ }
707
+ }
708
+ },
709
+ "get": {
710
+ "tags": [
711
+ "ChangeRequest"
712
+ ],
713
+ "summary": "Get Change Requests",
714
+ "description": "Get Change Requests",
715
+ "operationId": "getChangeRequests",
716
+ "parameters": [],
717
+ "responses": {
718
+ "200": {
719
+ "description": "successful response",
720
+ "content": {
721
+ "application/json": {
722
+ "schema": {
723
+ "type": "object"
724
+ }
725
+ }
726
+ }
727
+ }
728
+ }
729
+ }
730
+ },
731
+ "/mmws/api/ChangeRequests/{changeRequestId}":{
732
+ "put":{
733
+ "tags": [
734
+ "ChangeRequest"
735
+ ],
736
+ "summary": "Update Change Request",
737
+ "description": "Update Change Request",
738
+ "operationId": "updateChangeRequest",
739
+ "parameters":[
740
+ {
741
+ "name": "changeRequestId",
742
+ "in": "path",
743
+ "description": "id of the Change Request to update",
744
+ "required": true,
745
+ "schema":{
746
+ "type": "string"
747
+ }
748
+ }
749
+ ],
750
+ "requestBody": {
751
+ "description": "Change Request",
752
+ "content": {
753
+ "application/json": {
754
+ "schema": {
755
+ "title": "changeRequest",
756
+ "type": "object"
757
+ }
758
+ }
759
+ },
760
+ "required": true
761
+ },
762
+ "responses": {
763
+ "200": {
764
+ "description": "successful response",
765
+ "content": {
766
+ "application/json": {
767
+ "schema": {
768
+ "type": "object"
769
+ }
770
+ }
771
+ }
772
+ }
773
+ }
774
+ },
775
+ "get":{
776
+ "tags": [
777
+ "ChangeRequest"
778
+ ],
779
+ "summary": "Get Change Request By Id",
780
+ "description": "Get Change Request By Id",
781
+ "operationId": "getChangeRequestById",
782
+ "parameters":[
783
+ {
784
+ "name": "changeRequestId",
785
+ "in": "path",
786
+ "description": "id of the Change Request to get",
787
+ "required": true,
788
+ "schema":{
789
+ "type": "string"
790
+ }
791
+ }
792
+ ],
793
+ "responses": {
794
+ "200": {
795
+ "description": "successful response",
796
+ "content": {
797
+ "application/json": {
798
+ "schema": {
799
+ "type": "object"
800
+ }
801
+ }
802
+ }
803
+ }
804
+ }
805
+ },
806
+ "delete":{
807
+ "tags": [
808
+ "ChangeRequest"
809
+ ],
810
+ "summary": "Delete Change Request",
811
+ "description": "Delete Change Request",
812
+ "operationId": "deleteChangeRequest",
813
+ "parameters":[
814
+ {
815
+ "name": "changeRequestId",
816
+ "in": "path",
817
+ "description": "id of the Change Request to delete",
818
+ "required": true,
819
+ "schema":{
820
+ "type": "string"
821
+ }
822
+ }
823
+ ],
824
+ "responses": {
825
+ "200": {
826
+ "description": "successful response",
827
+ "content": {
828
+ "application/json": {
829
+ "schema": {
830
+ "type": "object"
831
+ }
832
+ }
833
+ }
834
+ }
835
+ }
836
+ }
837
+ },
838
+ "/mmws/api/CloudNetworks": {
839
+ "post": {
840
+ "tags": [
841
+ "CloudNetwork"
842
+ ],
843
+ "summary": "Create Cloud Network",
844
+ "description": "Create Cloud Network",
845
+ "operationId": "createCloudNetwork",
846
+ "parameters": [],
847
+ "requestBody": {
848
+ "description": "Cloud Network",
849
+ "content": {
850
+ "application/json": {
851
+ "schema": {
852
+ "title": "cloudNetwork",
853
+ "type": "object"
854
+ }
855
+ }
856
+ },
857
+ "required": true
858
+ },
859
+ "responses": {
860
+ "200": {
861
+ "description": "successful response",
862
+ "content": {
863
+ "application/json": {
864
+ "schema": {
865
+ "type": "object"
866
+ }
867
+ }
868
+ }
869
+ }
870
+ }
871
+ },
872
+ "get": {
873
+ "tags": [
874
+ "CloudNetwork"
875
+ ],
876
+ "summary": "Get Cloud Networks",
877
+ "description": "Get Cloud Networks",
878
+ "operationId": "getCloudNetworks",
879
+ "parameters": [],
880
+ "responses": {
881
+ "200": {
882
+ "description": "successful response",
883
+ "content": {
884
+ "application/json": {
885
+ "schema": {
886
+ "type": "object"
887
+ }
888
+ }
889
+ }
890
+ }
891
+ }
892
+ }
893
+ },
894
+ "/mmws/api/CloudNetworks/{cloudNetworkId}":{
895
+ "put":{
896
+ "tags": [
897
+ "CloudNetwork"
898
+ ],
899
+ "summary": "Update Cloud Network",
900
+ "description": "Update Cloud Network",
901
+ "operationId": "updateCloudNetwork",
902
+ "parameters":[
903
+ {
904
+ "name": "cloudNetworkId",
905
+ "in": "path",
906
+ "description": "id of the Cloud Network to update",
907
+ "required": true,
908
+ "schema":{
909
+ "type": "string"
910
+ }
911
+ }
912
+ ],
913
+ "requestBody": {
914
+ "description": "Cloud Network",
915
+ "content": {
916
+ "application/json": {
917
+ "schema": {
918
+ "title": "cloudNetwork",
919
+ "type": "object"
920
+ }
921
+ }
922
+ },
923
+ "required": true
924
+ },
925
+ "responses": {
926
+ "200": {
927
+ "description": "successful response",
928
+ "content": {
929
+ "application/json": {
930
+ "schema": {
931
+ "type": "object"
932
+ }
933
+ }
934
+ }
935
+ }
936
+ }
937
+ },
938
+ "get":{
939
+ "tags": [
940
+ "CloudNetwork"
941
+ ],
942
+ "summary": "Get Cloud Network By Id",
943
+ "description": "Get Cloud Network By Id",
944
+ "operationId": "getCloudNetworkById",
945
+ "parameters":[
946
+ {
947
+ "name": "cloudNetworkId",
948
+ "in": "path",
949
+ "description": "id of the Cloud Network to get",
950
+ "required": true,
951
+ "schema":{
952
+ "type": "string"
953
+ }
954
+ }
955
+ ],
956
+ "responses": {
957
+ "200": {
958
+ "description": "successful response",
959
+ "content": {
960
+ "application/json": {
961
+ "schema": {
962
+ "type": "object"
963
+ }
964
+ }
965
+ }
966
+ }
967
+ }
968
+ },
969
+ "delete":{
970
+ "tags": [
971
+ "CloudNetwork"
972
+ ],
973
+ "summary": "Delete Cloud Network",
974
+ "description": "Delete Cloud Network",
975
+ "operationId": "deleteCloudNetwork",
976
+ "parameters":[
977
+ {
978
+ "name": "cloudNetworkId",
979
+ "in": "path",
980
+ "description": "id of the Cloud Network to delete",
981
+ "required": true,
982
+ "schema":{
983
+ "type": "string"
984
+ }
985
+ }
986
+ ],
987
+ "responses": {
988
+ "200": {
989
+ "description": "successful response",
990
+ "content": {
991
+ "application/json": {
992
+ "schema": {
993
+ "type": "object"
994
+ }
995
+ }
996
+ }
997
+ }
998
+ }
999
+ }
1000
+ },
1001
+ "/mmws/api/CloudServiceAccounts": {
1002
+ "post": {
1003
+ "tags": [
1004
+ "CloudServiceAccount"
1005
+ ],
1006
+ "summary": "Create Cloud Service Account",
1007
+ "description": "Create Cloud Service Account",
1008
+ "operationId": "createCloudServiceAccount",
1009
+ "parameters": [],
1010
+ "requestBody": {
1011
+ "description": "Cloud Service Account",
1012
+ "content": {
1013
+ "application/json": {
1014
+ "schema": {
1015
+ "title": "cloudServiceAccount",
1016
+ "type": "object"
1017
+ }
1018
+ }
1019
+ },
1020
+ "required": true
1021
+ },
1022
+ "responses": {
1023
+ "200": {
1024
+ "description": "successful response",
1025
+ "content": {
1026
+ "application/json": {
1027
+ "schema": {
1028
+ "type": "object"
1029
+ }
1030
+ }
1031
+ }
1032
+ }
1033
+ }
1034
+ },
1035
+ "get": {
1036
+ "tags": [
1037
+ "CloudServiceAccount"
1038
+ ],
1039
+ "summary": "Get Cloud Service Accounts",
1040
+ "description": "Get Cloud Service Accounts",
1041
+ "operationId": "getCloudServiceAccounts",
1042
+ "parameters": [],
1043
+ "responses": {
1044
+ "200": {
1045
+ "description": "successful response",
1046
+ "content": {
1047
+ "application/json": {
1048
+ "schema": {
1049
+ "type": "object"
1050
+ }
1051
+ }
1052
+ }
1053
+ }
1054
+ }
1055
+ }
1056
+ },
1057
+ "/mmws/api/CloudServiceAccounts/{cloudServiceAccountId}":{
1058
+ "put":{
1059
+ "tags": [
1060
+ "CloudServiceAccount"
1061
+ ],
1062
+ "summary": "Update Cloud Service Account",
1063
+ "description": "Update Cloud Service Account",
1064
+ "operationId": "updateCloudServiceAccount",
1065
+ "parameters":[
1066
+ {
1067
+ "name": "cloudServiceAccountId",
1068
+ "in": "path",
1069
+ "description": "id of the Cloud Service Account to update",
1070
+ "required": true,
1071
+ "schema":{
1072
+ "type": "string"
1073
+ }
1074
+ }
1075
+ ],
1076
+ "requestBody": {
1077
+ "description": "Cloud Service Account",
1078
+ "content": {
1079
+ "application/json": {
1080
+ "schema": {
1081
+ "title": "cloudServiceAccount",
1082
+ "type": "object"
1083
+ }
1084
+ }
1085
+ },
1086
+ "required": true
1087
+ },
1088
+ "responses": {
1089
+ "200": {
1090
+ "description": "successful response",
1091
+ "content": {
1092
+ "application/json": {
1093
+ "schema": {
1094
+ "type": "object"
1095
+ }
1096
+ }
1097
+ }
1098
+ }
1099
+ }
1100
+ },
1101
+ "get":{
1102
+ "tags": [
1103
+ "CloudServiceAccount"
1104
+ ],
1105
+ "summary": "Get Cloud Service Account By Id",
1106
+ "description": "Get Cloud Service Account By Id",
1107
+ "operationId": "getCloudServiceAccountById",
1108
+ "parameters":[
1109
+ {
1110
+ "name": "cloudServiceAccountId",
1111
+ "in": "path",
1112
+ "description": "id of the Cloud Service Account to get",
1113
+ "required": true,
1114
+ "schema":{
1115
+ "type": "string"
1116
+ }
1117
+ }
1118
+ ],
1119
+ "responses": {
1120
+ "200": {
1121
+ "description": "successful response",
1122
+ "content": {
1123
+ "application/json": {
1124
+ "schema": {
1125
+ "type": "object"
1126
+ }
1127
+ }
1128
+ }
1129
+ }
1130
+ }
1131
+ },
1132
+ "delete":{
1133
+ "tags": [
1134
+ "CloudServiceAccount"
1135
+ ],
1136
+ "summary": "Delete Cloud Service Account",
1137
+ "description": "Delete Cloud Service Account",
1138
+ "operationId": "deleteCloudServiceAccount",
1139
+ "parameters":[
1140
+ {
1141
+ "name": "cloudServiceAccountId",
1142
+ "in": "path",
1143
+ "description": "id of the Cloud Service Account to delete",
1144
+ "required": true,
1145
+ "schema":{
1146
+ "type": "string"
1147
+ }
1148
+ }
1149
+ ],
1150
+ "responses": {
1151
+ "200": {
1152
+ "description": "successful response",
1153
+ "content": {
1154
+ "application/json": {
1155
+ "schema": {
1156
+ "type": "object"
1157
+ }
1158
+ }
1159
+ }
1160
+ }
1161
+ }
1162
+ }
1163
+ },
1164
+ "/mmws/api/Devices": {
1165
+ "post": {
1166
+ "tags": [
1167
+ "Device"
1168
+ ],
1169
+ "summary": "Create Device",
1170
+ "description": "Create Device",
1171
+ "operationId": "createDevice",
1172
+ "parameters": [],
1173
+ "requestBody": {
1174
+ "description": "Device",
1175
+ "content": {
1176
+ "application/json": {
1177
+ "schema": {
1178
+ "title": "device",
1179
+ "type": "object"
1180
+ }
1181
+ }
1182
+ },
1183
+ "required": true
1184
+ },
1185
+ "responses": {
1186
+ "200": {
1187
+ "description": "successful response",
1188
+ "content": {
1189
+ "application/json": {
1190
+ "schema": {
1191
+ "type": "object"
1192
+ }
1193
+ }
1194
+ }
1195
+ }
1196
+ }
1197
+ },
1198
+ "get": {
1199
+ "tags": [
1200
+ "Device"
1201
+ ],
1202
+ "summary": "Devices",
1203
+ "description": "Devices",
1204
+ "operationId": "getDevices",
1205
+ "parameters": [],
1206
+ "responses": {
1207
+ "200": {
1208
+ "description": "successful response",
1209
+ "content": {
1210
+ "application/json": {
1211
+ "schema": {
1212
+ "type": "object"
1213
+ }
1214
+ }
1215
+ }
1216
+ }
1217
+ }
1218
+ }
1219
+ },
1220
+ "/mmws/api/Devices/{deviceId}":{
1221
+ "put":{
1222
+ "tags": [
1223
+ "Device"
1224
+ ],
1225
+ "summary": "Update Device",
1226
+ "description": "Update Device",
1227
+ "operationId": "updateDevice",
1228
+ "parameters":[
1229
+ {
1230
+ "name": "deviceId",
1231
+ "in": "path",
1232
+ "description": "id of the Device to update",
1233
+ "required": true,
1234
+ "schema":{
1235
+ "type": "string"
1236
+ }
1237
+ }
1238
+ ],
1239
+ "requestBody": {
1240
+ "description": "Device",
1241
+ "content": {
1242
+ "application/json": {
1243
+ "schema": {
1244
+ "title": "device",
1245
+ "type": "object"
1246
+ }
1247
+ }
1248
+ },
1249
+ "required": true
1250
+ },
1251
+ "responses": {
1252
+ "200": {
1253
+ "description": "successful response",
1254
+ "content": {
1255
+ "application/json": {
1256
+ "schema": {
1257
+ "type": "object"
1258
+ }
1259
+ }
1260
+ }
1261
+ }
1262
+ }
1263
+ },
1264
+ "get":{
1265
+ "tags": [
1266
+ "Device"
1267
+ ],
1268
+ "summary": "Get Device By Id",
1269
+ "description": "Get Device By Id",
1270
+ "operationId": "getDeviceById",
1271
+ "parameters":[
1272
+ {
1273
+ "name": "deviceId",
1274
+ "in": "path",
1275
+ "description": "id of the Device to get",
1276
+ "required": true,
1277
+ "schema":{
1278
+ "type": "string"
1279
+ }
1280
+ }
1281
+ ],
1282
+ "responses": {
1283
+ "200": {
1284
+ "description": "successful response",
1285
+ "content": {
1286
+ "application/json": {
1287
+ "schema": {
1288
+ "type": "object"
1289
+ }
1290
+ }
1291
+ }
1292
+ }
1293
+ }
1294
+ },
1295
+ "delete":{
1296
+ "tags": [
1297
+ "Device"
1298
+ ],
1299
+ "summary": "Delete Device",
1300
+ "description": "Delete Device",
1301
+ "operationId": "deleteDevice",
1302
+ "parameters":[
1303
+ {
1304
+ "name": "deviceId",
1305
+ "in": "path",
1306
+ "description": "id of the Device to delete",
1307
+ "required": true,
1308
+ "schema":{
1309
+ "type": "string"
1310
+ }
1311
+ }
1312
+ ],
1313
+ "responses": {
1314
+ "200": {
1315
+ "description": "successful response",
1316
+ "content": {
1317
+ "application/json": {
1318
+ "schema": {
1319
+ "type": "object"
1320
+ }
1321
+ }
1322
+ }
1323
+ }
1324
+ }
1325
+ }
1326
+ },
1327
+ "/mmws/api/DHCPAddressPools": {
1328
+ "post": {
1329
+ "tags": [
1330
+ "DHCPAddressPool"
1331
+ ],
1332
+ "summary": "Create DHCP Address Pool",
1333
+ "description": "Create DHCP Address Pool",
1334
+ "operationId": "createDHCPAddressPool",
1335
+ "parameters": [],
1336
+ "requestBody": {
1337
+ "description": "DHCP Address Pool",
1338
+ "content": {
1339
+ "application/json": {
1340
+ "schema": {
1341
+ "title": "dhcpAddressPool",
1342
+ "type": "object"
1343
+ }
1344
+ }
1345
+ },
1346
+ "required": true
1347
+ },
1348
+ "responses": {
1349
+ "200": {
1350
+ "description": "successful response",
1351
+ "content": {
1352
+ "application/json": {
1353
+ "schema": {
1354
+ "type": "object"
1355
+ }
1356
+ }
1357
+ }
1358
+ }
1359
+ }
1360
+ },
1361
+ "get": {
1362
+ "tags": [
1363
+ "DHCPAddressPool"
1364
+ ],
1365
+ "summary": "DHCP Address Pools",
1366
+ "description": "DHCP Address Pools",
1367
+ "operationId": "getDHCPAddressPools",
1368
+ "parameters": [],
1369
+ "responses": {
1370
+ "200": {
1371
+ "description": "successful response",
1372
+ "content": {
1373
+ "application/json": {
1374
+ "schema": {
1375
+ "type": "object"
1376
+ }
1377
+ }
1378
+ }
1379
+ }
1380
+ }
1381
+ }
1382
+ },
1383
+ "/mmws/api/DHCPAddressPools/{dhcpAddressPoolId}":{
1384
+ "put":{
1385
+ "tags": [
1386
+ "DHCPAddressPool"
1387
+ ],
1388
+ "summary": "Update DHCP Address Pool",
1389
+ "description": "Update DHCP Address Pool",
1390
+ "operationId": "updateDHCPAddressPool",
1391
+ "parameters":[
1392
+ {
1393
+ "name": "dhcpAddressPoolId",
1394
+ "in": "path",
1395
+ "description": "id of the DHCP Address Pool to update",
1396
+ "required": true,
1397
+ "schema":{
1398
+ "type": "string"
1399
+ }
1400
+ }
1401
+ ],
1402
+ "requestBody": {
1403
+ "description": "DHCP Address Pool",
1404
+ "content": {
1405
+ "application/json": {
1406
+ "schema": {
1407
+ "title": "dhcpAddressPool",
1408
+ "type": "object"
1409
+ }
1410
+ }
1411
+ },
1412
+ "required": true
1413
+ },
1414
+ "responses": {
1415
+ "200": {
1416
+ "description": "successful response",
1417
+ "content": {
1418
+ "application/json": {
1419
+ "schema": {
1420
+ "type": "object"
1421
+ }
1422
+ }
1423
+ }
1424
+ }
1425
+ }
1426
+ },
1427
+ "get":{
1428
+ "tags": [
1429
+ "DHCPAddressPool"
1430
+ ],
1431
+ "summary": "Get DHCP Address Pool By Id",
1432
+ "description": "Get DHCP Address Pool By Id",
1433
+ "operationId": "getDHCPAddressPoolById",
1434
+ "parameters":[
1435
+ {
1436
+ "name": "dhcpAddressPoolId",
1437
+ "in": "path",
1438
+ "description": "id of the DHCP Address Pool to get",
1439
+ "required": true,
1440
+ "schema":{
1441
+ "type": "string"
1442
+ }
1443
+ }
1444
+ ],
1445
+ "responses": {
1446
+ "200": {
1447
+ "description": "successful response",
1448
+ "content": {
1449
+ "application/json": {
1450
+ "schema": {
1451
+ "type": "object"
1452
+ }
1453
+ }
1454
+ }
1455
+ }
1456
+ }
1457
+ },
1458
+ "delete":{
1459
+ "tags": [
1460
+ "DHCPAddressPool"
1461
+ ],
1462
+ "summary": "Delete DHCP Address Pool",
1463
+ "description": "Delete DHCP Address Pool",
1464
+ "operationId": "deleteDHCPAddressPool",
1465
+ "parameters":[
1466
+ {
1467
+ "name": "dhcpAddressPoolId",
1468
+ "in": "path",
1469
+ "description": "id of the DHCP Address Pool to delete",
1470
+ "required": true,
1471
+ "schema":{
1472
+ "type": "string"
1473
+ }
1474
+ }
1475
+ ],
1476
+ "responses": {
1477
+ "200": {
1478
+ "description": "successful response",
1479
+ "content": {
1480
+ "application/json": {
1481
+ "schema": {
1482
+ "type": "object"
1483
+ }
1484
+ }
1485
+ }
1486
+ }
1487
+ }
1488
+ }
1489
+ },
1490
+ "/mmws/api/DHCPExclusions": {
1491
+ "post": {
1492
+ "tags": [
1493
+ "DHCPExclusion"
1494
+ ],
1495
+ "summary": "Create DHCP Exclusion",
1496
+ "description": "Create DHCP Exclusion",
1497
+ "operationId": "createDHCPExclusion",
1498
+ "parameters": [],
1499
+ "requestBody": {
1500
+ "description": "DHCP Exclusion",
1501
+ "content": {
1502
+ "application/json": {
1503
+ "schema": {
1504
+ "title": "dhcpExclusion",
1505
+ "type": "object"
1506
+ }
1507
+ }
1508
+ },
1509
+ "required": true
1510
+ },
1511
+ "responses": {
1512
+ "200": {
1513
+ "description": "successful response",
1514
+ "content": {
1515
+ "application/json": {
1516
+ "schema": {
1517
+ "type": "object"
1518
+ }
1519
+ }
1520
+ }
1521
+ }
1522
+ }
1523
+ },
1524
+ "get": {
1525
+ "tags": [
1526
+ "DHCPExclusion"
1527
+ ],
1528
+ "summary": "DHCP Exclusions",
1529
+ "description": "DHCP Exclusions",
1530
+ "operationId": "getDHCPExclusions",
1531
+ "parameters": [],
1532
+ "responses": {
1533
+ "200": {
1534
+ "description": "successful response",
1535
+ "content": {
1536
+ "application/json": {
1537
+ "schema": {
1538
+ "type": "object"
1539
+ }
1540
+ }
1541
+ }
1542
+ }
1543
+ }
1544
+ }
1545
+ },
1546
+ "/mmws/api/DHCPExclusions/{dhcpExclusionId}":{
1547
+ "put":{
1548
+ "tags": [
1549
+ "DHCPExclusion"
1550
+ ],
1551
+ "summary": "Update DHCP Exclusion",
1552
+ "description": "Update DHCP Exclusion",
1553
+ "operationId": "updateDHCPExclusion",
1554
+ "parameters":[
1555
+ {
1556
+ "name": "dhcpExclusionId",
1557
+ "in": "path",
1558
+ "description": "id of the DHCP Exclusion to update",
1559
+ "required": true,
1560
+ "schema":{
1561
+ "type": "string"
1562
+ }
1563
+ }
1564
+ ],
1565
+ "requestBody": {
1566
+ "description": "DHCP Exclusion",
1567
+ "content": {
1568
+ "application/json": {
1569
+ "schema": {
1570
+ "title": "dhcpExclusion",
1571
+ "type": "object"
1572
+ }
1573
+ }
1574
+ },
1575
+ "required": true
1576
+ },
1577
+ "responses": {
1578
+ "200": {
1579
+ "description": "successful response",
1580
+ "content": {
1581
+ "application/json": {
1582
+ "schema": {
1583
+ "type": "object"
1584
+ }
1585
+ }
1586
+ }
1587
+ }
1588
+ }
1589
+ },
1590
+ "get":{
1591
+ "tags": [
1592
+ "DHCPExclusion"
1593
+ ],
1594
+ "summary": "Get DHCP Exclusion By Id",
1595
+ "description": "Get DHCP Exclusion By Id",
1596
+ "operationId": "getDHCPExclusionById",
1597
+ "parameters":[
1598
+ {
1599
+ "name": "dhcpExclusionId",
1600
+ "in": "path",
1601
+ "description": "id of the DHCP Exclusion to get",
1602
+ "required": true,
1603
+ "schema":{
1604
+ "type": "string"
1605
+ }
1606
+ }
1607
+ ],
1608
+ "responses": {
1609
+ "200": {
1610
+ "description": "successful response",
1611
+ "content": {
1612
+ "application/json": {
1613
+ "schema": {
1614
+ "type": "object"
1615
+ }
1616
+ }
1617
+ }
1618
+ }
1619
+ }
1620
+ },
1621
+ "delete":{
1622
+ "tags": [
1623
+ "DHCPExclusion"
1624
+ ],
1625
+ "summary": "Delete DHCP Exclusion",
1626
+ "description": "Delete DHCP Exclusion",
1627
+ "operationId": "deleteDHCPExclusion",
1628
+ "parameters":[
1629
+ {
1630
+ "name": "dhcpExclusionId",
1631
+ "in": "path",
1632
+ "description": "id of the DHCP Exclusion to delete",
1633
+ "required": true,
1634
+ "schema":{
1635
+ "type": "string"
1636
+ }
1637
+ }
1638
+ ],
1639
+ "responses": {
1640
+ "200": {
1641
+ "description": "successful response",
1642
+ "content": {
1643
+ "application/json": {
1644
+ "schema": {
1645
+ "type": "object"
1646
+ }
1647
+ }
1648
+ }
1649
+ }
1650
+ }
1651
+ }
1652
+ },
1653
+ "/mmws/api/DHCPGroups": {
1654
+ "post": {
1655
+ "tags": [
1656
+ "DHCPGroup"
1657
+ ],
1658
+ "summary": "Create DHCP Group",
1659
+ "description": "Create DHCP Group",
1660
+ "operationId": "createDHCPGroup",
1661
+ "parameters": [],
1662
+ "requestBody": {
1663
+ "description": "DHCP Group",
1664
+ "content": {
1665
+ "application/json": {
1666
+ "schema": {
1667
+ "title": "dhcpGroup",
1668
+ "type": "object"
1669
+ }
1670
+ }
1671
+ },
1672
+ "required": true
1673
+ },
1674
+ "responses": {
1675
+ "200": {
1676
+ "description": "successful response",
1677
+ "content": {
1678
+ "application/json": {
1679
+ "schema": {
1680
+ "type": "object"
1681
+ }
1682
+ }
1683
+ }
1684
+ }
1685
+ }
1686
+ },
1687
+ "get": {
1688
+ "tags": [
1689
+ "DHCPGroup"
1690
+ ],
1691
+ "summary": "DHCP Groups",
1692
+ "description": "DHCP Groups",
1693
+ "operationId": "getDHCPGroups",
1694
+ "parameters": [],
1695
+ "responses": {
1696
+ "200": {
1697
+ "description": "successful response",
1698
+ "content": {
1699
+ "application/json": {
1700
+ "schema": {
1701
+ "type": "object"
1702
+ }
1703
+ }
1704
+ }
1705
+ }
1706
+ }
1707
+ }
1708
+ },
1709
+ "/mmws/api/DHCPGroups/{dhcpGroupId}":{
1710
+ "put":{
1711
+ "tags": [
1712
+ "DHCPGroup"
1713
+ ],
1714
+ "summary": "Update DHCP Group",
1715
+ "description": "Update DHCP Group",
1716
+ "operationId": "updateDHCPGroup",
1717
+ "parameters":[
1718
+ {
1719
+ "name": "dhcpGroupId",
1720
+ "in": "path",
1721
+ "description": "id of the DHCP Group to update",
1722
+ "required": true,
1723
+ "schema":{
1724
+ "type": "string"
1725
+ }
1726
+ }
1727
+ ],
1728
+ "requestBody": {
1729
+ "description": "DHCP Group",
1730
+ "content": {
1731
+ "application/json": {
1732
+ "schema": {
1733
+ "title": "dhcpGroup",
1734
+ "type": "object"
1735
+ }
1736
+ }
1737
+ },
1738
+ "required": true
1739
+ },
1740
+ "responses": {
1741
+ "200": {
1742
+ "description": "successful response",
1743
+ "content": {
1744
+ "application/json": {
1745
+ "schema": {
1746
+ "type": "object"
1747
+ }
1748
+ }
1749
+ }
1750
+ }
1751
+ }
1752
+ },
1753
+ "get":{
1754
+ "tags": [
1755
+ "DHCPGroup"
1756
+ ],
1757
+ "summary": "Get DHCP Group By Id",
1758
+ "description": "Get DHCP Group By Id",
1759
+ "operationId": "getDHCPGroupById",
1760
+ "parameters":[
1761
+ {
1762
+ "name": "dhcpGroupId",
1763
+ "in": "path",
1764
+ "description": "id of the DHCP Group to get",
1765
+ "required": true,
1766
+ "schema":{
1767
+ "type": "string"
1768
+ }
1769
+ }
1770
+ ],
1771
+ "responses": {
1772
+ "200": {
1773
+ "description": "successful response",
1774
+ "content": {
1775
+ "application/json": {
1776
+ "schema": {
1777
+ "type": "object"
1778
+ }
1779
+ }
1780
+ }
1781
+ }
1782
+ }
1783
+ },
1784
+ "delete":{
1785
+ "tags": [
1786
+ "DHCPGroup"
1787
+ ],
1788
+ "summary": "Delete DHCP Group",
1789
+ "description": "Delete DHCP Group",
1790
+ "operationId": "deleteDHCPGroup",
1791
+ "parameters":[
1792
+ {
1793
+ "name": "dhcpGroupId",
1794
+ "in": "path",
1795
+ "description": "id of the DHCP Group to delete",
1796
+ "required": true,
1797
+ "schema":{
1798
+ "type": "string"
1799
+ }
1800
+ }
1801
+ ],
1802
+ "responses": {
1803
+ "200": {
1804
+ "description": "successful response",
1805
+ "content": {
1806
+ "application/json": {
1807
+ "schema": {
1808
+ "type": "object"
1809
+ }
1810
+ }
1811
+ }
1812
+ }
1813
+ }
1814
+ }
1815
+ },
1816
+ "/mmws/api/DHCPReservations": {
1817
+ "post": {
1818
+ "tags": [
1819
+ "DHCPReservation"
1820
+ ],
1821
+ "summary": "Create DHCP Reservation",
1822
+ "description": "Create DHCP Reservation",
1823
+ "operationId": "createDHCPReservation",
1824
+ "parameters": [],
1825
+ "requestBody": {
1826
+ "description": "DHCP Reservation",
1827
+ "content": {
1828
+ "application/json": {
1829
+ "schema": {
1830
+ "title": "dhcpReservation",
1831
+ "type": "object"
1832
+ }
1833
+ }
1834
+ },
1835
+ "required": true
1836
+ },
1837
+ "responses": {
1838
+ "200": {
1839
+ "description": "successful response",
1840
+ "content": {
1841
+ "application/json": {
1842
+ "schema": {
1843
+ "type": "object"
1844
+ }
1845
+ }
1846
+ }
1847
+ }
1848
+ }
1849
+ },
1850
+ "get": {
1851
+ "tags": [
1852
+ "DHCPReservation"
1853
+ ],
1854
+ "summary": "DHCP Reservations",
1855
+ "description": "DHCP Reservations",
1856
+ "operationId": "getDHCPReservations",
1857
+ "parameters": [],
1858
+ "responses": {
1859
+ "200": {
1860
+ "description": "successful response",
1861
+ "content": {
1862
+ "application/json": {
1863
+ "schema": {
1864
+ "type": "object"
1865
+ }
1866
+ }
1867
+ }
1868
+ }
1869
+ }
1870
+ }
1871
+ },
1872
+ "/mmws/api/DHCPReservations/{dhcpReservationId}":{
1873
+ "put":{
1874
+ "tags": [
1875
+ "DHCPReservation"
1876
+ ],
1877
+ "summary": "Update DHCP Reservation",
1878
+ "description": "Update DHCP Reservation",
1879
+ "operationId": "updateDHCPReservation",
1880
+ "parameters":[
1881
+ {
1882
+ "name": "dhcpReservationId",
1883
+ "in": "path",
1884
+ "description": "id of the DHCP Reservation to update",
1885
+ "required": true,
1886
+ "schema":{
1887
+ "type": "string"
1888
+ }
1889
+ }
1890
+ ],
1891
+ "requestBody": {
1892
+ "description": "DHCP Reservation",
1893
+ "content": {
1894
+ "application/json": {
1895
+ "schema": {
1896
+ "title": "dhcpReservation",
1897
+ "type": "object"
1898
+ }
1899
+ }
1900
+ },
1901
+ "required": true
1902
+ },
1903
+ "responses": {
1904
+ "200": {
1905
+ "description": "successful response",
1906
+ "content": {
1907
+ "application/json": {
1908
+ "schema": {
1909
+ "type": "object"
1910
+ }
1911
+ }
1912
+ }
1913
+ }
1914
+ }
1915
+ },
1916
+ "get":{
1917
+ "tags": [
1918
+ "DHCPReservation"
1919
+ ],
1920
+ "summary": "Get DHCP Reservation By Id",
1921
+ "description": "Get DHCP Reservation By Id",
1922
+ "operationId": "getDHCPReservationById",
1923
+ "parameters":[
1924
+ {
1925
+ "name": "dhcpReservationId",
1926
+ "in": "path",
1927
+ "description": "id of the DHCP Reservation to get",
1928
+ "required": true,
1929
+ "schema":{
1930
+ "type": "string"
1931
+ }
1932
+ }
1933
+ ],
1934
+ "responses": {
1935
+ "200": {
1936
+ "description": "successful response",
1937
+ "content": {
1938
+ "application/json": {
1939
+ "schema": {
1940
+ "type": "object"
1941
+ }
1942
+ }
1943
+ }
1944
+ }
1945
+ }
1946
+ },
1947
+ "delete":{
1948
+ "tags": [
1949
+ "DHCPReservation"
1950
+ ],
1951
+ "summary": "Delete DHCP Reservation",
1952
+ "description": "Delete DHCP Reservation",
1953
+ "operationId": "deleteDHCPReservation",
1954
+ "parameters":[
1955
+ {
1956
+ "name": "dhcpReservationId",
1957
+ "in": "path",
1958
+ "description": "id of the DHCP Reservation to delete",
1959
+ "required": true,
1960
+ "schema":{
1961
+ "type": "string"
1962
+ }
1963
+ }
1964
+ ],
1965
+ "responses": {
1966
+ "200": {
1967
+ "description": "successful response",
1968
+ "content": {
1969
+ "application/json": {
1970
+ "schema": {
1971
+ "type": "object"
1972
+ }
1973
+ }
1974
+ }
1975
+ }
1976
+ }
1977
+ }
1978
+ },
1979
+ "/mmws/api/DHCPScopes": {
1980
+ "post": {
1981
+ "tags": [
1982
+ "DHCPScope"
1983
+ ],
1984
+ "summary": "Create DHCP Scope",
1985
+ "description": "Create DHCP Scope",
1986
+ "operationId": "createDHCPScope",
1987
+ "parameters": [],
1988
+ "requestBody": {
1989
+ "description": "DHCP Scope",
1990
+ "content": {
1991
+ "application/json": {
1992
+ "schema": {
1993
+ "title": "dhcpScope",
1994
+ "type": "object"
1995
+ }
1996
+ }
1997
+ },
1998
+ "required": true
1999
+ },
2000
+ "responses": {
2001
+ "200": {
2002
+ "description": "successful response",
2003
+ "content": {
2004
+ "application/json": {
2005
+ "schema": {
2006
+ "type": "object"
2007
+ }
2008
+ }
2009
+ }
2010
+ }
2011
+ }
2012
+ },
2013
+ "get": {
2014
+ "tags": [
2015
+ "DHCPScope"
2016
+ ],
2017
+ "summary": "DHCP Scopes",
2018
+ "description": "DHCP Scopes",
2019
+ "operationId": "getDHCPScopes",
2020
+ "parameters": [],
2021
+ "responses": {
2022
+ "200": {
2023
+ "description": "successful response",
2024
+ "content": {
2025
+ "application/json": {
2026
+ "schema": {
2027
+ "type": "object"
2028
+ }
2029
+ }
2030
+ }
2031
+ }
2032
+ }
2033
+ }
2034
+ },
2035
+ "/mmws/api/DHCPScopes/{dhcpScopeId}":{
2036
+ "put":{
2037
+ "tags": [
2038
+ "DHCPScope"
2039
+ ],
2040
+ "summary": "Update DHCP Scope",
2041
+ "description": "Update DHCP Scope",
2042
+ "operationId": "updateDHCPScope",
2043
+ "parameters":[
2044
+ {
2045
+ "name": "dhcpScopeId",
2046
+ "in": "path",
2047
+ "description": "id of the DHCP Scope to update",
2048
+ "required": true,
2049
+ "schema":{
2050
+ "type": "string"
2051
+ }
2052
+ }
2053
+ ],
2054
+ "requestBody": {
2055
+ "description": "DHCP Scope",
2056
+ "content": {
2057
+ "application/json": {
2058
+ "schema": {
2059
+ "title": "dhcpScope",
2060
+ "type": "object"
2061
+ }
2062
+ }
2063
+ },
2064
+ "required": true
2065
+ },
2066
+ "responses": {
2067
+ "200": {
2068
+ "description": "successful response",
2069
+ "content": {
2070
+ "application/json": {
2071
+ "schema": {
2072
+ "type": "object"
2073
+ }
2074
+ }
2075
+ }
2076
+ }
2077
+ }
2078
+ },
2079
+ "get":{
2080
+ "tags": [
2081
+ "DHCPScope"
2082
+ ],
2083
+ "summary": "Get DHCP Scope By Id",
2084
+ "description": "Get DHCP Scope By Id",
2085
+ "operationId": "getDHCPScopeById",
2086
+ "parameters":[
2087
+ {
2088
+ "name": "dhcpScopeId",
2089
+ "in": "path",
2090
+ "description": "id of the DHCP Scope to get",
2091
+ "required": true,
2092
+ "schema":{
2093
+ "type": "string"
2094
+ }
2095
+ }
2096
+ ],
2097
+ "responses": {
2098
+ "200": {
2099
+ "description": "successful response",
2100
+ "content": {
2101
+ "application/json": {
2102
+ "schema": {
2103
+ "type": "object"
2104
+ }
2105
+ }
2106
+ }
2107
+ }
2108
+ }
2109
+ },
2110
+ "delete":{
2111
+ "tags": [
2112
+ "DHCPScope"
2113
+ ],
2114
+ "summary": "Delete DHCP Scope",
2115
+ "description": "Delete DHCP Scope",
2116
+ "operationId": "deleteDHCPScope",
2117
+ "parameters":[
2118
+ {
2119
+ "name": "dhcpScopeId",
2120
+ "in": "path",
2121
+ "description": "id of the DHCP Scope to delete",
2122
+ "required": true,
2123
+ "schema":{
2124
+ "type": "string"
2125
+ }
2126
+ }
2127
+ ],
2128
+ "responses": {
2129
+ "200": {
2130
+ "description": "successful response",
2131
+ "content": {
2132
+ "application/json": {
2133
+ "schema": {
2134
+ "type": "object"
2135
+ }
2136
+ }
2137
+ }
2138
+ }
2139
+ }
2140
+ }
2141
+ },
2142
+ "/mmws/api/DHCPServers": {
2143
+ "post": {
2144
+ "tags": [
2145
+ "DHCPServer"
2146
+ ],
2147
+ "summary": "Create DHCP Server",
2148
+ "description": "Create DHCP Server",
2149
+ "operationId": "createDHCPServer",
2150
+ "parameters": [],
2151
+ "requestBody": {
2152
+ "description": "DHCP Server",
2153
+ "content": {
2154
+ "application/json": {
2155
+ "schema": {
2156
+ "title": "dhcpServer",
2157
+ "type": "object"
2158
+ }
2159
+ }
2160
+ },
2161
+ "required": true
2162
+ },
2163
+ "responses": {
2164
+ "200": {
2165
+ "description": "successful response",
2166
+ "content": {
2167
+ "application/json": {
2168
+ "schema": {
2169
+ "type": "object"
2170
+ }
2171
+ }
2172
+ }
2173
+ }
2174
+ }
2175
+ },
2176
+ "get": {
2177
+ "tags": [
2178
+ "DHCPServer"
2179
+ ],
2180
+ "summary": "DHCP Servers",
2181
+ "description": "DHCP Servers",
2182
+ "operationId": "getDHCPServers",
2183
+ "parameters": [],
2184
+ "responses": {
2185
+ "200": {
2186
+ "description": "successful response",
2187
+ "content": {
2188
+ "application/json": {
2189
+ "schema": {
2190
+ "type": "object"
2191
+ }
2192
+ }
2193
+ }
2194
+ }
2195
+ }
2196
+ }
2197
+ },
2198
+ "/mmws/api/DHCPServers/{dhcpServerId}":{
2199
+ "put":{
2200
+ "tags": [
2201
+ "DHCPServer"
2202
+ ],
2203
+ "summary": "Update DHCP Server",
2204
+ "description": "Update DHCP Server",
2205
+ "operationId": "updateDHCPServer",
2206
+ "parameters":[
2207
+ {
2208
+ "name": "dhcpServerId",
2209
+ "in": "path",
2210
+ "description": "id of the DHCP Server to update",
2211
+ "required": true,
2212
+ "schema":{
2213
+ "type": "string"
2214
+ }
2215
+ }
2216
+ ],
2217
+ "requestBody": {
2218
+ "description": "DHCP Server",
2219
+ "content": {
2220
+ "application/json": {
2221
+ "schema": {
2222
+ "title": "dhcpServer",
2223
+ "type": "object"
2224
+ }
2225
+ }
2226
+ },
2227
+ "required": true
2228
+ },
2229
+ "responses": {
2230
+ "200": {
2231
+ "description": "successful response",
2232
+ "content": {
2233
+ "application/json": {
2234
+ "schema": {
2235
+ "type": "object"
2236
+ }
2237
+ }
2238
+ }
2239
+ }
2240
+ }
2241
+ },
2242
+ "get":{
2243
+ "tags": [
2244
+ "DHCPServer"
2245
+ ],
2246
+ "summary": "Get DHCP Server By Id",
2247
+ "description": "Get DHCP Server By Id",
2248
+ "operationId": "getDHCPServerById",
2249
+ "parameters":[
2250
+ {
2251
+ "name": "dhcpServerId",
2252
+ "in": "path",
2253
+ "description": "id of the DHCP Server to get",
2254
+ "required": true,
2255
+ "schema":{
2256
+ "type": "string"
2257
+ }
2258
+ }
2259
+ ],
2260
+ "responses": {
2261
+ "200": {
2262
+ "description": "successful response",
2263
+ "content": {
2264
+ "application/json": {
2265
+ "schema": {
2266
+ "type": "object"
2267
+ }
2268
+ }
2269
+ }
2270
+ }
2271
+ }
2272
+ },
2273
+ "delete":{
2274
+ "tags": [
2275
+ "DHCPServer"
2276
+ ],
2277
+ "summary": "Delete DHCP Server",
2278
+ "description": "Delete DHCP Server",
2279
+ "operationId": "deleteDHCPServer",
2280
+ "parameters":[
2281
+ {
2282
+ "name": "dhcpServerId",
2283
+ "in": "path",
2284
+ "description": "id of the DHCP Server to delete",
2285
+ "required": true,
2286
+ "schema":{
2287
+ "type": "string"
2288
+ }
2289
+ }
2290
+ ],
2291
+ "responses": {
2292
+ "200": {
2293
+ "description": "successful response",
2294
+ "content": {
2295
+ "application/json": {
2296
+ "schema": {
2297
+ "type": "object"
2298
+ }
2299
+ }
2300
+ }
2301
+ }
2302
+ }
2303
+ }
2304
+ },
2305
+ "/mmws/api/DNSRecords": {
2306
+ "post": {
2307
+ "tags": [
2308
+ "DNSRecord"
2309
+ ],
2310
+ "summary": "Create DNS Record",
2311
+ "description": "Create DNS Record",
2312
+ "operationId": "createDNSRecord",
2313
+ "parameters": [],
2314
+ "requestBody": {
2315
+ "description": "DNS Record",
2316
+ "content": {
2317
+ "application/json": {
2318
+ "schema": {
2319
+ "title": "dnsRecord",
2320
+ "type": "object"
2321
+ }
2322
+ }
2323
+ },
2324
+ "required": true
2325
+ },
2326
+ "responses": {
2327
+ "200": {
2328
+ "description": "successful response",
2329
+ "content": {
2330
+ "application/json": {
2331
+ "schema": {
2332
+ "type": "object"
2333
+ }
2334
+ }
2335
+ }
2336
+ }
2337
+ }
2338
+ },
2339
+ "get": {
2340
+ "tags": [
2341
+ "DNSRecord"
2342
+ ],
2343
+ "summary": "DNS Records",
2344
+ "description": "DNS Records",
2345
+ "operationId": "getDNSRecords",
2346
+ "parameters": [],
2347
+ "responses": {
2348
+ "200": {
2349
+ "description": "successful response",
2350
+ "content": {
2351
+ "application/json": {
2352
+ "schema": {
2353
+ "type": "object"
2354
+ }
2355
+ }
2356
+ }
2357
+ }
2358
+ }
2359
+ }
2360
+ },
2361
+ "/mmws/api/DNSRecords/{dnsRecordId}":{
2362
+ "put":{
2363
+ "tags": [
2364
+ "DNSRecord"
2365
+ ],
2366
+ "summary": "Update DNS Record",
2367
+ "description": "Update DNS Record",
2368
+ "operationId": "updateDNSRecord",
2369
+ "parameters":[
2370
+ {
2371
+ "name": "dnsRecordId",
2372
+ "in": "path",
2373
+ "description": "id of the DNS Record to update",
2374
+ "required": true,
2375
+ "schema":{
2376
+ "type": "string"
2377
+ }
2378
+ }
2379
+ ],
2380
+ "requestBody": {
2381
+ "description": "DNS Record",
2382
+ "content": {
2383
+ "application/json": {
2384
+ "schema": {
2385
+ "title": "dnsRecord",
2386
+ "type": "object"
2387
+ }
2388
+ }
2389
+ },
2390
+ "required": true
2391
+ },
2392
+ "responses": {
2393
+ "200": {
2394
+ "description": "successful response",
2395
+ "content": {
2396
+ "application/json": {
2397
+ "schema": {
2398
+ "type": "object"
2399
+ }
2400
+ }
2401
+ }
2402
+ }
2403
+ }
2404
+ },
2405
+ "get":{
2406
+ "tags": [
2407
+ "DNSRecord"
2408
+ ],
2409
+ "summary": "Get DNS Record By Id",
2410
+ "description": "Get DNS Record By Id",
2411
+ "operationId": "getDNSRecordById",
2412
+ "parameters":[
2413
+ {
2414
+ "name": "dnsRecordId",
2415
+ "in": "path",
2416
+ "description": "id of the DNS Record to get",
2417
+ "required": true,
2418
+ "schema":{
2419
+ "type": "string"
2420
+ }
2421
+ }
2422
+ ],
2423
+ "responses": {
2424
+ "200": {
2425
+ "description": "successful response",
2426
+ "content": {
2427
+ "application/json": {
2428
+ "schema": {
2429
+ "type": "object"
2430
+ }
2431
+ }
2432
+ }
2433
+ }
2434
+ }
2435
+ },
2436
+ "delete":{
2437
+ "tags": [
2438
+ "DNSRecord"
2439
+ ],
2440
+ "summary": "Delete DNS Record",
2441
+ "description": "Delete DNS Record",
2442
+ "operationId": "deleteDNSRecord",
2443
+ "parameters":[
2444
+ {
2445
+ "name": "dnsRecordId",
2446
+ "in": "path",
2447
+ "description": "id of the DNS Record to delete",
2448
+ "required": true,
2449
+ "schema":{
2450
+ "type": "string"
2451
+ }
2452
+ }
2453
+ ],
2454
+ "responses": {
2455
+ "200": {
2456
+ "description": "successful response",
2457
+ "content": {
2458
+ "application/json": {
2459
+ "schema": {
2460
+ "type": "object"
2461
+ }
2462
+ }
2463
+ }
2464
+ }
2465
+ }
2466
+ }
2467
+ },
2468
+ "/mmws/api/DNSServers": {
2469
+ "post": {
2470
+ "tags": [
2471
+ "DNSServer"
2472
+ ],
2473
+ "summary": "Create DNS Server",
2474
+ "description": "Create DNS Server",
2475
+ "operationId": "createDNSServer",
2476
+ "parameters": [],
2477
+ "requestBody": {
2478
+ "description": "DNS Server",
2479
+ "content": {
2480
+ "application/json": {
2481
+ "schema": {
2482
+ "title": "dnsServer",
2483
+ "type": "object"
2484
+ }
2485
+ }
2486
+ },
2487
+ "required": true
2488
+ },
2489
+ "responses": {
2490
+ "200": {
2491
+ "description": "successful response",
2492
+ "content": {
2493
+ "application/json": {
2494
+ "schema": {
2495
+ "type": "object"
2496
+ }
2497
+ }
2498
+ }
2499
+ }
2500
+ }
2501
+ },
2502
+ "get": {
2503
+ "tags": [
2504
+ "DNSServer"
2505
+ ],
2506
+ "summary": "DNS Servers",
2507
+ "description": "DNS Servers",
2508
+ "operationId": "getDNSServers",
2509
+ "parameters": [],
2510
+ "responses": {
2511
+ "200": {
2512
+ "description": "successful response",
2513
+ "content": {
2514
+ "application/json": {
2515
+ "schema": {
2516
+ "type": "object"
2517
+ }
2518
+ }
2519
+ }
2520
+ }
2521
+ }
2522
+ }
2523
+ },
2524
+ "/mmws/api/DNSServers/{dnsServerId}":{
2525
+ "put":{
2526
+ "tags": [
2527
+ "DNSServer"
2528
+ ],
2529
+ "summary": "Update DNS Server",
2530
+ "description": "Update DNS Server",
2531
+ "operationId": "updateDNSServer",
2532
+ "parameters":[
2533
+ {
2534
+ "name": "dnsServerId",
2535
+ "in": "path",
2536
+ "description": "id of the DNS Server to update",
2537
+ "required": true,
2538
+ "schema":{
2539
+ "type": "string"
2540
+ }
2541
+ }
2542
+ ],
2543
+ "requestBody": {
2544
+ "description": "DNS Server",
2545
+ "content": {
2546
+ "application/json": {
2547
+ "schema": {
2548
+ "title": "dnsServer",
2549
+ "type": "object"
2550
+ }
2551
+ }
2552
+ },
2553
+ "required": true
2554
+ },
2555
+ "responses": {
2556
+ "200": {
2557
+ "description": "successful response",
2558
+ "content": {
2559
+ "application/json": {
2560
+ "schema": {
2561
+ "type": "object"
2562
+ }
2563
+ }
2564
+ }
2565
+ }
2566
+ }
2567
+ },
2568
+ "get":{
2569
+ "tags": [
2570
+ "DNSServer"
2571
+ ],
2572
+ "summary": "Get DNS Server By Id",
2573
+ "description": "Get DNS Server By Id",
2574
+ "operationId": "getDNSServerById",
2575
+ "parameters":[
2576
+ {
2577
+ "name": "dnsServerId",
2578
+ "in": "path",
2579
+ "description": "id of the DNS Server to get",
2580
+ "required": true,
2581
+ "schema":{
2582
+ "type": "string"
2583
+ }
2584
+ }
2585
+ ],
2586
+ "responses": {
2587
+ "200": {
2588
+ "description": "successful response",
2589
+ "content": {
2590
+ "application/json": {
2591
+ "schema": {
2592
+ "type": "object"
2593
+ }
2594
+ }
2595
+ }
2596
+ }
2597
+ }
2598
+ },
2599
+ "delete":{
2600
+ "tags": [
2601
+ "DNSServer"
2602
+ ],
2603
+ "summary": "Delete DNS Server",
2604
+ "description": "Delete DNS Server",
2605
+ "operationId": "deleteDNSServer",
2606
+ "parameters":[
2607
+ {
2608
+ "name": "dnsServerId",
2609
+ "in": "path",
2610
+ "description": "id of the DNS Server to delete",
2611
+ "required": true,
2612
+ "schema":{
2613
+ "type": "string"
2614
+ }
2615
+ }
2616
+ ],
2617
+ "responses": {
2618
+ "200": {
2619
+ "description": "successful response",
2620
+ "content": {
2621
+ "application/json": {
2622
+ "schema": {
2623
+ "type": "object"
2624
+ }
2625
+ }
2626
+ }
2627
+ }
2628
+ }
2629
+ }
2630
+ },
2631
+ "/mmws/api/DNSViews": {
2632
+ "post": {
2633
+ "tags": [
2634
+ "DNSView"
2635
+ ],
2636
+ "summary": "Create DNS View",
2637
+ "description": "Create DNS View",
2638
+ "operationId": "createDNSView",
2639
+ "parameters": [],
2640
+ "requestBody": {
2641
+ "description": "DNS View",
2642
+ "content": {
2643
+ "application/json": {
2644
+ "schema": {
2645
+ "title": "dnsView",
2646
+ "type": "object"
2647
+ }
2648
+ }
2649
+ },
2650
+ "required": true
2651
+ },
2652
+ "responses": {
2653
+ "200": {
2654
+ "description": "successful response",
2655
+ "content": {
2656
+ "application/json": {
2657
+ "schema": {
2658
+ "type": "object"
2659
+ }
2660
+ }
2661
+ }
2662
+ }
2663
+ }
2664
+ },
2665
+ "get": {
2666
+ "tags": [
2667
+ "DNSView"
2668
+ ],
2669
+ "summary": "DNS Views",
2670
+ "description": "DNS Views",
2671
+ "operationId": "getDNSViews",
2672
+ "parameters": [],
2673
+ "responses": {
2674
+ "200": {
2675
+ "description": "successful response",
2676
+ "content": {
2677
+ "application/json": {
2678
+ "schema": {
2679
+ "type": "object"
2680
+ }
2681
+ }
2682
+ }
2683
+ }
2684
+ }
2685
+ }
2686
+ },
2687
+ "/mmws/api/DNSViews/{dnsViewId}":{
2688
+ "put":{
2689
+ "tags": [
2690
+ "DNSView"
2691
+ ],
2692
+ "summary": "Update DNS View",
2693
+ "description": "Update DNS View",
2694
+ "operationId": "updateDNSView",
2695
+ "parameters":[
2696
+ {
2697
+ "name": "dnsViewId",
2698
+ "in": "path",
2699
+ "description": "id of the DNS View to update",
2700
+ "required": true,
2701
+ "schema":{
2702
+ "type": "string"
2703
+ }
2704
+ }
2705
+ ],
2706
+ "requestBody": {
2707
+ "description": "DNS View",
2708
+ "content": {
2709
+ "application/json": {
2710
+ "schema": {
2711
+ "title": "dnsView",
2712
+ "type": "object"
2713
+ }
2714
+ }
2715
+ },
2716
+ "required": true
2717
+ },
2718
+ "responses": {
2719
+ "200": {
2720
+ "description": "successful response",
2721
+ "content": {
2722
+ "application/json": {
2723
+ "schema": {
2724
+ "type": "object"
2725
+ }
2726
+ }
2727
+ }
2728
+ }
2729
+ }
2730
+ },
2731
+ "get":{
2732
+ "tags": [
2733
+ "DNSView"
2734
+ ],
2735
+ "summary": "Get DNS View By Id",
2736
+ "description": "Get DNS View By Id",
2737
+ "operationId": "getDNSViewById",
2738
+ "parameters":[
2739
+ {
2740
+ "name": "dnsViewId",
2741
+ "in": "path",
2742
+ "description": "id of the DNS View to get",
2743
+ "required": true,
2744
+ "schema":{
2745
+ "type": "string"
2746
+ }
2747
+ }
2748
+ ],
2749
+ "responses": {
2750
+ "200": {
2751
+ "description": "successful response",
2752
+ "content": {
2753
+ "application/json": {
2754
+ "schema": {
2755
+ "type": "object"
2756
+ }
2757
+ }
2758
+ }
2759
+ }
2760
+ }
2761
+ },
2762
+ "delete":{
2763
+ "tags": [
2764
+ "DNSView"
2765
+ ],
2766
+ "summary": "Delete DNS View",
2767
+ "description": "Delete DNS View",
2768
+ "operationId": "deleteDNSView",
2769
+ "parameters":[
2770
+ {
2771
+ "name": "dnsViewId",
2772
+ "in": "path",
2773
+ "description": "id of the DNS View to delete",
2774
+ "required": true,
2775
+ "schema":{
2776
+ "type": "string"
2777
+ }
2778
+ }
2779
+ ],
2780
+ "responses": {
2781
+ "200": {
2782
+ "description": "successful response",
2783
+ "content": {
2784
+ "application/json": {
2785
+ "schema": {
2786
+ "type": "object"
2787
+ }
2788
+ }
2789
+ }
2790
+ }
2791
+ }
2792
+ }
2793
+ },
2794
+ "/mmws/api/DNSZones": {
2795
+ "post": {
2796
+ "tags": [
2797
+ "DNSZone"
2798
+ ],
2799
+ "summary": "Create DNS Zone",
2800
+ "description": "Create DNS Zone",
2801
+ "operationId": "createDNSZone",
2802
+ "parameters": [],
2803
+ "requestBody": {
2804
+ "description": "DNS Zone",
2805
+ "content": {
2806
+ "application/json": {
2807
+ "schema": {
2808
+ "title": "dnsZone",
2809
+ "type": "object"
2810
+ }
2811
+ }
2812
+ },
2813
+ "required": true
2814
+ },
2815
+ "responses": {
2816
+ "200": {
2817
+ "description": "successful response",
2818
+ "content": {
2819
+ "application/json": {
2820
+ "schema": {
2821
+ "type": "object"
2822
+ }
2823
+ }
2824
+ }
2825
+ }
2826
+ }
2827
+ },
2828
+ "get": {
2829
+ "tags": [
2830
+ "DNSZone"
2831
+ ],
2832
+ "summary": "DNS Zones",
2833
+ "description": "DNS Zones",
2834
+ "operationId": "getDNSZones",
2835
+ "parameters": [],
2836
+ "responses": {
2837
+ "200": {
2838
+ "description": "successful response",
2839
+ "content": {
2840
+ "application/json": {
2841
+ "schema": {
2842
+ "type": "object"
2843
+ }
2844
+ }
2845
+ }
2846
+ }
2847
+ }
2848
+ }
2849
+ },
2850
+ "/mmws/api/DNSZones/{dnsZoneId}":{
2851
+ "put":{
2852
+ "tags": [
2853
+ "DNSZone"
2854
+ ],
2855
+ "summary": "Update DNS Zone",
2856
+ "description": "Update DNS Zone",
2857
+ "operationId": "updateDNSZone",
2858
+ "parameters":[
2859
+ {
2860
+ "name": "dnsZoneId",
2861
+ "in": "path",
2862
+ "description": "id of the DNS Zone to update",
2863
+ "required": true,
2864
+ "schema":{
2865
+ "type": "string"
2866
+ }
2867
+ }
2868
+ ],
2869
+ "requestBody": {
2870
+ "description": "DNS Zone",
2871
+ "content": {
2872
+ "application/json": {
2873
+ "schema": {
2874
+ "title": "dnsZone",
2875
+ "type": "object"
2876
+ }
2877
+ }
2878
+ },
2879
+ "required": true
2880
+ },
2881
+ "responses": {
2882
+ "200": {
2883
+ "description": "successful response",
2884
+ "content": {
2885
+ "application/json": {
2886
+ "schema": {
2887
+ "type": "object"
2888
+ }
2889
+ }
2890
+ }
2891
+ }
2892
+ }
2893
+ },
2894
+ "get":{
2895
+ "tags": [
2896
+ "DNSZone"
2897
+ ],
2898
+ "summary": "Get DNS Zone By Id",
2899
+ "description": "Get DNS Zone By Id",
2900
+ "operationId": "getDNSZoneById",
2901
+ "parameters":[
2902
+ {
2903
+ "name": "dnsZoneId",
2904
+ "in": "path",
2905
+ "description": "id of the DNS Zone to get",
2906
+ "required": true,
2907
+ "schema":{
2908
+ "type": "string"
2909
+ }
2910
+ }
2911
+ ],
2912
+ "responses": {
2913
+ "200": {
2914
+ "description": "successful response",
2915
+ "content": {
2916
+ "application/json": {
2917
+ "schema": {
2918
+ "type": "object"
2919
+ }
2920
+ }
2921
+ }
2922
+ }
2923
+ }
2924
+ },
2925
+ "delete":{
2926
+ "tags": [
2927
+ "DNSZone"
2928
+ ],
2929
+ "summary": "Delete DNS Zone",
2930
+ "description": "Delete DNS Zone",
2931
+ "operationId": "deleteDNSZone",
2932
+ "parameters":[
2933
+ {
2934
+ "name": "dnsZoneId",
2935
+ "in": "path",
2936
+ "description": "id of the DNS Zone to delete",
2937
+ "required": true,
2938
+ "schema":{
2939
+ "type": "string"
2940
+ }
2941
+ }
2942
+ ],
2943
+ "responses": {
2944
+ "200": {
2945
+ "description": "successful response",
2946
+ "content": {
2947
+ "application/json": {
2948
+ "schema": {
2949
+ "type": "object"
2950
+ }
2951
+ }
2952
+ }
2953
+ }
2954
+ }
2955
+ }
2956
+ },
2957
+ "/mmws/api/Folders": {
2958
+ "post": {
2959
+ "tags": [
2960
+ "Folder"
2961
+ ],
2962
+ "summary": "Create Folder",
2963
+ "description": "Create Folder",
2964
+ "operationId": "createFolder",
2965
+ "parameters": [],
2966
+ "requestBody": {
2967
+ "description": "Folder",
2968
+ "content": {
2969
+ "application/json": {
2970
+ "schema": {
2971
+ "title": "folder",
2972
+ "type": "object"
2973
+ }
2974
+ }
2975
+ },
2976
+ "required": true
2977
+ },
2978
+ "responses": {
2979
+ "200": {
2980
+ "description": "successful response",
2981
+ "content": {
2982
+ "application/json": {
2983
+ "schema": {
2984
+ "type": "object"
2985
+ }
2986
+ }
2987
+ }
2988
+ }
2989
+ }
2990
+ },
2991
+ "get": {
2992
+ "tags": [
2993
+ "Folder"
2994
+ ],
2995
+ "summary": "Folders",
2996
+ "description": "Folders",
2997
+ "operationId": "getFolders",
2998
+ "parameters": [],
2999
+ "responses": {
3000
+ "200": {
3001
+ "description": "successful response",
3002
+ "content": {
3003
+ "application/json": {
3004
+ "schema": {
3005
+ "type": "object"
3006
+ }
3007
+ }
3008
+ }
3009
+ }
3010
+ }
3011
+ }
3012
+ },
3013
+ "/mmws/api/Folders/{folderId}":{
3014
+ "put":{
3015
+ "tags": [
3016
+ "Folder"
3017
+ ],
3018
+ "summary": "Update Folder",
3019
+ "description": "Update Folder",
3020
+ "operationId": "updateFolder",
3021
+ "parameters":[
3022
+ {
3023
+ "name": "folderId",
3024
+ "in": "path",
3025
+ "description": "id of the Folder to update",
3026
+ "required": true,
3027
+ "schema":{
3028
+ "type": "string"
3029
+ }
3030
+ }
3031
+ ],
3032
+ "requestBody": {
3033
+ "description": "Folder",
3034
+ "content": {
3035
+ "application/json": {
3036
+ "schema": {
3037
+ "title": "folder",
3038
+ "type": "object"
3039
+ }
3040
+ }
3041
+ },
3042
+ "required": true
3043
+ },
3044
+ "responses": {
3045
+ "200": {
3046
+ "description": "successful response",
3047
+ "content": {
3048
+ "application/json": {
3049
+ "schema": {
3050
+ "type": "object"
3051
+ }
3052
+ }
3053
+ }
3054
+ }
3055
+ }
3056
+ },
3057
+ "get":{
3058
+ "tags": [
3059
+ "Folder"
3060
+ ],
3061
+ "summary": "Get Folder By Id",
3062
+ "description": "Get Folder By Id",
3063
+ "operationId": "getFolderById",
3064
+ "parameters":[
3065
+ {
3066
+ "name": "folderId",
3067
+ "in": "path",
3068
+ "description": "id of the Folder to get",
3069
+ "required": true,
3070
+ "schema":{
3071
+ "type": "string"
3072
+ }
3073
+ }
3074
+ ],
3075
+ "responses": {
3076
+ "200": {
3077
+ "description": "successful response",
3078
+ "content": {
3079
+ "application/json": {
3080
+ "schema": {
3081
+ "type": "object"
3082
+ }
3083
+ }
3084
+ }
3085
+ }
3086
+ }
3087
+ },
3088
+ "delete":{
3089
+ "tags": [
3090
+ "Folder"
3091
+ ],
3092
+ "summary": "Delete Folder",
3093
+ "description": "Delete Folder",
3094
+ "operationId": "deleteFolder",
3095
+ "parameters":[
3096
+ {
3097
+ "name": "folderId",
3098
+ "in": "path",
3099
+ "description": "id of the Folder to delete",
3100
+ "required": true,
3101
+ "schema":{
3102
+ "type": "string"
3103
+ }
3104
+ }
3105
+ ],
3106
+ "responses": {
3107
+ "200": {
3108
+ "description": "successful response",
3109
+ "content": {
3110
+ "application/json": {
3111
+ "schema": {
3112
+ "type": "object"
3113
+ }
3114
+ }
3115
+ }
3116
+ }
3117
+ }
3118
+ }
3119
+ },
3120
+ "/mmws/api/Groups": {
3121
+ "post": {
3122
+ "tags": [
3123
+ "Group"
3124
+ ],
3125
+ "summary": "Create Group",
3126
+ "description": "Create Group",
3127
+ "operationId": "createGroup",
3128
+ "parameters": [],
3129
+ "requestBody": {
3130
+ "description": "Group",
3131
+ "content": {
3132
+ "application/json": {
3133
+ "schema": {
3134
+ "title": "group",
3135
+ "type": "object"
3136
+ }
3137
+ }
3138
+ },
3139
+ "required": true
3140
+ },
3141
+ "responses": {
3142
+ "200": {
3143
+ "description": "successful response",
3144
+ "content": {
3145
+ "application/json": {
3146
+ "schema": {
3147
+ "type": "object"
3148
+ }
3149
+ }
3150
+ }
3151
+ }
3152
+ }
3153
+ },
3154
+ "get": {
3155
+ "tags": [
3156
+ "Group"
3157
+ ],
3158
+ "summary": "Groups",
3159
+ "description": "Groups",
3160
+ "operationId": "getGroups",
3161
+ "parameters": [],
3162
+ "responses": {
3163
+ "200": {
3164
+ "description": "successful response",
3165
+ "content": {
3166
+ "application/json": {
3167
+ "schema": {
3168
+ "type": "object"
3169
+ }
3170
+ }
3171
+ }
3172
+ }
3173
+ }
3174
+ }
3175
+ },
3176
+ "/mmws/api/Groups/{groupId}":{
3177
+ "put":{
3178
+ "tags": [
3179
+ "Group"
3180
+ ],
3181
+ "summary": "Update Group",
3182
+ "description": "Update Group",
3183
+ "operationId": "updateGroup",
3184
+ "parameters":[
3185
+ {
3186
+ "name": "groupId",
3187
+ "in": "path",
3188
+ "description": "id of the Group to update",
3189
+ "required": true,
3190
+ "schema":{
3191
+ "type": "string"
3192
+ }
3193
+ }
3194
+ ],
3195
+ "requestBody": {
3196
+ "description": "Group",
3197
+ "content": {
3198
+ "application/json": {
3199
+ "schema": {
3200
+ "title": "group",
3201
+ "type": "object"
3202
+ }
3203
+ }
3204
+ },
3205
+ "required": true
3206
+ },
3207
+ "responses": {
3208
+ "200": {
3209
+ "description": "successful response",
3210
+ "content": {
3211
+ "application/json": {
3212
+ "schema": {
3213
+ "type": "object"
3214
+ }
3215
+ }
3216
+ }
3217
+ }
3218
+ }
3219
+ },
3220
+ "get":{
3221
+ "tags": [
3222
+ "Group"
3223
+ ],
3224
+ "summary": "Get Group By Id",
3225
+ "description": "Get Group By Id",
3226
+ "operationId": "getGroupById",
3227
+ "parameters":[
3228
+ {
3229
+ "name": "groupId",
3230
+ "in": "path",
3231
+ "description": "id of the Group to get",
3232
+ "required": true,
3233
+ "schema":{
3234
+ "type": "string"
3235
+ }
3236
+ }
3237
+ ],
3238
+ "responses": {
3239
+ "200": {
3240
+ "description": "successful response",
3241
+ "content": {
3242
+ "application/json": {
3243
+ "schema": {
3244
+ "type": "object"
3245
+ }
3246
+ }
3247
+ }
3248
+ }
3249
+ }
3250
+ },
3251
+ "delete":{
3252
+ "tags": [
3253
+ "Group"
3254
+ ],
3255
+ "summary": "Delete Group",
3256
+ "description": "Delete Group",
3257
+ "operationId": "deleteGroup",
3258
+ "parameters":[
3259
+ {
3260
+ "name": "groupId",
3261
+ "in": "path",
3262
+ "description": "id of the Group to delete",
3263
+ "required": true,
3264
+ "schema":{
3265
+ "type": "string"
3266
+ }
3267
+ }
3268
+ ],
3269
+ "responses": {
3270
+ "200": {
3271
+ "description": "successful response",
3272
+ "content": {
3273
+ "application/json": {
3274
+ "schema": {
3275
+ "type": "object"
3276
+ }
3277
+ }
3278
+ }
3279
+ }
3280
+ }
3281
+ }
3282
+ },
3283
+ "/mmws/api/Interfaces": {
3284
+ "post": {
3285
+ "tags": [
3286
+ "Interface"
3287
+ ],
3288
+ "summary": "Create Interface",
3289
+ "description": "Create Interface",
3290
+ "operationId": "createInterface",
3291
+ "parameters": [],
3292
+ "requestBody": {
3293
+ "description": "Interface",
3294
+ "content": {
3295
+ "application/json": {
3296
+ "schema": {
3297
+ "title": "interface",
3298
+ "type": "object"
3299
+ }
3300
+ }
3301
+ },
3302
+ "required": true
3303
+ },
3304
+ "responses": {
3305
+ "200": {
3306
+ "description": "successful response",
3307
+ "content": {
3308
+ "application/json": {
3309
+ "schema": {
3310
+ "type": "object"
3311
+ }
3312
+ }
3313
+ }
3314
+ }
3315
+ }
3316
+ },
3317
+ "get": {
3318
+ "tags": [
3319
+ "Interface"
3320
+ ],
3321
+ "summary": "Interfaces",
3322
+ "description": "Interfaces",
3323
+ "operationId": "getInterfaces",
3324
+ "parameters": [],
3325
+ "responses": {
3326
+ "200": {
3327
+ "description": "successful response",
3328
+ "content": {
3329
+ "application/json": {
3330
+ "schema": {
3331
+ "type": "object"
3332
+ }
3333
+ }
3334
+ }
3335
+ }
3336
+ }
3337
+ }
3338
+ },
3339
+ "/mmws/api/Interfaces/{interfaceId}":{
3340
+ "put":{
3341
+ "tags": [
3342
+ "Interface"
3343
+ ],
3344
+ "summary": "Update Interface",
3345
+ "description": "Update Interface",
3346
+ "operationId": "updateInterface",
3347
+ "parameters":[
3348
+ {
3349
+ "name": "interfaceId",
3350
+ "in": "path",
3351
+ "description": "id of the Interface to update",
3352
+ "required": true,
3353
+ "schema":{
3354
+ "type": "string"
3355
+ }
3356
+ }
3357
+ ],
3358
+ "requestBody": {
3359
+ "description": "Interface",
3360
+ "content": {
3361
+ "application/json": {
3362
+ "schema": {
3363
+ "title": "interface",
3364
+ "type": "object"
3365
+ }
3366
+ }
3367
+ },
3368
+ "required": true
3369
+ },
3370
+ "responses": {
3371
+ "200": {
3372
+ "description": "successful response",
3373
+ "content": {
3374
+ "application/json": {
3375
+ "schema": {
3376
+ "type": "object"
3377
+ }
3378
+ }
3379
+ }
3380
+ }
3381
+ }
3382
+ },
3383
+ "get":{
3384
+ "tags": [
3385
+ "Interface"
3386
+ ],
3387
+ "summary": "Get Interface By Id",
3388
+ "description": "Get Interface By Id",
3389
+ "operationId": "getInterfaceById",
3390
+ "parameters":[
3391
+ {
3392
+ "name": "interfaceId",
3393
+ "in": "path",
3394
+ "description": "id of the Interface to get",
3395
+ "required": true,
3396
+ "schema":{
3397
+ "type": "string"
3398
+ }
3399
+ }
3400
+ ],
3401
+ "responses": {
3402
+ "200": {
3403
+ "description": "successful response",
3404
+ "content": {
3405
+ "application/json": {
3406
+ "schema": {
3407
+ "type": "object"
3408
+ }
3409
+ }
3410
+ }
3411
+ }
3412
+ }
3413
+ },
3414
+ "delete":{
3415
+ "tags": [
3416
+ "Interface"
3417
+ ],
3418
+ "summary": "Delete Interface",
3419
+ "description": "Delete Interface",
3420
+ "operationId": "deleteInterface",
3421
+ "parameters":[
3422
+ {
3423
+ "name": "interfaceId",
3424
+ "in": "path",
3425
+ "description": "id of the Interface to delete",
3426
+ "required": true,
3427
+ "schema":{
3428
+ "type": "string"
3429
+ }
3430
+ }
3431
+ ],
3432
+ "responses": {
3433
+ "200": {
3434
+ "description": "successful response",
3435
+ "content": {
3436
+ "application/json": {
3437
+ "schema": {
3438
+ "type": "object"
3439
+ }
3440
+ }
3441
+ }
3442
+ }
3443
+ }
3444
+ }
3445
+ },
3446
+ "/mmws/api/IPAMRecords": {
3447
+ "post": {
3448
+ "tags": [
3449
+ "IPAMRecord"
3450
+ ],
3451
+ "summary": "Create IPAM Record",
3452
+ "description": "Create IPAM Record",
3453
+ "operationId": "createIPAMRecord",
3454
+ "parameters": [],
3455
+ "requestBody": {
3456
+ "description": "IPAM Record",
3457
+ "content": {
3458
+ "application/json": {
3459
+ "schema": {
3460
+ "title": "ipamRecord",
3461
+ "type": "object"
3462
+ }
3463
+ }
3464
+ },
3465
+ "required": true
3466
+ },
3467
+ "responses": {
3468
+ "200": {
3469
+ "description": "successful response",
3470
+ "content": {
3471
+ "application/json": {
3472
+ "schema": {
3473
+ "type": "object"
3474
+ }
3475
+ }
3476
+ }
3477
+ }
3478
+ }
3479
+ },
3480
+ "get": {
3481
+ "tags": [
3482
+ "IPAMRecord"
3483
+ ],
3484
+ "summary": "IPAM Records",
3485
+ "description": "IPAM Records",
3486
+ "operationId": "getIPAMRecords",
3487
+ "parameters": [],
3488
+ "responses": {
3489
+ "200": {
3490
+ "description": "successful response",
3491
+ "content": {
3492
+ "application/json": {
3493
+ "schema": {
3494
+ "type": "object"
3495
+ }
3496
+ }
3497
+ }
3498
+ }
3499
+ }
3500
+ }
3501
+ },
3502
+ "/mmws/api/IPAMRecords/{ipamRecordId}":{
3503
+ "put":{
3504
+ "tags": [
3505
+ "IPAMRecord"
3506
+ ],
3507
+ "summary": "Update IPAM Record",
3508
+ "description": "Update IPAM Record",
3509
+ "operationId": "updateIPAMRecord",
3510
+ "parameters":[
3511
+ {
3512
+ "name": "ipamRecordId",
3513
+ "in": "path",
3514
+ "description": "id of the IPAM Record to update",
3515
+ "required": true,
3516
+ "schema":{
3517
+ "type": "string"
3518
+ }
3519
+ }
3520
+ ],
3521
+ "requestBody": {
3522
+ "description": "IPAM Record",
3523
+ "content": {
3524
+ "application/json": {
3525
+ "schema": {
3526
+ "title": "ipamRecord",
3527
+ "type": "object"
3528
+ }
3529
+ }
3530
+ },
3531
+ "required": true
3532
+ },
3533
+ "responses": {
3534
+ "200": {
3535
+ "description": "successful response",
3536
+ "content": {
3537
+ "application/json": {
3538
+ "schema": {
3539
+ "type": "object"
3540
+ }
3541
+ }
3542
+ }
3543
+ }
3544
+ }
3545
+ },
3546
+ "get":{
3547
+ "tags": [
3548
+ "IPAMRecord"
3549
+ ],
3550
+ "summary": "Get IPAM Record By Id",
3551
+ "description": "Get IPAM Record By Id",
3552
+ "operationId": "getIPAMRecordById",
3553
+ "parameters":[
3554
+ {
3555
+ "name": "ipamRecordId",
3556
+ "in": "path",
3557
+ "description": "id of the IPAM Record to get",
3558
+ "required": true,
3559
+ "schema":{
3560
+ "type": "string"
3561
+ }
3562
+ }
3563
+ ],
3564
+ "responses": {
3565
+ "200": {
3566
+ "description": "successful response",
3567
+ "content": {
3568
+ "application/json": {
3569
+ "schema": {
3570
+ "type": "object"
3571
+ }
3572
+ }
3573
+ }
3574
+ }
3575
+ }
3576
+ },
3577
+ "delete":{
3578
+ "tags": [
3579
+ "IPAMRecord"
3580
+ ],
3581
+ "summary": "Delete IPAM Record",
3582
+ "description": "Delete IPAM Record",
3583
+ "operationId": "deleteIPAMRecord",
3584
+ "parameters":[
3585
+ {
3586
+ "name": "ipamRecordId",
3587
+ "in": "path",
3588
+ "description": "id of the IPAM Record to delete",
3589
+ "required": true,
3590
+ "schema":{
3591
+ "type": "string"
3592
+ }
3593
+ }
3594
+ ],
3595
+ "responses": {
3596
+ "200": {
3597
+ "description": "successful response",
3598
+ "content": {
3599
+ "application/json": {
3600
+ "schema": {
3601
+ "type": "object"
3602
+ }
3603
+ }
3604
+ }
3605
+ }
3606
+ }
3607
+ }
3608
+ },
3609
+ "/mmws/api/Ranges": {
3610
+ "post": {
3611
+ "tags": [
3612
+ "Range"
3613
+ ],
3614
+ "summary": "Create Range",
3615
+ "description": "Create Range",
3616
+ "operationId": "createRange",
3617
+ "parameters": [],
3618
+ "requestBody": {
3619
+ "description": "Range",
3620
+ "content": {
3621
+ "application/json": {
3622
+ "schema": {
3623
+ "title": "range",
3624
+ "type": "object"
3625
+ }
3626
+ }
3627
+ },
3628
+ "required": true
3629
+ },
3630
+ "responses": {
3631
+ "200": {
3632
+ "description": "successful response",
3633
+ "content": {
3634
+ "application/json": {
3635
+ "schema": {
3636
+ "type": "object"
3637
+ }
3638
+ }
3639
+ }
3640
+ }
3641
+ }
3642
+ },
3643
+ "get": {
3644
+ "tags": [
3645
+ "Range"
3646
+ ],
3647
+ "summary": "Ranges",
3648
+ "description": "Ranges",
3649
+ "operationId": "getRanges",
3650
+ "parameters": [],
3651
+ "responses": {
3652
+ "200": {
3653
+ "description": "successful response",
3654
+ "content": {
3655
+ "application/json": {
3656
+ "schema": {
3657
+ "type": "object"
3658
+ }
3659
+ }
3660
+ }
3661
+ }
3662
+ }
3663
+ }
3664
+ },
3665
+ "/mmws/api/Ranges/{rangeId}":{
3666
+ "put":{
3667
+ "tags": [
3668
+ "Range"
3669
+ ],
3670
+ "summary": "Update Range",
3671
+ "description": "Update Range",
3672
+ "operationId": "updateRange",
3673
+ "parameters":[
3674
+ {
3675
+ "name": "rangeId",
3676
+ "in": "path",
3677
+ "description": "id of the Range to update",
3678
+ "required": true,
3679
+ "schema":{
3680
+ "type": "string"
3681
+ }
3682
+ }
3683
+ ],
3684
+ "requestBody": {
3685
+ "description": "Range",
3686
+ "content": {
3687
+ "application/json": {
3688
+ "schema": {
3689
+ "title": "range",
3690
+ "type": "object"
3691
+ }
3692
+ }
3693
+ },
3694
+ "required": true
3695
+ },
3696
+ "responses": {
3697
+ "200": {
3698
+ "description": "successful response",
3699
+ "content": {
3700
+ "application/json": {
3701
+ "schema": {
3702
+ "type": "object"
3703
+ }
3704
+ }
3705
+ }
3706
+ }
3707
+ }
3708
+ },
3709
+ "get":{
3710
+ "tags": [
3711
+ "Range"
3712
+ ],
3713
+ "summary": "Get Range By Id",
3714
+ "description": "Get Range By Id",
3715
+ "operationId": "getRangeById",
3716
+ "parameters":[
3717
+ {
3718
+ "name": "rangeId",
3719
+ "in": "path",
3720
+ "description": "id of the Range to get",
3721
+ "required": true,
3722
+ "schema":{
3723
+ "type": "string"
3724
+ }
3725
+ }
3726
+ ],
3727
+ "responses": {
3728
+ "200": {
3729
+ "description": "successful response",
3730
+ "content": {
3731
+ "application/json": {
3732
+ "schema": {
3733
+ "type": "object"
3734
+ }
3735
+ }
3736
+ }
3737
+ }
3738
+ }
3739
+ },
3740
+ "delete":{
3741
+ "tags": [
3742
+ "Range"
3743
+ ],
3744
+ "summary": "Delete Range",
3745
+ "description": "Delete Range",
3746
+ "operationId": "deleteRange",
3747
+ "parameters":[
3748
+ {
3749
+ "name": "rangeId",
3750
+ "in": "path",
3751
+ "description": "id of the Range to delete",
3752
+ "required": true,
3753
+ "schema":{
3754
+ "type": "string"
3755
+ }
3756
+ }
3757
+ ],
3758
+ "responses": {
3759
+ "200": {
3760
+ "description": "successful response",
3761
+ "content": {
3762
+ "application/json": {
3763
+ "schema": {
3764
+ "type": "object"
3765
+ }
3766
+ }
3767
+ }
3768
+ }
3769
+ }
3770
+ }
3771
+ },
3772
+ "/mmws/api/ReportDefinitions": {
3773
+ "post": {
3774
+ "tags": [
3775
+ "Report Definition"
3776
+ ],
3777
+ "summary": "Create Report Definition",
3778
+ "description": "Create Report Definition",
3779
+ "operationId": "createReportDefinition",
3780
+ "parameters": [],
3781
+ "requestBody": {
3782
+ "description": "Report Definition",
3783
+ "content": {
3784
+ "application/json": {
3785
+ "schema": {
3786
+ "title": "reportDefinition",
3787
+ "type": "object"
3788
+ }
3789
+ }
3790
+ },
3791
+ "required": true
3792
+ },
3793
+ "responses": {
3794
+ "200": {
3795
+ "description": "successful response",
3796
+ "content": {
3797
+ "application/json": {
3798
+ "schema": {
3799
+ "type": "object"
3800
+ }
3801
+ }
3802
+ }
3803
+ }
3804
+ }
3805
+ },
3806
+ "get": {
3807
+ "tags": [
3808
+ "ReportDefinition"
3809
+ ],
3810
+ "summary": "Report Definitions",
3811
+ "description": "Report Definitions",
3812
+ "operationId": "getReportDefinitions",
3813
+ "parameters": [],
3814
+ "responses": {
3815
+ "200": {
3816
+ "description": "successful response",
3817
+ "content": {
3818
+ "application/json": {
3819
+ "schema": {
3820
+ "type": "object"
3821
+ }
3822
+ }
3823
+ }
3824
+ }
3825
+ }
3826
+ }
3827
+ },
3828
+ "/mmws/api/ReportDefinitions/{reportDefinitionId}":{
3829
+ "put":{
3830
+ "tags": [
3831
+ "ReportDefinition"
3832
+ ],
3833
+ "summary": "Update Report Definition",
3834
+ "description": "Update Report Definition",
3835
+ "operationId": "updateReportDefinition",
3836
+ "parameters":[
3837
+ {
3838
+ "name": "reportDefinitionId",
3839
+ "in": "path",
3840
+ "description": "id of the Report Definition to update",
3841
+ "required": true,
3842
+ "schema":{
3843
+ "type": "string"
3844
+ }
3845
+ }
3846
+ ],
3847
+ "requestBody": {
3848
+ "description": "Report Definition",
3849
+ "content": {
3850
+ "application/json": {
3851
+ "schema": {
3852
+ "title": "reportDefinition",
3853
+ "type": "object"
3854
+ }
3855
+ }
3856
+ },
3857
+ "required": true
3858
+ },
3859
+ "responses": {
3860
+ "200": {
3861
+ "description": "successful response",
3862
+ "content": {
3863
+ "application/json": {
3864
+ "schema": {
3865
+ "type": "object"
3866
+ }
3867
+ }
3868
+ }
3869
+ }
3870
+ }
3871
+ },
3872
+ "get":{
3873
+ "tags": [
3874
+ "ReportDefinition"
3875
+ ],
3876
+ "summary": "Get Report Definition By Id",
3877
+ "description": "Get Report Definition By Id",
3878
+ "operationId": "getReportDefinitionById",
3879
+ "parameters":[
3880
+ {
3881
+ "name": "reportDefinitionId",
3882
+ "in": "path",
3883
+ "description": "id of the Report Definition to get",
3884
+ "required": true,
3885
+ "schema":{
3886
+ "type": "string"
3887
+ }
3888
+ }
3889
+ ],
3890
+ "responses": {
3891
+ "200": {
3892
+ "description": "successful response",
3893
+ "content": {
3894
+ "application/json": {
3895
+ "schema": {
3896
+ "type": "object"
3897
+ }
3898
+ }
3899
+ }
3900
+ }
3901
+ }
3902
+ },
3903
+ "delete":{
3904
+ "tags": [
3905
+ "ReportDefinition"
3906
+ ],
3907
+ "summary": "Delete Report Definition",
3908
+ "description": "Delete Report Definition",
3909
+ "operationId": "deleteReportDefinition",
3910
+ "parameters":[
3911
+ {
3912
+ "name": "reportDefinitionId",
3913
+ "in": "path",
3914
+ "description": "id of the Report Definition to delete",
3915
+ "required": true,
3916
+ "schema":{
3917
+ "type": "string"
3918
+ }
3919
+ }
3920
+ ],
3921
+ "responses": {
3922
+ "200": {
3923
+ "description": "successful response",
3924
+ "content": {
3925
+ "application/json": {
3926
+ "schema": {
3927
+ "type": "object"
3928
+ }
3929
+ }
3930
+ }
3931
+ }
3932
+ }
3933
+ }
3934
+ },
3935
+ "/mmws/api/Reports": {
3936
+ "post": {
3937
+ "tags": [
3938
+ "Report"
3939
+ ],
3940
+ "summary": "Create Report",
3941
+ "description": "Create Report",
3942
+ "operationId": "createReport",
3943
+ "parameters": [],
3944
+ "requestBody": {
3945
+ "description": "Report",
3946
+ "content": {
3947
+ "application/json": {
3948
+ "schema": {
3949
+ "title": "report",
3950
+ "type": "object"
3951
+ }
3952
+ }
3953
+ },
3954
+ "required": true
3955
+ },
3956
+ "responses": {
3957
+ "200": {
3958
+ "description": "successful response",
3959
+ "content": {
3960
+ "application/json": {
3961
+ "schema": {
3962
+ "type": "object"
3963
+ }
3964
+ }
3965
+ }
3966
+ }
3967
+ }
3968
+ },
3969
+ "get": {
3970
+ "tags": [
3971
+ "Report"
3972
+ ],
3973
+ "summary": "Reports",
3974
+ "description": "Reports",
3975
+ "operationId": "getReports",
3976
+ "parameters": [],
3977
+ "responses": {
3978
+ "200": {
3979
+ "description": "successful response",
3980
+ "content": {
3981
+ "application/json": {
3982
+ "schema": {
3983
+ "type": "object"
3984
+ }
3985
+ }
3986
+ }
3987
+ }
3988
+ }
3989
+ }
3990
+ },
3991
+ "/mmws/api/Reports/{reportId}":{
3992
+ "put":{
3993
+ "tags": [
3994
+ "Report"
3995
+ ],
3996
+ "summary": "Update Report",
3997
+ "description": "Update Report",
3998
+ "operationId": "updateReport",
3999
+ "parameters":[
4000
+ {
4001
+ "name": "reportId",
4002
+ "in": "path",
4003
+ "description": "id of the Report to update",
4004
+ "required": true,
4005
+ "schema":{
4006
+ "type": "string"
4007
+ }
4008
+ }
4009
+ ],
4010
+ "requestBody": {
4011
+ "description": "Report",
4012
+ "content": {
4013
+ "application/json": {
4014
+ "schema": {
4015
+ "title": "report",
4016
+ "type": "object"
4017
+ }
4018
+ }
4019
+ },
4020
+ "required": true
4021
+ },
4022
+ "responses": {
4023
+ "200": {
4024
+ "description": "successful response",
4025
+ "content": {
4026
+ "application/json": {
4027
+ "schema": {
4028
+ "type": "object"
4029
+ }
4030
+ }
4031
+ }
4032
+ }
4033
+ }
4034
+ },
4035
+ "get":{
4036
+ "tags": [
4037
+ "Report"
4038
+ ],
4039
+ "summary": "Get Report By Id",
4040
+ "description": "Get Report By Id",
4041
+ "operationId": "getReportById",
4042
+ "parameters":[
4043
+ {
4044
+ "name": "reportId",
4045
+ "in": "path",
4046
+ "description": "id of the Report to get",
4047
+ "required": true,
4048
+ "schema":{
4049
+ "type": "string"
4050
+ }
4051
+ }
4052
+ ],
4053
+ "responses": {
4054
+ "200": {
4055
+ "description": "successful response",
4056
+ "content": {
4057
+ "application/json": {
4058
+ "schema": {
4059
+ "type": "object"
4060
+ }
4061
+ }
4062
+ }
4063
+ }
4064
+ }
4065
+ },
4066
+ "delete":{
4067
+ "tags": [
4068
+ "Report"
4069
+ ],
4070
+ "summary": "Delete Report",
4071
+ "description": "Delete Report",
4072
+ "operationId": "deleteReport",
4073
+ "parameters":[
4074
+ {
4075
+ "name": "reportId",
4076
+ "in": "path",
4077
+ "description": "id of the Report to delete",
4078
+ "required": true,
4079
+ "schema":{
4080
+ "type": "string"
4081
+ }
4082
+ }
4083
+ ],
4084
+ "responses": {
4085
+ "200": {
4086
+ "description": "successful response",
4087
+ "content": {
4088
+ "application/json": {
4089
+ "schema": {
4090
+ "type": "object"
4091
+ }
4092
+ }
4093
+ }
4094
+ }
4095
+ }
4096
+ }
4097
+ },
4098
+ "/mmws/api/ReportSources": {
4099
+ "post": {
4100
+ "tags": [
4101
+ "Report Source"
4102
+ ],
4103
+ "summary": "Create Report Source",
4104
+ "description": "Create Report Source",
4105
+ "operationId": "createReportSource",
4106
+ "parameters": [],
4107
+ "requestBody": {
4108
+ "description": "Report Source",
4109
+ "content": {
4110
+ "application/json": {
4111
+ "schema": {
4112
+ "title": "reportSource",
4113
+ "type": "object"
4114
+ }
4115
+ }
4116
+ },
4117
+ "required": true
4118
+ },
4119
+ "responses": {
4120
+ "200": {
4121
+ "description": "successful response",
4122
+ "content": {
4123
+ "application/json": {
4124
+ "schema": {
4125
+ "type": "object"
4126
+ }
4127
+ }
4128
+ }
4129
+ }
4130
+ }
4131
+ },
4132
+ "get": {
4133
+ "tags": [
4134
+ "ReportSource"
4135
+ ],
4136
+ "summary": "Report Sources",
4137
+ "description": "Report Sources",
4138
+ "operationId": "getReportSources",
4139
+ "parameters": [],
4140
+ "responses": {
4141
+ "200": {
4142
+ "description": "successful response",
4143
+ "content": {
4144
+ "application/json": {
4145
+ "schema": {
4146
+ "type": "object"
4147
+ }
4148
+ }
4149
+ }
4150
+ }
4151
+ }
4152
+ }
4153
+ },
4154
+ "/mmws/api/ReportSources/{reportSourceId}":{
4155
+ "put":{
4156
+ "tags": [
4157
+ "ReportSource"
4158
+ ],
4159
+ "summary": "Update Report Source",
4160
+ "description": "Update Report Source",
4161
+ "operationId": "updateReportSource",
4162
+ "parameters":[
4163
+ {
4164
+ "name": "reportSourceId",
4165
+ "in": "path",
4166
+ "description": "id of the Report Source to update",
4167
+ "required": true,
4168
+ "schema":{
4169
+ "type": "string"
4170
+ }
4171
+ }
4172
+ ],
4173
+ "requestBody": {
4174
+ "description": "Report Source",
4175
+ "content": {
4176
+ "application/json": {
4177
+ "schema": {
4178
+ "title": "reportSource",
4179
+ "type": "object"
4180
+ }
4181
+ }
4182
+ },
4183
+ "required": true
4184
+ },
4185
+ "responses": {
4186
+ "200": {
4187
+ "description": "successful response",
4188
+ "content": {
4189
+ "application/json": {
4190
+ "schema": {
4191
+ "type": "object"
4192
+ }
4193
+ }
4194
+ }
4195
+ }
4196
+ }
4197
+ },
4198
+ "get":{
4199
+ "tags": [
4200
+ "ReportSource"
4201
+ ],
4202
+ "summary": "Get Report Source By Id",
4203
+ "description": "Get Report Source By Id",
4204
+ "operationId": "getReportSourceById",
4205
+ "parameters":[
4206
+ {
4207
+ "name": "reportSourceId",
4208
+ "in": "path",
4209
+ "description": "id of the Report Source to get",
4210
+ "required": true,
4211
+ "schema":{
4212
+ "type": "string"
4213
+ }
4214
+ }
4215
+ ],
4216
+ "responses": {
4217
+ "200": {
4218
+ "description": "successful response",
4219
+ "content": {
4220
+ "application/json": {
4221
+ "schema": {
4222
+ "type": "object"
4223
+ }
4224
+ }
4225
+ }
4226
+ }
4227
+ }
4228
+ },
4229
+ "delete":{
4230
+ "tags": [
4231
+ "ReportSource"
4232
+ ],
4233
+ "summary": "Delete Report Source",
4234
+ "description": "Delete Report Source",
4235
+ "operationId": "deleteReportSource",
4236
+ "parameters":[
4237
+ {
4238
+ "name": "reportSourceId",
4239
+ "in": "path",
4240
+ "description": "id of the Report Source to delete",
4241
+ "required": true,
4242
+ "schema":{
4243
+ "type": "string"
4244
+ }
4245
+ }
4246
+ ],
4247
+ "responses": {
4248
+ "200": {
4249
+ "description": "successful response",
4250
+ "content": {
4251
+ "application/json": {
4252
+ "schema": {
4253
+ "type": "object"
4254
+ }
4255
+ }
4256
+ }
4257
+ }
4258
+ }
4259
+ }
4260
+ },
4261
+ "/mmws/api/Roles": {
4262
+ "post": {
4263
+ "tags": [
4264
+ "Role"
4265
+ ],
4266
+ "summary": "Create Role",
4267
+ "description": "Create Role",
4268
+ "operationId": "createRole",
4269
+ "parameters": [],
4270
+ "requestBody": {
4271
+ "description": "Role",
4272
+ "content": {
4273
+ "application/json": {
4274
+ "schema": {
4275
+ "title": "role",
4276
+ "type": "object"
4277
+ }
4278
+ }
4279
+ },
4280
+ "required": true
4281
+ },
4282
+ "responses": {
4283
+ "200": {
4284
+ "description": "successful response",
4285
+ "content": {
4286
+ "application/json": {
4287
+ "schema": {
4288
+ "type": "object"
4289
+ }
4290
+ }
4291
+ }
4292
+ }
4293
+ }
4294
+ },
4295
+ "get": {
4296
+ "tags": [
4297
+ "Role"
4298
+ ],
4299
+ "summary": "Roles",
4300
+ "description": "Roles",
4301
+ "operationId": "getRoles",
4302
+ "parameters": [],
4303
+ "responses": {
4304
+ "200": {
4305
+ "description": "successful response",
4306
+ "content": {
4307
+ "application/json": {
4308
+ "schema": {
4309
+ "type": "object"
4310
+ }
4311
+ }
4312
+ }
4313
+ }
4314
+ }
4315
+ }
4316
+ },
4317
+ "/mmws/api/Roles/{roleId}":{
4318
+ "put":{
4319
+ "tags": [
4320
+ "Role"
4321
+ ],
4322
+ "summary": "Update Role",
4323
+ "description": "Update Role",
4324
+ "operationId": "updateRole",
4325
+ "parameters":[
4326
+ {
4327
+ "name": "roleId",
4328
+ "in": "path",
4329
+ "description": "id of the Role to update",
4330
+ "required": true,
4331
+ "schema":{
4332
+ "type": "string"
4333
+ }
4334
+ }
4335
+ ],
4336
+ "requestBody": {
4337
+ "description": "Role",
4338
+ "content": {
4339
+ "application/json": {
4340
+ "schema": {
4341
+ "title": "role",
4342
+ "type": "object"
4343
+ }
4344
+ }
4345
+ },
4346
+ "required": true
4347
+ },
4348
+ "responses": {
4349
+ "200": {
4350
+ "description": "successful response",
4351
+ "content": {
4352
+ "application/json": {
4353
+ "schema": {
4354
+ "type": "object"
4355
+ }
4356
+ }
4357
+ }
4358
+ }
4359
+ }
4360
+ },
4361
+ "get":{
4362
+ "tags": [
4363
+ "Role"
4364
+ ],
4365
+ "summary": "Get Role By Id",
4366
+ "description": "Get Role By Id",
4367
+ "operationId": "getRoleById",
4368
+ "parameters":[
4369
+ {
4370
+ "name": "roleId",
4371
+ "in": "path",
4372
+ "description": "id of the Role to get",
4373
+ "required": true,
4374
+ "schema":{
4375
+ "type": "string"
4376
+ }
4377
+ }
4378
+ ],
4379
+ "responses": {
4380
+ "200": {
4381
+ "description": "successful response",
4382
+ "content": {
4383
+ "application/json": {
4384
+ "schema": {
4385
+ "type": "object"
4386
+ }
4387
+ }
4388
+ }
4389
+ }
4390
+ }
4391
+ },
4392
+ "delete":{
4393
+ "tags": [
4394
+ "Role"
4395
+ ],
4396
+ "summary": "Delete Role",
4397
+ "description": "Delete Role",
4398
+ "operationId": "deleteRole",
4399
+ "parameters":[
4400
+ {
4401
+ "name": "roleId",
4402
+ "in": "path",
4403
+ "description": "id of the Role to delete",
4404
+ "required": true,
4405
+ "schema":{
4406
+ "type": "string"
4407
+ }
4408
+ }
4409
+ ],
4410
+ "responses": {
4411
+ "200": {
4412
+ "description": "successful response",
4413
+ "content": {
4414
+ "application/json": {
4415
+ "schema": {
4416
+ "type": "object"
4417
+ }
4418
+ }
4419
+ }
4420
+ }
4421
+ }
4422
+ }
4423
+ },
4424
+ "/mmws/api/Users": {
4425
+ "post": {
4426
+ "tags": [
4427
+ "User"
4428
+ ],
4429
+ "summary": "Create User",
4430
+ "description": "Create User",
4431
+ "operationId": "createUser",
4432
+ "parameters": [],
4433
+ "requestBody": {
4434
+ "description": "User",
4435
+ "content": {
4436
+ "application/json": {
4437
+ "schema": {
4438
+ "title": "user",
4439
+ "type": "object"
4440
+ }
4441
+ }
4442
+ },
4443
+ "required": true
4444
+ },
4445
+ "responses": {
4446
+ "200": {
4447
+ "description": "successful response",
4448
+ "content": {
4449
+ "application/json": {
4450
+ "schema": {
4451
+ "type": "object"
4452
+ }
4453
+ }
4454
+ }
4455
+ }
4456
+ }
4457
+ },
4458
+ "get": {
4459
+ "tags": [
4460
+ "User"
4461
+ ],
4462
+ "summary": "Users",
4463
+ "description": "Users",
4464
+ "operationId": "getUsers",
4465
+ "parameters": [],
4466
+ "responses": {
4467
+ "200": {
4468
+ "description": "successful response",
4469
+ "content": {
4470
+ "application/json": {
4471
+ "schema": {
4472
+ "type": "object"
4473
+ }
4474
+ }
4475
+ }
4476
+ }
4477
+ }
4478
+ }
4479
+ },
4480
+ "/mmws/api/Users/{userId}":{
4481
+ "put":{
4482
+ "tags": [
4483
+ "User"
4484
+ ],
4485
+ "summary": "Update User",
4486
+ "description": "Update User",
4487
+ "operationId": "updateUser",
4488
+ "parameters":[
4489
+ {
4490
+ "name": "userId",
4491
+ "in": "path",
4492
+ "description": "id of the User to update",
4493
+ "required": true,
4494
+ "schema":{
4495
+ "type": "string"
4496
+ }
4497
+ }
4498
+ ],
4499
+ "requestBody": {
4500
+ "description": "User",
4501
+ "content": {
4502
+ "application/json": {
4503
+ "schema": {
4504
+ "title": "user",
4505
+ "type": "object"
4506
+ }
4507
+ }
4508
+ },
4509
+ "required": true
4510
+ },
4511
+ "responses": {
4512
+ "200": {
4513
+ "description": "successful response",
4514
+ "content": {
4515
+ "application/json": {
4516
+ "schema": {
4517
+ "type": "object"
4518
+ }
4519
+ }
4520
+ }
4521
+ }
4522
+ }
4523
+ },
4524
+ "get":{
4525
+ "tags": [
4526
+ "User"
4527
+ ],
4528
+ "summary": "Get User By Id",
4529
+ "description": "Get User By Id",
4530
+ "operationId": "getUserById",
4531
+ "parameters":[
4532
+ {
4533
+ "name": "userId",
4534
+ "in": "path",
4535
+ "description": "id of the User to get",
4536
+ "required": true,
4537
+ "schema":{
4538
+ "type": "string"
4539
+ }
4540
+ }
4541
+ ],
4542
+ "responses": {
4543
+ "200": {
4544
+ "description": "successful response",
4545
+ "content": {
4546
+ "application/json": {
4547
+ "schema": {
4548
+ "type": "object"
4549
+ }
4550
+ }
4551
+ }
4552
+ }
4553
+ }
4554
+ },
4555
+ "delete":{
4556
+ "tags": [
4557
+ "User"
4558
+ ],
4559
+ "summary": "Delete User",
4560
+ "description": "Delete User",
4561
+ "operationId": "deleteUser",
4562
+ "parameters":[
4563
+ {
4564
+ "name": "userId",
4565
+ "in": "path",
4566
+ "description": "id of the User to delete",
4567
+ "required": true,
4568
+ "schema":{
4569
+ "type": "string"
4570
+ }
4571
+ }
4572
+ ],
4573
+ "responses": {
4574
+ "200": {
4575
+ "description": "successful response",
4576
+ "content": {
4577
+ "application/json": {
4578
+ "schema": {
4579
+ "type": "object"
4580
+ }
4581
+ }
4582
+ }
4583
+ }
4584
+ }
4585
+ }
4586
+ }
4587
+ },
4588
+ "components":{
4589
+ "schemas":{
4590
+ }
4591
+ },
4592
+ "tags":[
4593
+ ]
4594
+ }