@itentialopensource/adapter-kentik 0.2.10 → 0.3.0

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