@itentialopensource/adapter-calix_smx 0.1.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 (86) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +42 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +207 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +676 -0
  12. package/README.md +344 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +35 -0
  15. package/TROUBLESHOOT.md +56 -0
  16. package/UTILITIES.md +473 -0
  17. package/adapter.js +189915 -0
  18. package/adapterBase.js +1526 -0
  19. package/entities/.generic/action.json +214 -0
  20. package/entities/.generic/schema.json +28 -0
  21. package/entities/.system/action.json +50 -0
  22. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  23. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  24. package/entities/.system/schema.json +19 -0
  25. package/entities/.system/schemaTokenReq.json +53 -0
  26. package/entities/.system/schemaTokenResp.json +53 -0
  27. package/entities/Config/action.json +861 -0
  28. package/entities/Config/schema.json +136 -0
  29. package/entities/ConfigDevice/action.json +12813 -0
  30. package/entities/ConfigDevice/schema.json +1281 -0
  31. package/entities/ConfigProfile/action.json +2608 -0
  32. package/entities/ConfigProfile/schema.json +164 -0
  33. package/entities/ConfigTemplate/action.json +841 -0
  34. package/entities/ConfigTemplate/schema.json +147 -0
  35. package/entities/EMS/action.json +1565 -0
  36. package/entities/EMS/schema.json +182 -0
  37. package/entities/EMSProfile/action.json +14871 -0
  38. package/entities/EMSProfile/schema.json +1001 -0
  39. package/entities/EMSRegion/action.json +127 -0
  40. package/entities/EMSRegion/schema.json +24 -0
  41. package/entities/EMSService/action.json +855 -0
  42. package/entities/EMSService/schema.json +269 -0
  43. package/entities/EMSSubscriber/action.json +190 -0
  44. package/entities/EMSSubscriber/schema.json +104 -0
  45. package/entities/Fault/action.json +209 -0
  46. package/entities/Fault/schema.json +61 -0
  47. package/entities/Log/action.json +25 -0
  48. package/entities/Log/schema.json +19 -0
  49. package/entities/PerformanceMonitoring/action.json +1114 -0
  50. package/entities/PerformanceMonitoring/schema.json +302 -0
  51. package/entities/Port/action.json +24 -0
  52. package/entities/Port/schema.json +30 -0
  53. package/error.json +190 -0
  54. package/metadata.json +81 -0
  55. package/package.json +76 -0
  56. package/pronghorn.json +119022 -0
  57. package/propertiesDecorators.json +18 -0
  58. package/propertiesSchema.json +1765 -0
  59. package/report/creationReport.json +9189 -0
  60. package/report/smx_modified_rename.json +97860 -0
  61. package/report/updateReport1766175812348.json +120 -0
  62. package/sampleProperties.json +263 -0
  63. package/test/integration/adapterTestBasicGet.js +117 -0
  64. package/test/integration/adapterTestConnectivity.js +117 -0
  65. package/test/integration/adapterTestIntegration.js +45491 -0
  66. package/test/unit/adapterBaseTestUnit.js +1628 -0
  67. package/test/unit/adapterTestUnit.js +66088 -0
  68. package/utils/adapterInfo.js +156 -0
  69. package/utils/argParser.js +44 -0
  70. package/utils/checkMigrate.js +102 -0
  71. package/utils/entitiesToDB.js +190 -0
  72. package/utils/findPath.js +74 -0
  73. package/utils/logger.js +26 -0
  74. package/utils/methodDocumentor.js +273 -0
  75. package/utils/modify.js +153 -0
  76. package/utils/mongoDbConnection.js +79 -0
  77. package/utils/mongoUtils.js +162 -0
  78. package/utils/pre-commit.sh +32 -0
  79. package/utils/removeHooks.js +20 -0
  80. package/utils/setup.js +33 -0
  81. package/utils/taskMover.js +308 -0
  82. package/utils/tbScript.js +103 -0
  83. package/utils/tbUtils.js +347 -0
  84. package/utils/testRunner.js +298 -0
  85. package/utils/troubleshootingAdapter.js +177 -0
  86. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,861 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getBngStatePersistByDevice",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/bng-state-persist?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getDhcpErrorStatisticsByDevice",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/dhcp-error-statistics?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "getInfoByDevice",
47
+ "protocol": "REST",
48
+ "method": "GET",
49
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/info?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": false,
54
+ "sendGetBody": false,
55
+ "requestDatatype": "JSON",
56
+ "responseDatatype": "JSON",
57
+ "headers": {},
58
+ "responseObjects": [
59
+ {
60
+ "type": "default",
61
+ "key": "",
62
+ "mockFile": ""
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "name": "getIpRouteAllByDevice",
68
+ "protocol": "REST",
69
+ "method": "GET",
70
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/ip-route-all?{query}",
71
+ "requestSchema": "schema.json",
72
+ "responseSchema": "schema.json",
73
+ "timeout": 0,
74
+ "sendEmpty": false,
75
+ "sendGetBody": false,
76
+ "requestDatatype": "JSON",
77
+ "responseDatatype": "JSON",
78
+ "headers": {},
79
+ "responseObjects": [
80
+ {
81
+ "type": "default",
82
+ "key": "",
83
+ "mockFile": ""
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "name": "getIpRouteConfigByDevice",
89
+ "protocol": "REST",
90
+ "method": "GET",
91
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/ip-route-config?{query}",
92
+ "requestSchema": "schema.json",
93
+ "responseSchema": "schema.json",
94
+ "timeout": 0,
95
+ "sendEmpty": false,
96
+ "sendGetBody": false,
97
+ "requestDatatype": "JSON",
98
+ "responseDatatype": "JSON",
99
+ "headers": {},
100
+ "responseObjects": [
101
+ {
102
+ "type": "default",
103
+ "key": "",
104
+ "mockFile": ""
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "name": "getSensorDetailsByDevice",
110
+ "protocol": "REST",
111
+ "method": "GET",
112
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/sensor-details?{query}",
113
+ "requestSchema": "schema.json",
114
+ "responseSchema": "schema.json",
115
+ "timeout": 0,
116
+ "sendEmpty": false,
117
+ "sendGetBody": false,
118
+ "requestDatatype": "JSON",
119
+ "responseDatatype": "JSON",
120
+ "headers": {},
121
+ "responseObjects": [
122
+ {
123
+ "type": "default",
124
+ "key": "",
125
+ "mockFile": ""
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "name": "getAllSyslog",
131
+ "protocol": "REST",
132
+ "method": "GET",
133
+ "entitypath": "{base_path}/{version}/config/AXOS4X/syslog?{query}",
134
+ "requestSchema": "schema.json",
135
+ "responseSchema": "schema.json",
136
+ "timeout": 0,
137
+ "sendEmpty": false,
138
+ "sendGetBody": false,
139
+ "requestDatatype": "JSON",
140
+ "responseDatatype": "JSON",
141
+ "headers": {},
142
+ "responseObjects": [
143
+ {
144
+ "type": "default",
145
+ "key": "",
146
+ "mockFile": ""
147
+ }
148
+ ]
149
+ },
150
+ {
151
+ "name": "getSyslogByIp",
152
+ "protocol": "REST",
153
+ "method": "GET",
154
+ "entitypath": "{base_path}/{version}/config/AXOS4X/syslog/{pathv1}?{query}",
155
+ "requestSchema": "schema.json",
156
+ "responseSchema": "schema.json",
157
+ "timeout": 0,
158
+ "sendEmpty": false,
159
+ "sendGetBody": false,
160
+ "requestDatatype": "JSON",
161
+ "responseDatatype": "JSON",
162
+ "headers": {},
163
+ "responseObjects": [
164
+ {
165
+ "type": "default",
166
+ "key": "",
167
+ "mockFile": ""
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "name": "getAllBaseboard",
173
+ "protocol": "REST",
174
+ "method": "GET",
175
+ "entitypath": "{base_path}/{version}/config/baseboard?{query}",
176
+ "requestSchema": "schema.json",
177
+ "responseSchema": "schema.json",
178
+ "timeout": 0,
179
+ "sendEmpty": false,
180
+ "sendGetBody": false,
181
+ "requestDatatype": "JSON",
182
+ "responseDatatype": "JSON",
183
+ "headers": {},
184
+ "responseObjects": [
185
+ {
186
+ "type": "default",
187
+ "key": "",
188
+ "mockFile": ""
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "name": "getAllDevice",
194
+ "protocol": "REST",
195
+ "method": "GET",
196
+ "entitypath": "{base_path}/{version}/config/device?{query}",
197
+ "requestSchema": "schema.json",
198
+ "responseSchema": "schema.json",
199
+ "timeout": 0,
200
+ "sendEmpty": false,
201
+ "sendGetBody": false,
202
+ "requestDatatype": "JSON",
203
+ "responseDatatype": "JSON",
204
+ "headers": {},
205
+ "responseObjects": [
206
+ {
207
+ "type": "default",
208
+ "key": "",
209
+ "mockFile": ""
210
+ }
211
+ ]
212
+ },
213
+ {
214
+ "name": "createDevice",
215
+ "protocol": "REST",
216
+ "method": "POST",
217
+ "entitypath": "{base_path}/{version}/config/device?{query}",
218
+ "requestSchema": "schema.json",
219
+ "responseSchema": "schema.json",
220
+ "timeout": 0,
221
+ "sendEmpty": false,
222
+ "requestDatatype": "JSON",
223
+ "responseDatatype": "JSON",
224
+ "headers": {},
225
+ "responseObjects": [
226
+ {
227
+ "type": "default",
228
+ "key": "",
229
+ "mockFile": ""
230
+ }
231
+ ]
232
+ },
233
+ {
234
+ "name": "getGui",
235
+ "protocol": "REST",
236
+ "method": "GET",
237
+ "entitypath": "{base_path}/{version}/config/device/gui/{pathv1}?{query}",
238
+ "requestSchema": "schema.json",
239
+ "responseSchema": "schema.json",
240
+ "timeout": 0,
241
+ "sendEmpty": false,
242
+ "sendGetBody": false,
243
+ "requestDatatype": "JSON",
244
+ "responseDatatype": "JSON",
245
+ "headers": {},
246
+ "responseObjects": [
247
+ {
248
+ "type": "default",
249
+ "key": "",
250
+ "mockFile": ""
251
+ }
252
+ ]
253
+ },
254
+ {
255
+ "name": "updateRefreshOntsCount",
256
+ "protocol": "REST",
257
+ "method": "PUT",
258
+ "entitypath": "{base_path}/{version}/config/device/refresh-onts-count?{query}",
259
+ "requestSchema": "schema.json",
260
+ "responseSchema": "schema.json",
261
+ "timeout": 0,
262
+ "sendEmpty": false,
263
+ "requestDatatype": "JSON",
264
+ "responseDatatype": "JSON",
265
+ "headers": {},
266
+ "responseObjects": [
267
+ {
268
+ "type": "default",
269
+ "key": "",
270
+ "mockFile": ""
271
+ }
272
+ ]
273
+ },
274
+ {
275
+ "name": "getFeaturesByDevice",
276
+ "protocol": "REST",
277
+ "method": "GET",
278
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/features?{query}",
279
+ "requestSchema": "schema.json",
280
+ "responseSchema": "schema.json",
281
+ "timeout": 0,
282
+ "sendEmpty": false,
283
+ "sendGetBody": false,
284
+ "requestDatatype": "JSON",
285
+ "responseDatatype": "JSON",
286
+ "headers": {},
287
+ "responseObjects": [
288
+ {
289
+ "type": "default",
290
+ "key": "",
291
+ "mockFile": ""
292
+ }
293
+ ]
294
+ },
295
+ {
296
+ "name": "getTspByDevice",
297
+ "protocol": "REST",
298
+ "method": "GET",
299
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/interface/tsp?{query}",
300
+ "requestSchema": "schema.json",
301
+ "responseSchema": "schema.json",
302
+ "timeout": 0,
303
+ "sendEmpty": false,
304
+ "sendGetBody": false,
305
+ "requestDatatype": "JSON",
306
+ "responseDatatype": "JSON",
307
+ "headers": {},
308
+ "responseObjects": [
309
+ {
310
+ "type": "default",
311
+ "key": "",
312
+ "mockFile": ""
313
+ }
314
+ ]
315
+ },
316
+ {
317
+ "name": "getDeviceByName",
318
+ "protocol": "REST",
319
+ "method": "GET",
320
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}?{query}",
321
+ "requestSchema": "schema.json",
322
+ "responseSchema": "schema.json",
323
+ "timeout": 0,
324
+ "sendEmpty": false,
325
+ "sendGetBody": false,
326
+ "requestDatatype": "JSON",
327
+ "responseDatatype": "JSON",
328
+ "headers": {},
329
+ "responseObjects": [
330
+ {
331
+ "type": "default",
332
+ "key": "",
333
+ "mockFile": ""
334
+ }
335
+ ]
336
+ },
337
+ {
338
+ "name": "updateDeviceByName",
339
+ "protocol": "REST",
340
+ "method": "PUT",
341
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}?{query}",
342
+ "requestSchema": "schema.json",
343
+ "responseSchema": "schema.json",
344
+ "timeout": 0,
345
+ "sendEmpty": false,
346
+ "requestDatatype": "JSON",
347
+ "responseDatatype": "JSON",
348
+ "headers": {},
349
+ "responseObjects": [
350
+ {
351
+ "type": "default",
352
+ "key": "",
353
+ "mockFile": ""
354
+ }
355
+ ]
356
+ },
357
+ {
358
+ "name": "deleteDeviceByName",
359
+ "protocol": "REST",
360
+ "method": "DELETE",
361
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}?{query}",
362
+ "requestSchema": "schema.json",
363
+ "responseSchema": "schema.json",
364
+ "timeout": 0,
365
+ "sendEmpty": false,
366
+ "requestDatatype": "JSON",
367
+ "responseDatatype": "JSON",
368
+ "headers": {},
369
+ "responseObjects": [
370
+ {
371
+ "type": "default",
372
+ "key": "",
373
+ "mockFile": ""
374
+ }
375
+ ]
376
+ },
377
+ {
378
+ "name": "getProfileSynFailRecordsByName",
379
+ "protocol": "REST",
380
+ "method": "GET",
381
+ "entitypath": "{base_path}/{version}/config/device/{pathv1}/profileSynFailRecords?{query}",
382
+ "requestSchema": "schema.json",
383
+ "responseSchema": "schema.json",
384
+ "timeout": 0,
385
+ "sendEmpty": false,
386
+ "sendGetBody": false,
387
+ "requestDatatype": "JSON",
388
+ "responseDatatype": "JSON",
389
+ "headers": {},
390
+ "responseObjects": [
391
+ {
392
+ "type": "default",
393
+ "key": "",
394
+ "mockFile": ""
395
+ }
396
+ ]
397
+ },
398
+ {
399
+ "name": "getAllEnvironmentAlarm",
400
+ "protocol": "REST",
401
+ "method": "GET",
402
+ "entitypath": "{base_path}/{version}/config/environment-alarm?{query}",
403
+ "requestSchema": "schema.json",
404
+ "responseSchema": "schema.json",
405
+ "timeout": 0,
406
+ "sendEmpty": false,
407
+ "sendGetBody": false,
408
+ "requestDatatype": "JSON",
409
+ "responseDatatype": "JSON",
410
+ "headers": {},
411
+ "responseObjects": [
412
+ {
413
+ "type": "default",
414
+ "key": "",
415
+ "mockFile": ""
416
+ }
417
+ ]
418
+ },
419
+ {
420
+ "name": "getAllGlobalont",
421
+ "protocol": "REST",
422
+ "method": "GET",
423
+ "entitypath": "{base_path}/{version}/config/globalont?{query}",
424
+ "requestSchema": "schema.json",
425
+ "responseSchema": "schema.json",
426
+ "timeout": 0,
427
+ "sendEmpty": false,
428
+ "sendGetBody": false,
429
+ "requestDatatype": "JSON",
430
+ "responseDatatype": "JSON",
431
+ "headers": {},
432
+ "responseObjects": [
433
+ {
434
+ "type": "default",
435
+ "key": "",
436
+ "mockFile": ""
437
+ }
438
+ ]
439
+ },
440
+ {
441
+ "name": "getAllGlobalVlanid",
442
+ "protocol": "REST",
443
+ "method": "GET",
444
+ "entitypath": "{base_path}/{version}/config/globalont/global-vlanid?{query}",
445
+ "requestSchema": "schema.json",
446
+ "responseSchema": "schema.json",
447
+ "timeout": 0,
448
+ "sendEmpty": false,
449
+ "sendGetBody": false,
450
+ "requestDatatype": "JSON",
451
+ "responseDatatype": "JSON",
452
+ "headers": {},
453
+ "responseObjects": [
454
+ {
455
+ "type": "default",
456
+ "key": "",
457
+ "mockFile": ""
458
+ }
459
+ ]
460
+ },
461
+ {
462
+ "name": "getAllUnassignedOnt",
463
+ "protocol": "REST",
464
+ "method": "GET",
465
+ "entitypath": "{base_path}/{version}/config/globalont/unassigned-ont?{query}",
466
+ "requestSchema": "schema.json",
467
+ "responseSchema": "schema.json",
468
+ "timeout": 0,
469
+ "sendEmpty": false,
470
+ "sendGetBody": false,
471
+ "requestDatatype": "JSON",
472
+ "responseDatatype": "JSON",
473
+ "headers": {},
474
+ "responseObjects": [
475
+ {
476
+ "type": "default",
477
+ "key": "",
478
+ "mockFile": ""
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "name": "getUnassignedOnt",
484
+ "protocol": "REST",
485
+ "method": "GET",
486
+ "entitypath": "{base_path}/{version}/config/globalont/unassigned-ont/{pathv1}?{query}",
487
+ "requestSchema": "schema.json",
488
+ "responseSchema": "schema.json",
489
+ "timeout": 0,
490
+ "sendEmpty": false,
491
+ "sendGetBody": false,
492
+ "requestDatatype": "JSON",
493
+ "responseDatatype": "JSON",
494
+ "headers": {},
495
+ "responseObjects": [
496
+ {
497
+ "type": "default",
498
+ "key": "",
499
+ "mockFile": ""
500
+ }
501
+ ]
502
+ },
503
+ {
504
+ "name": "getGlobalont",
505
+ "protocol": "REST",
506
+ "method": "GET",
507
+ "entitypath": "{base_path}/{version}/config/globalont/{pathv1}?{query}",
508
+ "requestSchema": "schema.json",
509
+ "responseSchema": "schema.json",
510
+ "timeout": 0,
511
+ "sendEmpty": false,
512
+ "sendGetBody": false,
513
+ "requestDatatype": "JSON",
514
+ "responseDatatype": "JSON",
515
+ "headers": {},
516
+ "responseObjects": [
517
+ {
518
+ "type": "default",
519
+ "key": "",
520
+ "mockFile": ""
521
+ }
522
+ ]
523
+ },
524
+ {
525
+ "name": "getAllHostname",
526
+ "protocol": "REST",
527
+ "method": "GET",
528
+ "entitypath": "{base_path}/{version}/config/hostname?{query}",
529
+ "requestSchema": "schema.json",
530
+ "responseSchema": "schema.json",
531
+ "timeout": 0,
532
+ "sendEmpty": false,
533
+ "sendGetBody": false,
534
+ "requestDatatype": "JSON",
535
+ "responseDatatype": "JSON",
536
+ "headers": {},
537
+ "responseObjects": [
538
+ {
539
+ "type": "default",
540
+ "key": "",
541
+ "mockFile": ""
542
+ }
543
+ ]
544
+ },
545
+ {
546
+ "name": "getAllInbandManagementInterface",
547
+ "protocol": "REST",
548
+ "method": "GET",
549
+ "entitypath": "{base_path}/{version}/config/inband-management-interface?{query}",
550
+ "requestSchema": "schema.json",
551
+ "responseSchema": "schema.json",
552
+ "timeout": 0,
553
+ "sendEmpty": false,
554
+ "sendGetBody": false,
555
+ "requestDatatype": "JSON",
556
+ "responseDatatype": "JSON",
557
+ "headers": {},
558
+ "responseObjects": [
559
+ {
560
+ "type": "default",
561
+ "key": "",
562
+ "mockFile": ""
563
+ }
564
+ ]
565
+ },
566
+ {
567
+ "name": "getAllIpStaticRoute",
568
+ "protocol": "REST",
569
+ "method": "GET",
570
+ "entitypath": "{base_path}/{version}/config/ip-static-route?{query}",
571
+ "requestSchema": "schema.json",
572
+ "responseSchema": "schema.json",
573
+ "timeout": 0,
574
+ "sendEmpty": false,
575
+ "sendGetBody": false,
576
+ "requestDatatype": "JSON",
577
+ "responseDatatype": "JSON",
578
+ "headers": {},
579
+ "responseObjects": [
580
+ {
581
+ "type": "default",
582
+ "key": "",
583
+ "mockFile": ""
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "name": "getAllMgtInterface",
589
+ "protocol": "REST",
590
+ "method": "GET",
591
+ "entitypath": "{base_path}/{version}/config/mgt-interface?{query}",
592
+ "requestSchema": "schema.json",
593
+ "responseSchema": "schema.json",
594
+ "timeout": 0,
595
+ "sendEmpty": false,
596
+ "sendGetBody": false,
597
+ "requestDatatype": "JSON",
598
+ "responseDatatype": "JSON",
599
+ "headers": {},
600
+ "responseObjects": [
601
+ {
602
+ "type": "default",
603
+ "key": "",
604
+ "mockFile": ""
605
+ }
606
+ ]
607
+ },
608
+ {
609
+ "name": "getAllNtp",
610
+ "protocol": "REST",
611
+ "method": "GET",
612
+ "entitypath": "{base_path}/{version}/config/ntp?{query}",
613
+ "requestSchema": "schema.json",
614
+ "responseSchema": "schema.json",
615
+ "timeout": 0,
616
+ "sendEmpty": false,
617
+ "sendGetBody": false,
618
+ "requestDatatype": "JSON",
619
+ "responseDatatype": "JSON",
620
+ "headers": {},
621
+ "responseObjects": [
622
+ {
623
+ "type": "default",
624
+ "key": "",
625
+ "mockFile": ""
626
+ }
627
+ ]
628
+ },
629
+ {
630
+ "name": "getAllReserveVlanSetting",
631
+ "protocol": "REST",
632
+ "method": "GET",
633
+ "entitypath": "{base_path}/{version}/config/reserve-vlan-setting?{query}",
634
+ "requestSchema": "schema.json",
635
+ "responseSchema": "schema.json",
636
+ "timeout": 0,
637
+ "sendEmpty": false,
638
+ "sendGetBody": false,
639
+ "requestDatatype": "JSON",
640
+ "responseDatatype": "JSON",
641
+ "headers": {},
642
+ "responseObjects": [
643
+ {
644
+ "type": "default",
645
+ "key": "",
646
+ "mockFile": ""
647
+ }
648
+ ]
649
+ },
650
+ {
651
+ "name": "getAllRouteConfig",
652
+ "protocol": "REST",
653
+ "method": "GET",
654
+ "entitypath": "{base_path}/{version}/config/route-config?{query}",
655
+ "requestSchema": "schema.json",
656
+ "responseSchema": "schema.json",
657
+ "timeout": 0,
658
+ "sendEmpty": false,
659
+ "sendGetBody": false,
660
+ "requestDatatype": "JSON",
661
+ "responseDatatype": "JSON",
662
+ "headers": {},
663
+ "responseObjects": [
664
+ {
665
+ "type": "default",
666
+ "key": "",
667
+ "mockFile": ""
668
+ }
669
+ ]
670
+ },
671
+ {
672
+ "name": "getAllSyslog1",
673
+ "protocol": "REST",
674
+ "method": "GET",
675
+ "entitypath": "{base_path}/{version}/config/syslog?{query}",
676
+ "requestSchema": "schema.json",
677
+ "responseSchema": "schema.json",
678
+ "timeout": 0,
679
+ "sendEmpty": false,
680
+ "sendGetBody": false,
681
+ "requestDatatype": "JSON",
682
+ "responseDatatype": "JSON",
683
+ "headers": {},
684
+ "responseObjects": [
685
+ {
686
+ "type": "default",
687
+ "key": "",
688
+ "mockFile": ""
689
+ }
690
+ ]
691
+ },
692
+ {
693
+ "name": "getSyslogByIp1",
694
+ "protocol": "REST",
695
+ "method": "GET",
696
+ "entitypath": "{base_path}/{version}/config/syslog/{pathv1}?{query}",
697
+ "requestSchema": "schema.json",
698
+ "responseSchema": "schema.json",
699
+ "timeout": 0,
700
+ "sendEmpty": false,
701
+ "sendGetBody": false,
702
+ "requestDatatype": "JSON",
703
+ "responseDatatype": "JSON",
704
+ "headers": {},
705
+ "responseObjects": [
706
+ {
707
+ "type": "default",
708
+ "key": "",
709
+ "mockFile": ""
710
+ }
711
+ ]
712
+ },
713
+ {
714
+ "name": "getAllTacacs",
715
+ "protocol": "REST",
716
+ "method": "GET",
717
+ "entitypath": "{base_path}/{version}/config/tacacs?{query}",
718
+ "requestSchema": "schema.json",
719
+ "responseSchema": "schema.json",
720
+ "timeout": 0,
721
+ "sendEmpty": false,
722
+ "sendGetBody": false,
723
+ "requestDatatype": "JSON",
724
+ "responseDatatype": "JSON",
725
+ "headers": {},
726
+ "responseObjects": [
727
+ {
728
+ "type": "default",
729
+ "key": "",
730
+ "mockFile": ""
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "name": "getAllTime",
736
+ "protocol": "REST",
737
+ "method": "GET",
738
+ "entitypath": "{base_path}/{version}/config/tod-setting/time?{query}",
739
+ "requestSchema": "schema.json",
740
+ "responseSchema": "schema.json",
741
+ "timeout": 0,
742
+ "sendEmpty": false,
743
+ "sendGetBody": false,
744
+ "requestDatatype": "JSON",
745
+ "responseDatatype": "JSON",
746
+ "headers": {},
747
+ "responseObjects": [
748
+ {
749
+ "type": "default",
750
+ "key": "",
751
+ "mockFile": ""
752
+ }
753
+ ]
754
+ },
755
+ {
756
+ "name": "getAllTimezone",
757
+ "protocol": "REST",
758
+ "method": "GET",
759
+ "entitypath": "{base_path}/{version}/config/tod-setting/timezone?{query}",
760
+ "requestSchema": "schema.json",
761
+ "responseSchema": "schema.json",
762
+ "timeout": 0,
763
+ "sendEmpty": false,
764
+ "sendGetBody": false,
765
+ "requestDatatype": "JSON",
766
+ "responseDatatype": "JSON",
767
+ "headers": {},
768
+ "responseObjects": [
769
+ {
770
+ "type": "default",
771
+ "key": "",
772
+ "mockFile": ""
773
+ }
774
+ ]
775
+ },
776
+ {
777
+ "name": "getAllVersion",
778
+ "protocol": "REST",
779
+ "method": "GET",
780
+ "entitypath": "{base_path}/{version}/config/version?{query}",
781
+ "requestSchema": "schema.json",
782
+ "responseSchema": "schema.json",
783
+ "timeout": 0,
784
+ "sendEmpty": false,
785
+ "sendGetBody": false,
786
+ "requestDatatype": "JSON",
787
+ "responseDatatype": "JSON",
788
+ "headers": {},
789
+ "responseObjects": [
790
+ {
791
+ "type": "default",
792
+ "key": "",
793
+ "mockFile": ""
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "name": "getAllCosqProfile1",
799
+ "protocol": "REST",
800
+ "method": "GET",
801
+ "entitypath": "{base_path}/{version}/ems/profile/cosq-profile?{query}",
802
+ "requestSchema": "schema.json",
803
+ "responseSchema": "schema.json",
804
+ "timeout": 0,
805
+ "sendEmpty": false,
806
+ "sendGetBody": false,
807
+ "requestDatatype": "JSON",
808
+ "responseDatatype": "JSON",
809
+ "headers": {},
810
+ "responseObjects": [
811
+ {
812
+ "type": "default",
813
+ "key": "",
814
+ "mockFile": ""
815
+ }
816
+ ]
817
+ },
818
+ {
819
+ "name": "getRingmembersByDevice",
820
+ "protocol": "REST",
821
+ "method": "GET",
822
+ "entitypath": "{base_path}/{version}/erps/inventory/device/{pathv1}/interface/ringmembers?{query}",
823
+ "requestSchema": "schema.json",
824
+ "responseSchema": "schema.json",
825
+ "timeout": 0,
826
+ "sendEmpty": false,
827
+ "sendGetBody": false,
828
+ "requestDatatype": "JSON",
829
+ "responseDatatype": "JSON",
830
+ "headers": {},
831
+ "responseObjects": [
832
+ {
833
+ "type": "default",
834
+ "key": "",
835
+ "mockFile": ""
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "name": "getAllRouteConfig1",
841
+ "protocol": "REST",
842
+ "method": "GET",
843
+ "entitypath": "{base_path}/{version}/route-config?{query}",
844
+ "requestSchema": "schema.json",
845
+ "responseSchema": "schema.json",
846
+ "timeout": 0,
847
+ "sendEmpty": false,
848
+ "sendGetBody": false,
849
+ "requestDatatype": "JSON",
850
+ "responseDatatype": "JSON",
851
+ "headers": {},
852
+ "responseObjects": [
853
+ {
854
+ "type": "default",
855
+ "key": "",
856
+ "mockFile": ""
857
+ }
858
+ ]
859
+ }
860
+ ]
861
+ }