@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,20 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getLAGsUsingGET",
12
+ "enum": [
13
+ "getLAGsUsingGET",
14
+ "getLAGUsingGET"
15
+ ],
16
+ "external_name": "ph_request_type"
17
+ }
18
+ },
19
+ "definitions": {}
20
+ }
@@ -0,0 +1,298 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getNEsUsingGET",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/v1/networkElements?{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": "mockdatafiles/getNEsUsingGET-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getNEUsingGET",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}?{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": "getNELAGsUsingGET",
47
+ "protocol": "REST",
48
+ "method": "GET",
49
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/lags?{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": "mockdatafiles/getNELAGsUsingGET-default.json"
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "name": "getLagMembersUsingGET",
68
+ "protocol": "REST",
69
+ "method": "GET",
70
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/lags/{pathv2}/lagMembers?{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": "mockdatafiles/getLagMembersUsingGET-default.json"
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "name": "getNERadioEquipmentsUsingGET",
89
+ "protocol": "REST",
90
+ "method": "GET",
91
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment?{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": "mockdatafiles/getNERadioEquipmentsUsingGET-default.json"
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "name": "getRadioEquipmentLagsUsingGET",
110
+ "protocol": "REST",
111
+ "method": "GET",
112
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment/{pathv2}/lags?{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": "mockdatafiles/getRadioEquipmentLagsUsingGET-default.json"
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "name": "getRadioEquipmentLagMembersUsingGET",
131
+ "protocol": "REST",
132
+ "method": "GET",
133
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment/{pathv2}/lags/{pathv3}/lagMembers?{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": "mockdatafiles/getRadioEquipmentLagMembersUsingGET-default.json"
147
+ }
148
+ ]
149
+ },
150
+ {
151
+ "name": "getRadioEquipmentShelvesUsingGET",
152
+ "protocol": "REST",
153
+ "method": "GET",
154
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment/{pathv2}/shelves?{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": "mockdatafiles/getRadioEquipmentShelvesUsingGET-default.json"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "name": "getRadioEquipmentShelfCardsUsingGET",
173
+ "protocol": "REST",
174
+ "method": "GET",
175
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment/{pathv2}/shelves/{pathv3}/cards?{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": "mockdatafiles/getRadioEquipmentShelfCardsUsingGET-default.json"
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "name": "getRadioEquipmentCardPortsUsingGET",
194
+ "protocol": "REST",
195
+ "method": "GET",
196
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/radioEquipment/{pathv2}/shelves/{pathv3}/cards/{pathv4}/ports?{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": "mockdatafiles/getRadioEquipmentCardPortsUsingGET-default.json"
210
+ }
211
+ ]
212
+ },
213
+ {
214
+ "name": "getNEShelvesUsingGET",
215
+ "protocol": "REST",
216
+ "method": "GET",
217
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/shelves?{query}",
218
+ "requestSchema": "schema.json",
219
+ "responseSchema": "schema.json",
220
+ "timeout": 0,
221
+ "sendEmpty": false,
222
+ "sendGetBody": false,
223
+ "requestDatatype": "JSON",
224
+ "responseDatatype": "JSON",
225
+ "headers": {},
226
+ "responseObjects": [
227
+ {
228
+ "type": "default",
229
+ "key": "",
230
+ "mockFile": "mockdatafiles/getNEShelvesUsingGET-default.json"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "name": "getShelfCardsUsingGET",
236
+ "protocol": "REST",
237
+ "method": "GET",
238
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/shelves/{pathv2}/cards?{query}",
239
+ "requestSchema": "schema.json",
240
+ "responseSchema": "schema.json",
241
+ "timeout": 0,
242
+ "sendEmpty": false,
243
+ "sendGetBody": false,
244
+ "requestDatatype": "JSON",
245
+ "responseDatatype": "JSON",
246
+ "headers": {},
247
+ "responseObjects": [
248
+ {
249
+ "type": "default",
250
+ "key": "",
251
+ "mockFile": "mockdatafiles/getShelfCardsUsingGET-default.json"
252
+ }
253
+ ]
254
+ },
255
+ {
256
+ "name": "getCardPortsUsingGET",
257
+ "protocol": "REST",
258
+ "method": "GET",
259
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/shelves/{pathv2}/cards/{pathv3}/ports?{query}",
260
+ "requestSchema": "schema.json",
261
+ "responseSchema": "schema.json",
262
+ "timeout": 0,
263
+ "sendEmpty": false,
264
+ "sendGetBody": false,
265
+ "requestDatatype": "JSON",
266
+ "responseDatatype": "JSON",
267
+ "headers": {},
268
+ "responseObjects": [
269
+ {
270
+ "type": "default",
271
+ "key": "",
272
+ "mockFile": "mockdatafiles/getCardPortsUsingGET-default.json"
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ "name": "getShelfPortsUsingGET",
278
+ "protocol": "REST",
279
+ "method": "GET",
280
+ "entitypath": "{base_path}/{version}/v1/networkElements/{pathv1}/shelves/{pathv2}/ports?{query}",
281
+ "requestSchema": "schema.json",
282
+ "responseSchema": "schema.json",
283
+ "timeout": 0,
284
+ "sendEmpty": false,
285
+ "sendGetBody": false,
286
+ "requestDatatype": "JSON",
287
+ "responseDatatype": "JSON",
288
+ "headers": {},
289
+ "responseObjects": [
290
+ {
291
+ "type": "default",
292
+ "key": "",
293
+ "mockFile": "mockdatafiles/getShelfPortsUsingGET-default.json"
294
+ }
295
+ ]
296
+ }
297
+ ]
298
+ }
@@ -0,0 +1,235 @@
1
+ [
2
+ {
3
+ "links": [
4
+ {
5
+ "href": "string",
6
+ "rel": "string",
7
+ "templated": true
8
+ },
9
+ {
10
+ "href": "string",
11
+ "rel": "string",
12
+ "templated": true
13
+ },
14
+ {
15
+ "href": "string",
16
+ "rel": "string",
17
+ "templated": false
18
+ },
19
+ {
20
+ "href": "string",
21
+ "rel": "string",
22
+ "templated": true
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": true
38
+ },
39
+ {
40
+ "href": "string",
41
+ "rel": "string",
42
+ "templated": true
43
+ },
44
+ {
45
+ "href": "string",
46
+ "rel": "string",
47
+ "templated": false
48
+ }
49
+ ],
50
+ "fdn": "string",
51
+ "sourceType": null,
52
+ "sourceSystem": "string",
53
+ "sources": [
54
+ "string",
55
+ "string",
56
+ "string"
57
+ ],
58
+ "name": "string",
59
+ "neName": "string",
60
+ "neId": "string",
61
+ "description": "string",
62
+ "positionId": 9,
63
+ "position": "string",
64
+ "adminState": null,
65
+ "operState": null,
66
+ "standbyState": null,
67
+ "availabilityStates": [
68
+ "dependency"
69
+ ],
70
+ "stateReasons": [
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string",
75
+ "string",
76
+ "string",
77
+ "string",
78
+ "string",
79
+ "string"
80
+ ],
81
+ "objectDetails": {},
82
+ "manufacturer": "string",
83
+ "serialNumber": "string",
84
+ "partNumber": "string",
85
+ "manufacturerAssemblyNumber": "string",
86
+ "manufactureDate": "string",
87
+ "manufacturingDeviations": "string",
88
+ "macAddress": "string",
89
+ "hwMacAddress": "string",
90
+ "portDetails": {
91
+ "fdn": "fdn:model:equipment:PortDetails:2209",
92
+ "sourceType": null,
93
+ "sourceSystem": "fdn:realm:sam",
94
+ "sources": [
95
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
96
+ ],
97
+ "objectDetails": {},
98
+ "portIndex": 67141632,
99
+ "portType": null,
100
+ "rate": "ethernet100",
101
+ "actualRateUnits": null,
102
+ "actualRate": 100000,
103
+ "portMode": null,
104
+ "encapType": null,
105
+ "mtuValue": 1578
106
+ },
107
+ "lagDetails": {
108
+ "encapType": "string",
109
+ "fdn": "string",
110
+ "lagId": "string",
111
+ "objectDetails": {},
112
+ "portFdn": "string",
113
+ "portName": "string",
114
+ "priority": 9,
115
+ "sourceSystem": "string",
116
+ "sourceType": "string",
117
+ "sources": [
118
+ "string",
119
+ "string",
120
+ "string",
121
+ "string"
122
+ ],
123
+ "standbyState": "string"
124
+ }
125
+ },
126
+ {
127
+ "links": [
128
+ {
129
+ "href": "string",
130
+ "rel": "string",
131
+ "templated": true
132
+ },
133
+ {
134
+ "href": "string",
135
+ "rel": "string",
136
+ "templated": false
137
+ },
138
+ {
139
+ "href": "string",
140
+ "rel": "string",
141
+ "templated": true
142
+ },
143
+ {
144
+ "href": "string",
145
+ "rel": "string",
146
+ "templated": false
147
+ },
148
+ {
149
+ "href": "string",
150
+ "rel": "string",
151
+ "templated": false
152
+ },
153
+ {
154
+ "href": "string",
155
+ "rel": "string",
156
+ "templated": false
157
+ }
158
+ ],
159
+ "fdn": "string",
160
+ "sourceType": null,
161
+ "sourceSystem": "string",
162
+ "sources": [
163
+ "string"
164
+ ],
165
+ "name": "string",
166
+ "neName": "string",
167
+ "neId": "string",
168
+ "description": "string",
169
+ "positionId": 3,
170
+ "position": "string",
171
+ "adminState": null,
172
+ "operState": null,
173
+ "standbyState": null,
174
+ "availabilityStates": [
175
+ "powerOff",
176
+ "inTest",
177
+ "powerOff",
178
+ "degraded",
179
+ "powerOff",
180
+ "dependency"
181
+ ],
182
+ "stateReasons": [
183
+ "string",
184
+ "string",
185
+ "string",
186
+ "string",
187
+ "string",
188
+ "string",
189
+ "string",
190
+ "string"
191
+ ],
192
+ "objectDetails": {},
193
+ "manufacturer": "string",
194
+ "serialNumber": "string",
195
+ "partNumber": "string",
196
+ "manufacturerAssemblyNumber": "string",
197
+ "manufactureDate": "string",
198
+ "manufacturingDeviations": "string",
199
+ "macAddress": "string",
200
+ "hwMacAddress": "string",
201
+ "portDetails": {
202
+ "fdn": "fdn:model:equipment:PortDetails:2209",
203
+ "sourceType": null,
204
+ "sourceSystem": "fdn:realm:sam",
205
+ "sources": [
206
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
207
+ ],
208
+ "objectDetails": {},
209
+ "portIndex": 67141632,
210
+ "portType": null,
211
+ "rate": "ethernet100",
212
+ "actualRateUnits": null,
213
+ "actualRate": 100000,
214
+ "portMode": null,
215
+ "encapType": null,
216
+ "mtuValue": 1578
217
+ },
218
+ "lagDetails": {
219
+ "encapType": "string",
220
+ "fdn": "string",
221
+ "lagId": "string",
222
+ "objectDetails": {},
223
+ "portFdn": "string",
224
+ "portName": "string",
225
+ "priority": 8,
226
+ "sourceSystem": "string",
227
+ "sourceType": "string",
228
+ "sources": [
229
+ "string",
230
+ "string"
231
+ ],
232
+ "standbyState": "string"
233
+ }
234
+ }
235
+ ]
@@ -0,0 +1,60 @@
1
+ [
2
+ {
3
+ "encapType": "string",
4
+ "fdn": "string",
5
+ "lagId": "string",
6
+ "objectDetails": {},
7
+ "portFdn": "string",
8
+ "portName": "string",
9
+ "priority": 2,
10
+ "sourceSystem": "string",
11
+ "sourceType": "string",
12
+ "sources": [
13
+ "string"
14
+ ],
15
+ "standbyState": "string"
16
+ },
17
+ {
18
+ "encapType": "string",
19
+ "fdn": "string",
20
+ "lagId": "string",
21
+ "objectDetails": {},
22
+ "portFdn": "string",
23
+ "portName": "string",
24
+ "priority": 4,
25
+ "sourceSystem": "string",
26
+ "sourceType": "string",
27
+ "sources": [
28
+ "string",
29
+ "string",
30
+ "string",
31
+ "string",
32
+ "string"
33
+ ],
34
+ "standbyState": "string"
35
+ },
36
+ {
37
+ "encapType": "string",
38
+ "fdn": "string",
39
+ "lagId": "string",
40
+ "objectDetails": {},
41
+ "portFdn": "string",
42
+ "portName": "string",
43
+ "priority": 10,
44
+ "sourceSystem": "string",
45
+ "sourceType": "string",
46
+ "sources": [
47
+ "string",
48
+ "string",
49
+ "string",
50
+ "string",
51
+ "string",
52
+ "string",
53
+ "string",
54
+ "string",
55
+ "string",
56
+ "string"
57
+ ],
58
+ "standbyState": "string"
59
+ }
60
+ ]