@itentialopensource/adapter-nokia_nsp_network 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 (100) 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 +170 -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 +3443 -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 +3 -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 +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/CardSlots/action.json +46 -0
  33. package/entities/CardSlots/mockdatafiles/getCardSlotsUsingGET-default.json +256 -0
  34. package/entities/CardSlots/schema.json +20 -0
  35. package/entities/Cards/action.json +46 -0
  36. package/entities/Cards/mockdatafiles/getCardsUsingGET-default.json +103 -0
  37. package/entities/Cards/schema.json +20 -0
  38. package/entities/Lags/action.json +46 -0
  39. package/entities/Lags/mockdatafiles/getLAGsUsingGET-default.json +1054 -0
  40. package/entities/Lags/schema.json +20 -0
  41. package/entities/NetworkElements/action.json +298 -0
  42. package/entities/NetworkElements/mockdatafiles/getCardPortsUsingGET-default.json +235 -0
  43. package/entities/NetworkElements/mockdatafiles/getLagMembersUsingGET-default.json +60 -0
  44. package/entities/NetworkElements/mockdatafiles/getNELAGsUsingGET-default.json +1226 -0
  45. package/entities/NetworkElements/mockdatafiles/getNERadioEquipmentsUsingGET-default.json +338 -0
  46. package/entities/NetworkElements/mockdatafiles/getNEShelvesUsingGET-default.json +86 -0
  47. package/entities/NetworkElements/mockdatafiles/getNEsUsingGET-default.json +166 -0
  48. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentCardPortsUsingGET-default.json +410 -0
  49. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentLagMembersUsingGET-default.json +19 -0
  50. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentLagsUsingGET-default.json +312 -0
  51. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentShelfCardsUsingGET-default.json +106 -0
  52. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentShelvesUsingGET-default.json +66 -0
  53. package/entities/NetworkElements/mockdatafiles/getShelfCardsUsingGET-default.json +218 -0
  54. package/entities/NetworkElements/mockdatafiles/getShelfPortsUsingGET-default.json +342 -0
  55. package/entities/NetworkElements/schema.json +32 -0
  56. package/entities/PhysicalLinks/action.json +86 -0
  57. package/entities/PhysicalLinks/mockdatafiles/getPhysicalLinksUsingGET-default.json +283 -0
  58. package/entities/PhysicalLinks/schema.json +22 -0
  59. package/entities/Ports/action.json +46 -0
  60. package/entities/Ports/mockdatafiles/getPortsUsingGET-default.json +440 -0
  61. package/entities/Ports/schema.json +20 -0
  62. package/entities/RadioEquipment/action.json +46 -0
  63. package/entities/RadioEquipment/mockdatafiles/getRadioEquipmentsUsingGET-default.json +86 -0
  64. package/entities/RadioEquipment/schema.json +20 -0
  65. package/entities/Shelves/action.json +46 -0
  66. package/entities/Shelves/mockdatafiles/getShelvesUsingGET-default.json +90 -0
  67. package/entities/Shelves/schema.json +20 -0
  68. package/error.json +190 -0
  69. package/package.json +86 -0
  70. package/pronghorn.json +8731 -0
  71. package/propertiesDecorators.json +14 -0
  72. package/propertiesSchema.json +1248 -0
  73. package/refs?service=git-upload-pack +0 -0
  74. package/report/creationReport.json +365 -0
  75. package/report/networkSupervision-22.9-v1.json-Swagger20.json +5789 -0
  76. package/sampleProperties.json +195 -0
  77. package/test/integration/adapterTestBasicGet.js +83 -0
  78. package/test/integration/adapterTestConnectivity.js +93 -0
  79. package/test/integration/adapterTestIntegration.js +1143 -0
  80. package/test/unit/adapterBaseTestUnit.js +949 -0
  81. package/test/unit/adapterTestUnit.js +2283 -0
  82. package/utils/adapterInfo.js +206 -0
  83. package/utils/addAuth.js +94 -0
  84. package/utils/artifactize.js +146 -0
  85. package/utils/basicGet.js +50 -0
  86. package/utils/checkMigrate.js +63 -0
  87. package/utils/entitiesToDB.js +178 -0
  88. package/utils/findPath.js +74 -0
  89. package/utils/methodDocumentor.js +225 -0
  90. package/utils/modify.js +154 -0
  91. package/utils/packModificationScript.js +35 -0
  92. package/utils/patches2bundledDeps.js +90 -0
  93. package/utils/pre-commit.sh +32 -0
  94. package/utils/removeHooks.js +20 -0
  95. package/utils/setup.js +33 -0
  96. package/utils/tbScript.js +246 -0
  97. package/utils/tbUtils.js +490 -0
  98. package/utils/testRunner.js +298 -0
  99. package/utils/troubleshootingAdapter.js +195 -0
  100. package/workflows/README.md +3 -0
@@ -0,0 +1,1054 @@
1
+ [
2
+ {
3
+ "links": [
4
+ {
5
+ "href": "string",
6
+ "rel": "string",
7
+ "templated": true
8
+ },
9
+ {
10
+ "href": "string",
11
+ "rel": "string",
12
+ "templated": false
13
+ },
14
+ {
15
+ "href": "string",
16
+ "rel": "string",
17
+ "templated": false
18
+ },
19
+ {
20
+ "href": "string",
21
+ "rel": "string",
22
+ "templated": false
23
+ },
24
+ {
25
+ "href": "string",
26
+ "rel": "string",
27
+ "templated": false
28
+ },
29
+ {
30
+ "href": "string",
31
+ "rel": "string",
32
+ "templated": false
33
+ },
34
+ {
35
+ "href": "string",
36
+ "rel": "string",
37
+ "templated": false
38
+ }
39
+ ],
40
+ "fdn": "string",
41
+ "sourceType": null,
42
+ "sourceSystem": "string",
43
+ "sources": [
44
+ "string",
45
+ "string",
46
+ "string",
47
+ "string"
48
+ ],
49
+ "lagId": "string",
50
+ "neName": "string",
51
+ "neId": "string",
52
+ "name": "string",
53
+ "description": "string",
54
+ "configuredAddress": "string",
55
+ "encapType": null,
56
+ "operationalSpeedUnits": "string",
57
+ "operationalSpeed": 5,
58
+ "lagMode": null,
59
+ "adminState": null,
60
+ "operState": null,
61
+ "standbyState": null,
62
+ "availabilityStates": [
63
+ "failed",
64
+ "inTest",
65
+ "degraded",
66
+ "notInstalled",
67
+ "logFull",
68
+ "dependency",
69
+ "offLine",
70
+ "unknown"
71
+ ],
72
+ "stateReasons": [
73
+ "string",
74
+ "string",
75
+ "string",
76
+ "string",
77
+ "string",
78
+ "string",
79
+ "string",
80
+ "string",
81
+ "string"
82
+ ],
83
+ "objectDetails": {},
84
+ "members": [
85
+ {
86
+ "encapType": "string",
87
+ "fdn": "string",
88
+ "lagId": "string",
89
+ "objectDetails": {},
90
+ "portFdn": "string",
91
+ "portName": "string",
92
+ "priority": 1,
93
+ "sourceSystem": "string",
94
+ "sourceType": "string",
95
+ "sources": [
96
+ "string",
97
+ "string",
98
+ "string",
99
+ "string",
100
+ "string",
101
+ "string",
102
+ "string",
103
+ "string"
104
+ ],
105
+ "standbyState": "string"
106
+ },
107
+ {
108
+ "encapType": "string",
109
+ "fdn": "string",
110
+ "lagId": "string",
111
+ "objectDetails": {},
112
+ "portFdn": "string",
113
+ "portName": "string",
114
+ "priority": 4,
115
+ "sourceSystem": "string",
116
+ "sourceType": "string",
117
+ "sources": [
118
+ "string",
119
+ "string",
120
+ "string",
121
+ "string",
122
+ "string"
123
+ ],
124
+ "standbyState": "string"
125
+ },
126
+ {
127
+ "encapType": "string",
128
+ "fdn": "string",
129
+ "lagId": "string",
130
+ "objectDetails": {},
131
+ "portFdn": "string",
132
+ "portName": "string",
133
+ "priority": 10,
134
+ "sourceSystem": "string",
135
+ "sourceType": "string",
136
+ "sources": [
137
+ "string",
138
+ "string",
139
+ "string",
140
+ "string",
141
+ "string",
142
+ "string",
143
+ "string"
144
+ ],
145
+ "standbyState": "string"
146
+ },
147
+ {
148
+ "encapType": "string",
149
+ "fdn": "string",
150
+ "lagId": "string",
151
+ "objectDetails": {},
152
+ "portFdn": "string",
153
+ "portName": "string",
154
+ "priority": 5,
155
+ "sourceSystem": "string",
156
+ "sourceType": "string",
157
+ "sources": [
158
+ "string",
159
+ "string",
160
+ "string",
161
+ "string",
162
+ "string"
163
+ ],
164
+ "standbyState": "string"
165
+ },
166
+ {
167
+ "encapType": "string",
168
+ "fdn": "string",
169
+ "lagId": "string",
170
+ "objectDetails": {},
171
+ "portFdn": "string",
172
+ "portName": "string",
173
+ "priority": 8,
174
+ "sourceSystem": "string",
175
+ "sourceType": "string",
176
+ "sources": [
177
+ "string",
178
+ "string",
179
+ "string",
180
+ "string",
181
+ "string",
182
+ "string",
183
+ "string",
184
+ "string",
185
+ "string"
186
+ ],
187
+ "standbyState": "string"
188
+ },
189
+ {
190
+ "encapType": "string",
191
+ "fdn": "string",
192
+ "lagId": "string",
193
+ "objectDetails": {},
194
+ "portFdn": "string",
195
+ "portName": "string",
196
+ "priority": 5,
197
+ "sourceSystem": "string",
198
+ "sourceType": "string",
199
+ "sources": [
200
+ "string",
201
+ "string",
202
+ "string",
203
+ "string",
204
+ "string"
205
+ ],
206
+ "standbyState": "string"
207
+ },
208
+ {
209
+ "encapType": "string",
210
+ "fdn": "string",
211
+ "lagId": "string",
212
+ "objectDetails": {},
213
+ "portFdn": "string",
214
+ "portName": "string",
215
+ "priority": 9,
216
+ "sourceSystem": "string",
217
+ "sourceType": "string",
218
+ "sources": [
219
+ "string",
220
+ "string",
221
+ "string",
222
+ "string"
223
+ ],
224
+ "standbyState": "string"
225
+ },
226
+ {
227
+ "encapType": "string",
228
+ "fdn": "string",
229
+ "lagId": "string",
230
+ "objectDetails": {},
231
+ "portFdn": "string",
232
+ "portName": "string",
233
+ "priority": 4,
234
+ "sourceSystem": "string",
235
+ "sourceType": "string",
236
+ "sources": [
237
+ "string",
238
+ "string",
239
+ "string",
240
+ "string",
241
+ "string",
242
+ "string",
243
+ "string",
244
+ "string",
245
+ "string",
246
+ "string"
247
+ ],
248
+ "standbyState": "string"
249
+ },
250
+ {
251
+ "encapType": "string",
252
+ "fdn": "string",
253
+ "lagId": "string",
254
+ "objectDetails": {},
255
+ "portFdn": "string",
256
+ "portName": "string",
257
+ "priority": 3,
258
+ "sourceSystem": "string",
259
+ "sourceType": "string",
260
+ "sources": [
261
+ "string",
262
+ "string",
263
+ "string"
264
+ ],
265
+ "standbyState": "string"
266
+ },
267
+ {
268
+ "encapType": "string",
269
+ "fdn": "string",
270
+ "lagId": "string",
271
+ "objectDetails": {},
272
+ "portFdn": "string",
273
+ "portName": "string",
274
+ "priority": 4,
275
+ "sourceSystem": "string",
276
+ "sourceType": "string",
277
+ "sources": [
278
+ "string",
279
+ "string",
280
+ "string",
281
+ "string"
282
+ ],
283
+ "standbyState": "string"
284
+ }
285
+ ],
286
+ "multiChassisLAGMembers": [
287
+ {
288
+ "description": "string",
289
+ "fdn": "string",
290
+ "lacpKey": 9,
291
+ "objectDetails": {},
292
+ "peerIpAddress": "string",
293
+ "peerNeId": "string",
294
+ "remoteLagId": "string",
295
+ "sourceSystem": "string",
296
+ "sourceType": "string",
297
+ "sources": [
298
+ "string",
299
+ "string",
300
+ "string",
301
+ "string",
302
+ "string"
303
+ ],
304
+ "standbyState": "string",
305
+ "systemId": "string",
306
+ "systemPriority": 2
307
+ },
308
+ {
309
+ "description": "string",
310
+ "fdn": "string",
311
+ "lacpKey": 2,
312
+ "objectDetails": {},
313
+ "peerIpAddress": "string",
314
+ "peerNeId": "string",
315
+ "remoteLagId": "string",
316
+ "sourceSystem": "string",
317
+ "sourceType": "string",
318
+ "sources": [
319
+ "string",
320
+ "string",
321
+ "string",
322
+ "string",
323
+ "string",
324
+ "string",
325
+ "string",
326
+ "string",
327
+ "string",
328
+ "string"
329
+ ],
330
+ "standbyState": "string",
331
+ "systemId": "string",
332
+ "systemPriority": 4
333
+ },
334
+ {
335
+ "description": "string",
336
+ "fdn": "string",
337
+ "lacpKey": 1,
338
+ "objectDetails": {},
339
+ "peerIpAddress": "string",
340
+ "peerNeId": "string",
341
+ "remoteLagId": "string",
342
+ "sourceSystem": "string",
343
+ "sourceType": "string",
344
+ "sources": [
345
+ "string",
346
+ "string",
347
+ "string",
348
+ "string",
349
+ "string",
350
+ "string",
351
+ "string",
352
+ "string",
353
+ "string"
354
+ ],
355
+ "standbyState": "string",
356
+ "systemId": "string",
357
+ "systemPriority": 9
358
+ },
359
+ {
360
+ "description": "string",
361
+ "fdn": "string",
362
+ "lacpKey": 3,
363
+ "objectDetails": {},
364
+ "peerIpAddress": "string",
365
+ "peerNeId": "string",
366
+ "remoteLagId": "string",
367
+ "sourceSystem": "string",
368
+ "sourceType": "string",
369
+ "sources": [
370
+ "string",
371
+ "string",
372
+ "string",
373
+ "string"
374
+ ],
375
+ "standbyState": "string",
376
+ "systemId": "string",
377
+ "systemPriority": 10
378
+ },
379
+ {
380
+ "description": "string",
381
+ "fdn": "string",
382
+ "lacpKey": 1,
383
+ "objectDetails": {},
384
+ "peerIpAddress": "string",
385
+ "peerNeId": "string",
386
+ "remoteLagId": "string",
387
+ "sourceSystem": "string",
388
+ "sourceType": "string",
389
+ "sources": [
390
+ "string",
391
+ "string",
392
+ "string",
393
+ "string",
394
+ "string",
395
+ "string",
396
+ "string",
397
+ "string",
398
+ "string",
399
+ "string"
400
+ ],
401
+ "standbyState": "string",
402
+ "systemId": "string",
403
+ "systemPriority": 4
404
+ },
405
+ {
406
+ "description": "string",
407
+ "fdn": "string",
408
+ "lacpKey": 10,
409
+ "objectDetails": {},
410
+ "peerIpAddress": "string",
411
+ "peerNeId": "string",
412
+ "remoteLagId": "string",
413
+ "sourceSystem": "string",
414
+ "sourceType": "string",
415
+ "sources": [
416
+ "string",
417
+ "string",
418
+ "string",
419
+ "string",
420
+ "string",
421
+ "string",
422
+ "string",
423
+ "string"
424
+ ],
425
+ "standbyState": "string",
426
+ "systemId": "string",
427
+ "systemPriority": 5
428
+ }
429
+ ],
430
+ "parentNe": "string",
431
+ "parent": "string"
432
+ },
433
+ {
434
+ "links": [
435
+ {
436
+ "href": "string",
437
+ "rel": "string",
438
+ "templated": false
439
+ },
440
+ {
441
+ "href": "string",
442
+ "rel": "string",
443
+ "templated": true
444
+ },
445
+ {
446
+ "href": "string",
447
+ "rel": "string",
448
+ "templated": false
449
+ },
450
+ {
451
+ "href": "string",
452
+ "rel": "string",
453
+ "templated": false
454
+ }
455
+ ],
456
+ "fdn": "string",
457
+ "sourceType": null,
458
+ "sourceSystem": "string",
459
+ "sources": [
460
+ "string",
461
+ "string",
462
+ "string",
463
+ "string",
464
+ "string"
465
+ ],
466
+ "lagId": "string",
467
+ "neName": "string",
468
+ "neId": "string",
469
+ "name": "string",
470
+ "description": "string",
471
+ "configuredAddress": "string",
472
+ "encapType": null,
473
+ "operationalSpeedUnits": "string",
474
+ "operationalSpeed": 6,
475
+ "lagMode": null,
476
+ "adminState": null,
477
+ "operState": null,
478
+ "standbyState": null,
479
+ "availabilityStates": [
480
+ "offDuty",
481
+ "offLine",
482
+ "dependency",
483
+ "degraded",
484
+ "unknown",
485
+ "failed",
486
+ "notInstalled",
487
+ "offDuty",
488
+ "degraded"
489
+ ],
490
+ "stateReasons": [
491
+ "string",
492
+ "string",
493
+ "string",
494
+ "string",
495
+ "string",
496
+ "string",
497
+ "string"
498
+ ],
499
+ "objectDetails": {},
500
+ "members": [
501
+ {
502
+ "encapType": "string",
503
+ "fdn": "string",
504
+ "lagId": "string",
505
+ "objectDetails": {},
506
+ "portFdn": "string",
507
+ "portName": "string",
508
+ "priority": 7,
509
+ "sourceSystem": "string",
510
+ "sourceType": "string",
511
+ "sources": [
512
+ "string",
513
+ "string",
514
+ "string",
515
+ "string",
516
+ "string",
517
+ "string",
518
+ "string",
519
+ "string",
520
+ "string",
521
+ "string"
522
+ ],
523
+ "standbyState": "string"
524
+ },
525
+ {
526
+ "encapType": "string",
527
+ "fdn": "string",
528
+ "lagId": "string",
529
+ "objectDetails": {},
530
+ "portFdn": "string",
531
+ "portName": "string",
532
+ "priority": 5,
533
+ "sourceSystem": "string",
534
+ "sourceType": "string",
535
+ "sources": [
536
+ "string",
537
+ "string",
538
+ "string",
539
+ "string",
540
+ "string",
541
+ "string",
542
+ "string",
543
+ "string",
544
+ "string"
545
+ ],
546
+ "standbyState": "string"
547
+ },
548
+ {
549
+ "encapType": "string",
550
+ "fdn": "string",
551
+ "lagId": "string",
552
+ "objectDetails": {},
553
+ "portFdn": "string",
554
+ "portName": "string",
555
+ "priority": 3,
556
+ "sourceSystem": "string",
557
+ "sourceType": "string",
558
+ "sources": [
559
+ "string",
560
+ "string",
561
+ "string",
562
+ "string",
563
+ "string",
564
+ "string",
565
+ "string",
566
+ "string",
567
+ "string",
568
+ "string"
569
+ ],
570
+ "standbyState": "string"
571
+ },
572
+ {
573
+ "encapType": "string",
574
+ "fdn": "string",
575
+ "lagId": "string",
576
+ "objectDetails": {},
577
+ "portFdn": "string",
578
+ "portName": "string",
579
+ "priority": 8,
580
+ "sourceSystem": "string",
581
+ "sourceType": "string",
582
+ "sources": [
583
+ "string",
584
+ "string",
585
+ "string",
586
+ "string",
587
+ "string",
588
+ "string",
589
+ "string",
590
+ "string",
591
+ "string"
592
+ ],
593
+ "standbyState": "string"
594
+ },
595
+ {
596
+ "encapType": "string",
597
+ "fdn": "string",
598
+ "lagId": "string",
599
+ "objectDetails": {},
600
+ "portFdn": "string",
601
+ "portName": "string",
602
+ "priority": 9,
603
+ "sourceSystem": "string",
604
+ "sourceType": "string",
605
+ "sources": [
606
+ "string",
607
+ "string",
608
+ "string",
609
+ "string",
610
+ "string"
611
+ ],
612
+ "standbyState": "string"
613
+ },
614
+ {
615
+ "encapType": "string",
616
+ "fdn": "string",
617
+ "lagId": "string",
618
+ "objectDetails": {},
619
+ "portFdn": "string",
620
+ "portName": "string",
621
+ "priority": 6,
622
+ "sourceSystem": "string",
623
+ "sourceType": "string",
624
+ "sources": [
625
+ "string"
626
+ ],
627
+ "standbyState": "string"
628
+ }
629
+ ],
630
+ "multiChassisLAGMembers": [
631
+ {
632
+ "description": "string",
633
+ "fdn": "string",
634
+ "lacpKey": 3,
635
+ "objectDetails": {},
636
+ "peerIpAddress": "string",
637
+ "peerNeId": "string",
638
+ "remoteLagId": "string",
639
+ "sourceSystem": "string",
640
+ "sourceType": "string",
641
+ "sources": [
642
+ "string"
643
+ ],
644
+ "standbyState": "string",
645
+ "systemId": "string",
646
+ "systemPriority": 3
647
+ },
648
+ {
649
+ "description": "string",
650
+ "fdn": "string",
651
+ "lacpKey": 3,
652
+ "objectDetails": {},
653
+ "peerIpAddress": "string",
654
+ "peerNeId": "string",
655
+ "remoteLagId": "string",
656
+ "sourceSystem": "string",
657
+ "sourceType": "string",
658
+ "sources": [
659
+ "string",
660
+ "string",
661
+ "string",
662
+ "string"
663
+ ],
664
+ "standbyState": "string",
665
+ "systemId": "string",
666
+ "systemPriority": 7
667
+ },
668
+ {
669
+ "description": "string",
670
+ "fdn": "string",
671
+ "lacpKey": 10,
672
+ "objectDetails": {},
673
+ "peerIpAddress": "string",
674
+ "peerNeId": "string",
675
+ "remoteLagId": "string",
676
+ "sourceSystem": "string",
677
+ "sourceType": "string",
678
+ "sources": [
679
+ "string",
680
+ "string",
681
+ "string",
682
+ "string",
683
+ "string"
684
+ ],
685
+ "standbyState": "string",
686
+ "systemId": "string",
687
+ "systemPriority": 6
688
+ },
689
+ {
690
+ "description": "string",
691
+ "fdn": "string",
692
+ "lacpKey": 7,
693
+ "objectDetails": {},
694
+ "peerIpAddress": "string",
695
+ "peerNeId": "string",
696
+ "remoteLagId": "string",
697
+ "sourceSystem": "string",
698
+ "sourceType": "string",
699
+ "sources": [
700
+ "string",
701
+ "string",
702
+ "string",
703
+ "string",
704
+ "string",
705
+ "string"
706
+ ],
707
+ "standbyState": "string",
708
+ "systemId": "string",
709
+ "systemPriority": 8
710
+ },
711
+ {
712
+ "description": "string",
713
+ "fdn": "string",
714
+ "lacpKey": 1,
715
+ "objectDetails": {},
716
+ "peerIpAddress": "string",
717
+ "peerNeId": "string",
718
+ "remoteLagId": "string",
719
+ "sourceSystem": "string",
720
+ "sourceType": "string",
721
+ "sources": [
722
+ "string",
723
+ "string",
724
+ "string",
725
+ "string",
726
+ "string",
727
+ "string",
728
+ "string"
729
+ ],
730
+ "standbyState": "string",
731
+ "systemId": "string",
732
+ "systemPriority": 3
733
+ },
734
+ {
735
+ "description": "string",
736
+ "fdn": "string",
737
+ "lacpKey": 7,
738
+ "objectDetails": {},
739
+ "peerIpAddress": "string",
740
+ "peerNeId": "string",
741
+ "remoteLagId": "string",
742
+ "sourceSystem": "string",
743
+ "sourceType": "string",
744
+ "sources": [
745
+ "string",
746
+ "string",
747
+ "string",
748
+ "string",
749
+ "string",
750
+ "string",
751
+ "string",
752
+ "string",
753
+ "string",
754
+ "string"
755
+ ],
756
+ "standbyState": "string",
757
+ "systemId": "string",
758
+ "systemPriority": 10
759
+ }
760
+ ],
761
+ "parentNe": "string",
762
+ "parent": "string"
763
+ },
764
+ {
765
+ "links": [
766
+ {
767
+ "href": "string",
768
+ "rel": "string",
769
+ "templated": false
770
+ },
771
+ {
772
+ "href": "string",
773
+ "rel": "string",
774
+ "templated": false
775
+ },
776
+ {
777
+ "href": "string",
778
+ "rel": "string",
779
+ "templated": true
780
+ },
781
+ {
782
+ "href": "string",
783
+ "rel": "string",
784
+ "templated": false
785
+ },
786
+ {
787
+ "href": "string",
788
+ "rel": "string",
789
+ "templated": true
790
+ }
791
+ ],
792
+ "fdn": "string",
793
+ "sourceType": null,
794
+ "sourceSystem": "string",
795
+ "sources": [
796
+ "string",
797
+ "string",
798
+ "string",
799
+ "string",
800
+ "string",
801
+ "string",
802
+ "string",
803
+ "string",
804
+ "string",
805
+ "string"
806
+ ],
807
+ "lagId": "string",
808
+ "neName": "string",
809
+ "neId": "string",
810
+ "name": "string",
811
+ "description": "string",
812
+ "configuredAddress": "string",
813
+ "encapType": null,
814
+ "operationalSpeedUnits": "string",
815
+ "operationalSpeed": 1,
816
+ "lagMode": null,
817
+ "adminState": null,
818
+ "operState": null,
819
+ "standbyState": null,
820
+ "availabilityStates": [
821
+ "logFull",
822
+ "logFull",
823
+ "degraded",
824
+ "unknown",
825
+ "notInstalled"
826
+ ],
827
+ "stateReasons": [
828
+ "string"
829
+ ],
830
+ "objectDetails": {},
831
+ "members": [
832
+ {
833
+ "encapType": "string",
834
+ "fdn": "string",
835
+ "lagId": "string",
836
+ "objectDetails": {},
837
+ "portFdn": "string",
838
+ "portName": "string",
839
+ "priority": 5,
840
+ "sourceSystem": "string",
841
+ "sourceType": "string",
842
+ "sources": [
843
+ "string",
844
+ "string",
845
+ "string",
846
+ "string",
847
+ "string"
848
+ ],
849
+ "standbyState": "string"
850
+ },
851
+ {
852
+ "encapType": "string",
853
+ "fdn": "string",
854
+ "lagId": "string",
855
+ "objectDetails": {},
856
+ "portFdn": "string",
857
+ "portName": "string",
858
+ "priority": 10,
859
+ "sourceSystem": "string",
860
+ "sourceType": "string",
861
+ "sources": [
862
+ "string",
863
+ "string",
864
+ "string",
865
+ "string",
866
+ "string"
867
+ ],
868
+ "standbyState": "string"
869
+ },
870
+ {
871
+ "encapType": "string",
872
+ "fdn": "string",
873
+ "lagId": "string",
874
+ "objectDetails": {},
875
+ "portFdn": "string",
876
+ "portName": "string",
877
+ "priority": 10,
878
+ "sourceSystem": "string",
879
+ "sourceType": "string",
880
+ "sources": [
881
+ "string",
882
+ "string",
883
+ "string",
884
+ "string",
885
+ "string",
886
+ "string",
887
+ "string",
888
+ "string"
889
+ ],
890
+ "standbyState": "string"
891
+ },
892
+ {
893
+ "encapType": "string",
894
+ "fdn": "string",
895
+ "lagId": "string",
896
+ "objectDetails": {},
897
+ "portFdn": "string",
898
+ "portName": "string",
899
+ "priority": 6,
900
+ "sourceSystem": "string",
901
+ "sourceType": "string",
902
+ "sources": [
903
+ "string",
904
+ "string",
905
+ "string",
906
+ "string",
907
+ "string",
908
+ "string",
909
+ "string"
910
+ ],
911
+ "standbyState": "string"
912
+ },
913
+ {
914
+ "encapType": "string",
915
+ "fdn": "string",
916
+ "lagId": "string",
917
+ "objectDetails": {},
918
+ "portFdn": "string",
919
+ "portName": "string",
920
+ "priority": 9,
921
+ "sourceSystem": "string",
922
+ "sourceType": "string",
923
+ "sources": [
924
+ "string",
925
+ "string",
926
+ "string",
927
+ "string",
928
+ "string",
929
+ "string"
930
+ ],
931
+ "standbyState": "string"
932
+ },
933
+ {
934
+ "encapType": "string",
935
+ "fdn": "string",
936
+ "lagId": "string",
937
+ "objectDetails": {},
938
+ "portFdn": "string",
939
+ "portName": "string",
940
+ "priority": 5,
941
+ "sourceSystem": "string",
942
+ "sourceType": "string",
943
+ "sources": [
944
+ "string",
945
+ "string",
946
+ "string",
947
+ "string"
948
+ ],
949
+ "standbyState": "string"
950
+ },
951
+ {
952
+ "encapType": "string",
953
+ "fdn": "string",
954
+ "lagId": "string",
955
+ "objectDetails": {},
956
+ "portFdn": "string",
957
+ "portName": "string",
958
+ "priority": 8,
959
+ "sourceSystem": "string",
960
+ "sourceType": "string",
961
+ "sources": [
962
+ "string",
963
+ "string",
964
+ "string",
965
+ "string",
966
+ "string"
967
+ ],
968
+ "standbyState": "string"
969
+ },
970
+ {
971
+ "encapType": "string",
972
+ "fdn": "string",
973
+ "lagId": "string",
974
+ "objectDetails": {},
975
+ "portFdn": "string",
976
+ "portName": "string",
977
+ "priority": 4,
978
+ "sourceSystem": "string",
979
+ "sourceType": "string",
980
+ "sources": [
981
+ "string",
982
+ "string",
983
+ "string"
984
+ ],
985
+ "standbyState": "string"
986
+ },
987
+ {
988
+ "encapType": "string",
989
+ "fdn": "string",
990
+ "lagId": "string",
991
+ "objectDetails": {},
992
+ "portFdn": "string",
993
+ "portName": "string",
994
+ "priority": 1,
995
+ "sourceSystem": "string",
996
+ "sourceType": "string",
997
+ "sources": [
998
+ "string",
999
+ "string",
1000
+ "string",
1001
+ "string",
1002
+ "string",
1003
+ "string",
1004
+ "string",
1005
+ "string"
1006
+ ],
1007
+ "standbyState": "string"
1008
+ }
1009
+ ],
1010
+ "multiChassisLAGMembers": [
1011
+ {
1012
+ "description": "string",
1013
+ "fdn": "string",
1014
+ "lacpKey": 3,
1015
+ "objectDetails": {},
1016
+ "peerIpAddress": "string",
1017
+ "peerNeId": "string",
1018
+ "remoteLagId": "string",
1019
+ "sourceSystem": "string",
1020
+ "sourceType": "string",
1021
+ "sources": [
1022
+ "string",
1023
+ "string",
1024
+ "string"
1025
+ ],
1026
+ "standbyState": "string",
1027
+ "systemId": "string",
1028
+ "systemPriority": 4
1029
+ },
1030
+ {
1031
+ "description": "string",
1032
+ "fdn": "string",
1033
+ "lacpKey": 4,
1034
+ "objectDetails": {},
1035
+ "peerIpAddress": "string",
1036
+ "peerNeId": "string",
1037
+ "remoteLagId": "string",
1038
+ "sourceSystem": "string",
1039
+ "sourceType": "string",
1040
+ "sources": [
1041
+ "string",
1042
+ "string",
1043
+ "string",
1044
+ "string"
1045
+ ],
1046
+ "standbyState": "string",
1047
+ "systemId": "string",
1048
+ "systemPriority": 7
1049
+ }
1050
+ ],
1051
+ "parentNe": "string",
1052
+ "parent": "string"
1053
+ }
1054
+ ]