@itentialopensource/adapter-paragon_pathfinder 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 (98) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +2982 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +172 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +337 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +40341 -0
  23. package/adapterBase.js +1787 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +49 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +94 -0
  31. package/entities/.system/schemaTokenResp.json +65 -0
  32. package/entities/Authentication/action.json +45 -0
  33. package/entities/Authentication/schema.json +20 -0
  34. package/entities/Authorization/action.json +105 -0
  35. package/entities/Authorization/schema.json +23 -0
  36. package/entities/CommandService/action.json +44 -0
  37. package/entities/CommandService/schema.json +20 -0
  38. package/entities/ConfigOperationService/action.json +184 -0
  39. package/entities/ConfigOperationService/schema.json +27 -0
  40. package/entities/ConfigResourceService/action.json +964 -0
  41. package/entities/ConfigResourceService/schema.json +66 -0
  42. package/entities/ConfigTemplateService/action.json +345 -0
  43. package/entities/ConfigTemplateService/schema.json +266 -0
  44. package/entities/DeviceLCMService/action.json +44 -0
  45. package/entities/DeviceLCMService/schema.json +20 -0
  46. package/entities/DeviceOnboardingService/action.json +105 -0
  47. package/entities/DeviceOnboardingService/schema.json +23 -0
  48. package/entities/DevicemanagerService/action.json +1770 -0
  49. package/entities/DevicemanagerService/schema.json +402 -0
  50. package/entities/DevicemodelService/action.json +2114 -0
  51. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportComponent-default.json +49 -0
  52. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDevice-default.json +29 -0
  53. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDeviceView-default.json +53 -0
  54. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportInterface-default.json +21 -0
  55. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicense-default.json +45 -0
  56. package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicenseFeature-default.json +41 -0
  57. package/entities/DevicemodelService/schema.json +419 -0
  58. package/entities/IamRPCService/action.json +872 -0
  59. package/entities/IamRPCService/schema.json +325 -0
  60. package/entities/IamService/action.json +2740 -0
  61. package/entities/IamService/mockdatafiles/iamServiceExportUserView-default.json +53 -0
  62. package/entities/IamService/schema.json +670 -0
  63. package/entities/InventoryService/action.json +164 -0
  64. package/entities/InventoryService/schema.json +26 -0
  65. package/error.json +190 -0
  66. package/package.json +87 -0
  67. package/pronghorn.json +100351 -0
  68. package/propertiesDecorators.json +14 -0
  69. package/propertiesSchema.json +1246 -0
  70. package/refs?service=git-upload-pack +0 -0
  71. package/report/adapterInfo.json +10 -0
  72. package/report/creationReport.json +2690 -0
  73. package/report/output.swagger.json +69945 -0
  74. package/sampleProperties.json +203 -0
  75. package/test/integration/adapterTestBasicGet.js +83 -0
  76. package/test/integration/adapterTestConnectivity.js +93 -0
  77. package/test/integration/adapterTestIntegration.js +35598 -0
  78. package/test/unit/adapterBaseTestUnit.js +949 -0
  79. package/test/unit/adapterTestUnit.js +14616 -0
  80. package/utils/adapterInfo.js +206 -0
  81. package/utils/addAuth.js +94 -0
  82. package/utils/artifactize.js +146 -0
  83. package/utils/basicGet.js +50 -0
  84. package/utils/checkMigrate.js +63 -0
  85. package/utils/entitiesToDB.js +178 -0
  86. package/utils/findPath.js +74 -0
  87. package/utils/methodDocumentor.js +225 -0
  88. package/utils/modify.js +154 -0
  89. package/utils/packModificationScript.js +35 -0
  90. package/utils/patches2bundledDeps.js +90 -0
  91. package/utils/pre-commit.sh +32 -0
  92. package/utils/removeHooks.js +20 -0
  93. package/utils/setup.js +33 -0
  94. package/utils/tbScript.js +246 -0
  95. package/utils/tbUtils.js +490 -0
  96. package/utils/testRunner.js +298 -0
  97. package/utils/troubleshootingAdapter.js +195 -0
  98. package/workflows/README.md +3 -0
@@ -0,0 +1,964 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "configResourceServiceEditSubinterfaceConfig",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/devicemanager/set-subinterface-config?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "configResourceServiceGetQosInterfaceConfig",
25
+ "protocol": "REST",
26
+ "method": "POST",
27
+ "entitypath": "{base_path}/{version}/devicemanager/get-qos-interface-config?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "requestDatatype": "JSON",
33
+ "responseDatatype": "JSON",
34
+ "headers": {},
35
+ "responseObjects": [
36
+ {
37
+ "type": "default",
38
+ "key": "",
39
+ "mockFile": ""
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "name": "configResourceServiceEditSslInitiationProfileConfig",
45
+ "protocol": "REST",
46
+ "method": "POST",
47
+ "entitypath": "{base_path}/{version}/devicemanager/set-ssl-initiation-profile-config?{query}",
48
+ "requestSchema": "schema.json",
49
+ "responseSchema": "schema.json",
50
+ "timeout": 0,
51
+ "sendEmpty": false,
52
+ "requestDatatype": "JSON",
53
+ "responseDatatype": "JSON",
54
+ "headers": {},
55
+ "responseObjects": [
56
+ {
57
+ "type": "default",
58
+ "key": "",
59
+ "mockFile": ""
60
+ }
61
+ ]
62
+ },
63
+ {
64
+ "name": "configResourceServiceEditQosInterfaceConfig",
65
+ "protocol": "REST",
66
+ "method": "POST",
67
+ "entitypath": "{base_path}/{version}/devicemanager/set-qos-interface-config?{query}",
68
+ "requestSchema": "schema.json",
69
+ "responseSchema": "schema.json",
70
+ "timeout": 0,
71
+ "sendEmpty": false,
72
+ "requestDatatype": "JSON",
73
+ "responseDatatype": "JSON",
74
+ "headers": {},
75
+ "responseObjects": [
76
+ {
77
+ "type": "default",
78
+ "key": "",
79
+ "mockFile": ""
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "name": "configResourceServiceGetAclInterfaceConfig",
85
+ "protocol": "REST",
86
+ "method": "POST",
87
+ "entitypath": "{base_path}/{version}/devicemanager/get-acl-interface-config?{query}",
88
+ "requestSchema": "schema.json",
89
+ "responseSchema": "schema.json",
90
+ "timeout": 0,
91
+ "sendEmpty": false,
92
+ "requestDatatype": "JSON",
93
+ "responseDatatype": "JSON",
94
+ "headers": {},
95
+ "responseObjects": [
96
+ {
97
+ "type": "default",
98
+ "key": "",
99
+ "mockFile": ""
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ "name": "configResourceServiceEditStpConfig",
105
+ "protocol": "REST",
106
+ "method": "POST",
107
+ "entitypath": "{base_path}/{version}/devicemanager/set-stp-config?{query}",
108
+ "requestSchema": "schema.json",
109
+ "responseSchema": "schema.json",
110
+ "timeout": 0,
111
+ "sendEmpty": false,
112
+ "requestDatatype": "JSON",
113
+ "responseDatatype": "JSON",
114
+ "headers": {},
115
+ "responseObjects": [
116
+ {
117
+ "type": "default",
118
+ "key": "",
119
+ "mockFile": ""
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "name": "configResourceServiceGetIgmpConfig",
125
+ "protocol": "REST",
126
+ "method": "POST",
127
+ "entitypath": "{base_path}/{version}/devicemanager/get-igmp-config?{query}",
128
+ "requestSchema": "schema.json",
129
+ "responseSchema": "schema.json",
130
+ "timeout": 0,
131
+ "sendEmpty": false,
132
+ "requestDatatype": "JSON",
133
+ "responseDatatype": "JSON",
134
+ "headers": {},
135
+ "responseObjects": [
136
+ {
137
+ "type": "default",
138
+ "key": "",
139
+ "mockFile": ""
140
+ }
141
+ ]
142
+ },
143
+ {
144
+ "name": "configResourceServiceEditEvpnConfig",
145
+ "protocol": "REST",
146
+ "method": "POST",
147
+ "entitypath": "{base_path}/{version}/devicemanager/set-evpn-config?{query}",
148
+ "requestSchema": "schema.json",
149
+ "responseSchema": "schema.json",
150
+ "timeout": 0,
151
+ "sendEmpty": false,
152
+ "requestDatatype": "JSON",
153
+ "responseDatatype": "JSON",
154
+ "headers": {},
155
+ "responseObjects": [
156
+ {
157
+ "type": "default",
158
+ "key": "",
159
+ "mockFile": ""
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ "name": "configResourceServiceGetZoneConfig",
165
+ "protocol": "REST",
166
+ "method": "POST",
167
+ "entitypath": "{base_path}/{version}/devicemanager/get-zone-config?{query}",
168
+ "requestSchema": "schema.json",
169
+ "responseSchema": "schema.json",
170
+ "timeout": 0,
171
+ "sendEmpty": false,
172
+ "requestDatatype": "JSON",
173
+ "responseDatatype": "JSON",
174
+ "headers": {},
175
+ "responseObjects": [
176
+ {
177
+ "type": "default",
178
+ "key": "",
179
+ "mockFile": ""
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "name": "configResourceServiceGetAsPathSetConfig",
185
+ "protocol": "REST",
186
+ "method": "POST",
187
+ "entitypath": "{base_path}/{version}/devicemanager/get-as-path-set-config?{query}",
188
+ "requestSchema": "schema.json",
189
+ "responseSchema": "schema.json",
190
+ "timeout": 0,
191
+ "sendEmpty": false,
192
+ "requestDatatype": "JSON",
193
+ "responseDatatype": "JSON",
194
+ "headers": {},
195
+ "responseObjects": [
196
+ {
197
+ "type": "default",
198
+ "key": "",
199
+ "mockFile": ""
200
+ }
201
+ ]
202
+ },
203
+ {
204
+ "name": "configResourceServiceGetSubinterfaceConfig",
205
+ "protocol": "REST",
206
+ "method": "POST",
207
+ "entitypath": "{base_path}/{version}/devicemanager/get-subinterface-config?{query}",
208
+ "requestSchema": "schema.json",
209
+ "responseSchema": "schema.json",
210
+ "timeout": 0,
211
+ "sendEmpty": false,
212
+ "requestDatatype": "JSON",
213
+ "responseDatatype": "JSON",
214
+ "headers": {},
215
+ "responseObjects": [
216
+ {
217
+ "type": "default",
218
+ "key": "",
219
+ "mockFile": ""
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "name": "configResourceServiceGetInterfaceConfig",
225
+ "protocol": "REST",
226
+ "method": "POST",
227
+ "entitypath": "{base_path}/{version}/devicemanager/get-interface-config?{query}",
228
+ "requestSchema": "schema.json",
229
+ "responseSchema": "schema.json",
230
+ "timeout": 0,
231
+ "sendEmpty": false,
232
+ "requestDatatype": "JSON",
233
+ "responseDatatype": "JSON",
234
+ "headers": {},
235
+ "responseObjects": [
236
+ {
237
+ "type": "default",
238
+ "key": "",
239
+ "mockFile": ""
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "name": "configResourceServiceEditSecurityStreamServerConfig",
245
+ "protocol": "REST",
246
+ "method": "POST",
247
+ "entitypath": "{base_path}/{version}/devicemanager/set-security-stream-server-config?{query}",
248
+ "requestSchema": "schema.json",
249
+ "responseSchema": "schema.json",
250
+ "timeout": 0,
251
+ "sendEmpty": false,
252
+ "requestDatatype": "JSON",
253
+ "responseDatatype": "JSON",
254
+ "headers": {},
255
+ "responseObjects": [
256
+ {
257
+ "type": "default",
258
+ "key": "",
259
+ "mockFile": ""
260
+ }
261
+ ]
262
+ },
263
+ {
264
+ "name": "configResourceServiceEditSystemConfig",
265
+ "protocol": "REST",
266
+ "method": "POST",
267
+ "entitypath": "{base_path}/{version}/devicemanager/set-system-config?{query}",
268
+ "requestSchema": "schema.json",
269
+ "responseSchema": "schema.json",
270
+ "timeout": 0,
271
+ "sendEmpty": false,
272
+ "requestDatatype": "JSON",
273
+ "responseDatatype": "JSON",
274
+ "headers": {},
275
+ "responseObjects": [
276
+ {
277
+ "type": "default",
278
+ "key": "",
279
+ "mockFile": ""
280
+ }
281
+ ]
282
+ },
283
+ {
284
+ "name": "configResourceServiceEditCommunitySetConfig",
285
+ "protocol": "REST",
286
+ "method": "POST",
287
+ "entitypath": "{base_path}/{version}/devicemanager/set-community-set-config?{query}",
288
+ "requestSchema": "schema.json",
289
+ "responseSchema": "schema.json",
290
+ "timeout": 0,
291
+ "sendEmpty": false,
292
+ "requestDatatype": "JSON",
293
+ "responseDatatype": "JSON",
294
+ "headers": {},
295
+ "responseObjects": [
296
+ {
297
+ "type": "default",
298
+ "key": "",
299
+ "mockFile": ""
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "name": "configResourceServiceGetStaticRoutesConfig",
305
+ "protocol": "REST",
306
+ "method": "POST",
307
+ "entitypath": "{base_path}/{version}/devicemanager/get-static-routes-config?{query}",
308
+ "requestSchema": "schema.json",
309
+ "responseSchema": "schema.json",
310
+ "timeout": 0,
311
+ "sendEmpty": false,
312
+ "requestDatatype": "JSON",
313
+ "responseDatatype": "JSON",
314
+ "headers": {},
315
+ "responseObjects": [
316
+ {
317
+ "type": "default",
318
+ "key": "",
319
+ "mockFile": ""
320
+ }
321
+ ]
322
+ },
323
+ {
324
+ "name": "configResourceServiceGetStpConfig",
325
+ "protocol": "REST",
326
+ "method": "POST",
327
+ "entitypath": "{base_path}/{version}/devicemanager/get-stp-config?{query}",
328
+ "requestSchema": "schema.json",
329
+ "responseSchema": "schema.json",
330
+ "timeout": 0,
331
+ "sendEmpty": false,
332
+ "requestDatatype": "JSON",
333
+ "responseDatatype": "JSON",
334
+ "headers": {},
335
+ "responseObjects": [
336
+ {
337
+ "type": "default",
338
+ "key": "",
339
+ "mockFile": ""
340
+ }
341
+ ]
342
+ },
343
+ {
344
+ "name": "configResourceServiceGetSecurityStreamServerConfig",
345
+ "protocol": "REST",
346
+ "method": "POST",
347
+ "entitypath": "{base_path}/{version}/devicemanager/get-security-stream-server-config?{query}",
348
+ "requestSchema": "schema.json",
349
+ "responseSchema": "schema.json",
350
+ "timeout": 0,
351
+ "sendEmpty": false,
352
+ "requestDatatype": "JSON",
353
+ "responseDatatype": "JSON",
354
+ "headers": {},
355
+ "responseObjects": [
356
+ {
357
+ "type": "default",
358
+ "key": "",
359
+ "mockFile": ""
360
+ }
361
+ ]
362
+ },
363
+ {
364
+ "name": "configResourceServiceEditBgpNeighborConfig",
365
+ "protocol": "REST",
366
+ "method": "POST",
367
+ "entitypath": "{base_path}/{version}/devicemanager/set-bgp-neighbor-config?{query}",
368
+ "requestSchema": "schema.json",
369
+ "responseSchema": "schema.json",
370
+ "timeout": 0,
371
+ "sendEmpty": false,
372
+ "requestDatatype": "JSON",
373
+ "responseDatatype": "JSON",
374
+ "headers": {},
375
+ "responseObjects": [
376
+ {
377
+ "type": "default",
378
+ "key": "",
379
+ "mockFile": ""
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "name": "configResourceServiceEditBgpPeerGroupConfig",
385
+ "protocol": "REST",
386
+ "method": "POST",
387
+ "entitypath": "{base_path}/{version}/devicemanager/set-bgp-peer-group-config?{query}",
388
+ "requestSchema": "schema.json",
389
+ "responseSchema": "schema.json",
390
+ "timeout": 0,
391
+ "sendEmpty": false,
392
+ "requestDatatype": "JSON",
393
+ "responseDatatype": "JSON",
394
+ "headers": {},
395
+ "responseObjects": [
396
+ {
397
+ "type": "default",
398
+ "key": "",
399
+ "mockFile": ""
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "name": "configResourceServiceEditAclInterfaceConfig",
405
+ "protocol": "REST",
406
+ "method": "POST",
407
+ "entitypath": "{base_path}/{version}/devicemanager/set-acl-interface-config?{query}",
408
+ "requestSchema": "schema.json",
409
+ "responseSchema": "schema.json",
410
+ "timeout": 0,
411
+ "sendEmpty": false,
412
+ "requestDatatype": "JSON",
413
+ "responseDatatype": "JSON",
414
+ "headers": {},
415
+ "responseObjects": [
416
+ {
417
+ "type": "default",
418
+ "key": "",
419
+ "mockFile": ""
420
+ }
421
+ ]
422
+ },
423
+ {
424
+ "name": "configResourceServiceGetEvpnConfig",
425
+ "protocol": "REST",
426
+ "method": "POST",
427
+ "entitypath": "{base_path}/{version}/devicemanager/get-evpn-config?{query}",
428
+ "requestSchema": "schema.json",
429
+ "responseSchema": "schema.json",
430
+ "timeout": 0,
431
+ "sendEmpty": false,
432
+ "requestDatatype": "JSON",
433
+ "responseDatatype": "JSON",
434
+ "headers": {},
435
+ "responseObjects": [
436
+ {
437
+ "type": "default",
438
+ "key": "",
439
+ "mockFile": ""
440
+ }
441
+ ]
442
+ },
443
+ {
444
+ "name": "configResourceServiceEditNetworkInstanceConfig",
445
+ "protocol": "REST",
446
+ "method": "POST",
447
+ "entitypath": "{base_path}/{version}/devicemanager/set-network-instance-config?{query}",
448
+ "requestSchema": "schema.json",
449
+ "responseSchema": "schema.json",
450
+ "timeout": 0,
451
+ "sendEmpty": false,
452
+ "requestDatatype": "JSON",
453
+ "responseDatatype": "JSON",
454
+ "headers": {},
455
+ "responseObjects": [
456
+ {
457
+ "type": "default",
458
+ "key": "",
459
+ "mockFile": ""
460
+ }
461
+ ]
462
+ },
463
+ {
464
+ "name": "configResourceServiceEditIgmpConfig",
465
+ "protocol": "REST",
466
+ "method": "POST",
467
+ "entitypath": "{base_path}/{version}/devicemanager/set-igmp-config?{query}",
468
+ "requestSchema": "schema.json",
469
+ "responseSchema": "schema.json",
470
+ "timeout": 0,
471
+ "sendEmpty": false,
472
+ "requestDatatype": "JSON",
473
+ "responseDatatype": "JSON",
474
+ "headers": {},
475
+ "responseObjects": [
476
+ {
477
+ "type": "default",
478
+ "key": "",
479
+ "mockFile": ""
480
+ }
481
+ ]
482
+ },
483
+ {
484
+ "name": "configResourceServiceEditInterfaceConfig",
485
+ "protocol": "REST",
486
+ "method": "POST",
487
+ "entitypath": "{base_path}/{version}/devicemanager/set-interface-config?{query}",
488
+ "requestSchema": "schema.json",
489
+ "responseSchema": "schema.json",
490
+ "timeout": 0,
491
+ "sendEmpty": 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": "configResourceServiceGetLacpConfig",
505
+ "protocol": "REST",
506
+ "method": "POST",
507
+ "entitypath": "{base_path}/{version}/devicemanager/get-lacp-config?{query}",
508
+ "requestSchema": "schema.json",
509
+ "responseSchema": "schema.json",
510
+ "timeout": 0,
511
+ "sendEmpty": false,
512
+ "requestDatatype": "JSON",
513
+ "responseDatatype": "JSON",
514
+ "headers": {},
515
+ "responseObjects": [
516
+ {
517
+ "type": "default",
518
+ "key": "",
519
+ "mockFile": ""
520
+ }
521
+ ]
522
+ },
523
+ {
524
+ "name": "configResourceServiceEditVlanConfig",
525
+ "protocol": "REST",
526
+ "method": "POST",
527
+ "entitypath": "{base_path}/{version}/devicemanager/set-vlan-config?{query}",
528
+ "requestSchema": "schema.json",
529
+ "responseSchema": "schema.json",
530
+ "timeout": 0,
531
+ "sendEmpty": false,
532
+ "requestDatatype": "JSON",
533
+ "responseDatatype": "JSON",
534
+ "headers": {},
535
+ "responseObjects": [
536
+ {
537
+ "type": "default",
538
+ "key": "",
539
+ "mockFile": ""
540
+ }
541
+ ]
542
+ },
543
+ {
544
+ "name": "configResourceServiceEditSecurityLogConfig",
545
+ "protocol": "REST",
546
+ "method": "POST",
547
+ "entitypath": "{base_path}/{version}/devicemanager/set-security-log-config?{query}",
548
+ "requestSchema": "schema.json",
549
+ "responseSchema": "schema.json",
550
+ "timeout": 0,
551
+ "sendEmpty": false,
552
+ "requestDatatype": "JSON",
553
+ "responseDatatype": "JSON",
554
+ "headers": {},
555
+ "responseObjects": [
556
+ {
557
+ "type": "default",
558
+ "key": "",
559
+ "mockFile": ""
560
+ }
561
+ ]
562
+ },
563
+ {
564
+ "name": "configResourceServiceEditBgpGlobalConfig",
565
+ "protocol": "REST",
566
+ "method": "POST",
567
+ "entitypath": "{base_path}/{version}/devicemanager/set-bgp-global-config?{query}",
568
+ "requestSchema": "schema.json",
569
+ "responseSchema": "schema.json",
570
+ "timeout": 0,
571
+ "sendEmpty": false,
572
+ "requestDatatype": "JSON",
573
+ "responseDatatype": "JSON",
574
+ "headers": {},
575
+ "responseObjects": [
576
+ {
577
+ "type": "default",
578
+ "key": "",
579
+ "mockFile": ""
580
+ }
581
+ ]
582
+ },
583
+ {
584
+ "name": "configResourceServiceEditZoneConfig",
585
+ "protocol": "REST",
586
+ "method": "POST",
587
+ "entitypath": "{base_path}/{version}/devicemanager/set-zone-config?{query}",
588
+ "requestSchema": "schema.json",
589
+ "responseSchema": "schema.json",
590
+ "timeout": 0,
591
+ "sendEmpty": false,
592
+ "requestDatatype": "JSON",
593
+ "responseDatatype": "JSON",
594
+ "headers": {},
595
+ "responseObjects": [
596
+ {
597
+ "type": "default",
598
+ "key": "",
599
+ "mockFile": ""
600
+ }
601
+ ]
602
+ },
603
+ {
604
+ "name": "configResourceServiceGetSystemConfig",
605
+ "protocol": "REST",
606
+ "method": "POST",
607
+ "entitypath": "{base_path}/{version}/devicemanager/get-system-config?{query}",
608
+ "requestSchema": "schema.json",
609
+ "responseSchema": "schema.json",
610
+ "timeout": 0,
611
+ "sendEmpty": false,
612
+ "requestDatatype": "JSON",
613
+ "responseDatatype": "JSON",
614
+ "headers": {},
615
+ "responseObjects": [
616
+ {
617
+ "type": "default",
618
+ "key": "",
619
+ "mockFile": ""
620
+ }
621
+ ]
622
+ },
623
+ {
624
+ "name": "configResourceServiceGetBgpGlobalConfig",
625
+ "protocol": "REST",
626
+ "method": "POST",
627
+ "entitypath": "{base_path}/{version}/devicemanager/get-bgp-global-config?{query}",
628
+ "requestSchema": "schema.json",
629
+ "responseSchema": "schema.json",
630
+ "timeout": 0,
631
+ "sendEmpty": false,
632
+ "requestDatatype": "JSON",
633
+ "responseDatatype": "JSON",
634
+ "headers": {},
635
+ "responseObjects": [
636
+ {
637
+ "type": "default",
638
+ "key": "",
639
+ "mockFile": ""
640
+ }
641
+ ]
642
+ },
643
+ {
644
+ "name": "configResourceServiceEditStaticRoutesConfig",
645
+ "protocol": "REST",
646
+ "method": "POST",
647
+ "entitypath": "{base_path}/{version}/devicemanager/set-static-routes-config?{query}",
648
+ "requestSchema": "schema.json",
649
+ "responseSchema": "schema.json",
650
+ "timeout": 0,
651
+ "sendEmpty": false,
652
+ "requestDatatype": "JSON",
653
+ "responseDatatype": "JSON",
654
+ "headers": {},
655
+ "responseObjects": [
656
+ {
657
+ "type": "default",
658
+ "key": "",
659
+ "mockFile": ""
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "name": "configResourceServiceGetBgpPeerGroupConfig",
665
+ "protocol": "REST",
666
+ "method": "POST",
667
+ "entitypath": "{base_path}/{version}/devicemanager/get-bgp-peer-group-config?{query}",
668
+ "requestSchema": "schema.json",
669
+ "responseSchema": "schema.json",
670
+ "timeout": 0,
671
+ "sendEmpty": false,
672
+ "requestDatatype": "JSON",
673
+ "responseDatatype": "JSON",
674
+ "headers": {},
675
+ "responseObjects": [
676
+ {
677
+ "type": "default",
678
+ "key": "",
679
+ "mockFile": ""
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "name": "configResourceServiceGetCommunitySetConfig",
685
+ "protocol": "REST",
686
+ "method": "POST",
687
+ "entitypath": "{base_path}/{version}/devicemanager/get-community-set-config?{query}",
688
+ "requestSchema": "schema.json",
689
+ "responseSchema": "schema.json",
690
+ "timeout": 0,
691
+ "sendEmpty": false,
692
+ "requestDatatype": "JSON",
693
+ "responseDatatype": "JSON",
694
+ "headers": {},
695
+ "responseObjects": [
696
+ {
697
+ "type": "default",
698
+ "key": "",
699
+ "mockFile": ""
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ "name": "configResourceServiceGetNetworkInstanceConfig",
705
+ "protocol": "REST",
706
+ "method": "POST",
707
+ "entitypath": "{base_path}/{version}/devicemanager/get-network-instance-config?{query}",
708
+ "requestSchema": "schema.json",
709
+ "responseSchema": "schema.json",
710
+ "timeout": 0,
711
+ "sendEmpty": false,
712
+ "requestDatatype": "JSON",
713
+ "responseDatatype": "JSON",
714
+ "headers": {},
715
+ "responseObjects": [
716
+ {
717
+ "type": "default",
718
+ "key": "",
719
+ "mockFile": ""
720
+ }
721
+ ]
722
+ },
723
+ {
724
+ "name": "configResourceServiceEditPolicyDefinitionConfig",
725
+ "protocol": "REST",
726
+ "method": "POST",
727
+ "entitypath": "{base_path}/{version}/devicemanager/set-policy-definition-config?{query}",
728
+ "requestSchema": "schema.json",
729
+ "responseSchema": "schema.json",
730
+ "timeout": 0,
731
+ "sendEmpty": false,
732
+ "requestDatatype": "JSON",
733
+ "responseDatatype": "JSON",
734
+ "headers": {},
735
+ "responseObjects": [
736
+ {
737
+ "type": "default",
738
+ "key": "",
739
+ "mockFile": ""
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "name": "configResourceServiceGetVlanConfig",
745
+ "protocol": "REST",
746
+ "method": "POST",
747
+ "entitypath": "{base_path}/{version}/devicemanager/get-vlan-config?{query}",
748
+ "requestSchema": "schema.json",
749
+ "responseSchema": "schema.json",
750
+ "timeout": 0,
751
+ "sendEmpty": false,
752
+ "requestDatatype": "JSON",
753
+ "responseDatatype": "JSON",
754
+ "headers": {},
755
+ "responseObjects": [
756
+ {
757
+ "type": "default",
758
+ "key": "",
759
+ "mockFile": ""
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "name": "configResourceServiceGetSecurityLogConfig",
765
+ "protocol": "REST",
766
+ "method": "POST",
767
+ "entitypath": "{base_path}/{version}/devicemanager/get-security-log-config?{query}",
768
+ "requestSchema": "schema.json",
769
+ "responseSchema": "schema.json",
770
+ "timeout": 0,
771
+ "sendEmpty": false,
772
+ "requestDatatype": "JSON",
773
+ "responseDatatype": "JSON",
774
+ "headers": {},
775
+ "responseObjects": [
776
+ {
777
+ "type": "default",
778
+ "key": "",
779
+ "mockFile": ""
780
+ }
781
+ ]
782
+ },
783
+ {
784
+ "name": "configResourceServiceGetBgpNeighborConfig",
785
+ "protocol": "REST",
786
+ "method": "POST",
787
+ "entitypath": "{base_path}/{version}/devicemanager/get-bgp-neighbor-config?{query}",
788
+ "requestSchema": "schema.json",
789
+ "responseSchema": "schema.json",
790
+ "timeout": 0,
791
+ "sendEmpty": false,
792
+ "requestDatatype": "JSON",
793
+ "responseDatatype": "JSON",
794
+ "headers": {},
795
+ "responseObjects": [
796
+ {
797
+ "type": "default",
798
+ "key": "",
799
+ "mockFile": ""
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "name": "configResourceServiceEditQosClassifierConfig",
805
+ "protocol": "REST",
806
+ "method": "POST",
807
+ "entitypath": "{base_path}/{version}/devicemanager/set-qos-classifier-config?{query}",
808
+ "requestSchema": "schema.json",
809
+ "responseSchema": "schema.json",
810
+ "timeout": 0,
811
+ "sendEmpty": false,
812
+ "requestDatatype": "JSON",
813
+ "responseDatatype": "JSON",
814
+ "headers": {},
815
+ "responseObjects": [
816
+ {
817
+ "type": "default",
818
+ "key": "",
819
+ "mockFile": ""
820
+ }
821
+ ]
822
+ },
823
+ {
824
+ "name": "configResourceServiceGetSslInitiationProfileConfig",
825
+ "protocol": "REST",
826
+ "method": "POST",
827
+ "entitypath": "{base_path}/{version}/devicemanager/get-ssl-initiation-profile-config?{query}",
828
+ "requestSchema": "schema.json",
829
+ "responseSchema": "schema.json",
830
+ "timeout": 0,
831
+ "sendEmpty": false,
832
+ "requestDatatype": "JSON",
833
+ "responseDatatype": "JSON",
834
+ "headers": {},
835
+ "responseObjects": [
836
+ {
837
+ "type": "default",
838
+ "key": "",
839
+ "mockFile": ""
840
+ }
841
+ ]
842
+ },
843
+ {
844
+ "name": "configResourceServiceEditLacpConfig",
845
+ "protocol": "REST",
846
+ "method": "POST",
847
+ "entitypath": "{base_path}/{version}/devicemanager/set-lacp-config?{query}",
848
+ "requestSchema": "schema.json",
849
+ "responseSchema": "schema.json",
850
+ "timeout": 0,
851
+ "sendEmpty": false,
852
+ "requestDatatype": "JSON",
853
+ "responseDatatype": "JSON",
854
+ "headers": {},
855
+ "responseObjects": [
856
+ {
857
+ "type": "default",
858
+ "key": "",
859
+ "mockFile": ""
860
+ }
861
+ ]
862
+ },
863
+ {
864
+ "name": "configResourceServiceGetQosClassifierConfig",
865
+ "protocol": "REST",
866
+ "method": "POST",
867
+ "entitypath": "{base_path}/{version}/devicemanager/get-qos-classifier-config?{query}",
868
+ "requestSchema": "schema.json",
869
+ "responseSchema": "schema.json",
870
+ "timeout": 0,
871
+ "sendEmpty": false,
872
+ "requestDatatype": "JSON",
873
+ "responseDatatype": "JSON",
874
+ "headers": {},
875
+ "responseObjects": [
876
+ {
877
+ "type": "default",
878
+ "key": "",
879
+ "mockFile": ""
880
+ }
881
+ ]
882
+ },
883
+ {
884
+ "name": "configResourceServiceEditAsPathSetConfig",
885
+ "protocol": "REST",
886
+ "method": "POST",
887
+ "entitypath": "{base_path}/{version}/devicemanager/set-as-path-set-config?{query}",
888
+ "requestSchema": "schema.json",
889
+ "responseSchema": "schema.json",
890
+ "timeout": 0,
891
+ "sendEmpty": false,
892
+ "requestDatatype": "JSON",
893
+ "responseDatatype": "JSON",
894
+ "headers": {},
895
+ "responseObjects": [
896
+ {
897
+ "type": "default",
898
+ "key": "",
899
+ "mockFile": ""
900
+ }
901
+ ]
902
+ },
903
+ {
904
+ "name": "configResourceServiceGetPolicyDefinitionConfig",
905
+ "protocol": "REST",
906
+ "method": "POST",
907
+ "entitypath": "{base_path}/{version}/devicemanager/get-policy-definition-config?{query}",
908
+ "requestSchema": "schema.json",
909
+ "responseSchema": "schema.json",
910
+ "timeout": 0,
911
+ "sendEmpty": false,
912
+ "requestDatatype": "JSON",
913
+ "responseDatatype": "JSON",
914
+ "headers": {},
915
+ "responseObjects": [
916
+ {
917
+ "type": "default",
918
+ "key": "",
919
+ "mockFile": ""
920
+ }
921
+ ]
922
+ },
923
+ {
924
+ "name": "configResourceServiceGetAclSetConfig",
925
+ "protocol": "REST",
926
+ "method": "POST",
927
+ "entitypath": "{base_path}/{version}/devicemanager/get-acl-set-config?{query}",
928
+ "requestSchema": "schema.json",
929
+ "responseSchema": "schema.json",
930
+ "timeout": 0,
931
+ "sendEmpty": false,
932
+ "requestDatatype": "JSON",
933
+ "responseDatatype": "JSON",
934
+ "headers": {},
935
+ "responseObjects": [
936
+ {
937
+ "type": "default",
938
+ "key": "",
939
+ "mockFile": ""
940
+ }
941
+ ]
942
+ },
943
+ {
944
+ "name": "configResourceServiceEditAclSetConfig",
945
+ "protocol": "REST",
946
+ "method": "POST",
947
+ "entitypath": "{base_path}/{version}/devicemanager/set-acl-set-config?{query}",
948
+ "requestSchema": "schema.json",
949
+ "responseSchema": "schema.json",
950
+ "timeout": 0,
951
+ "sendEmpty": false,
952
+ "requestDatatype": "JSON",
953
+ "responseDatatype": "JSON",
954
+ "headers": {},
955
+ "responseObjects": [
956
+ {
957
+ "type": "default",
958
+ "key": "",
959
+ "mockFile": ""
960
+ }
961
+ ]
962
+ }
963
+ ]
964
+ }