@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,312 @@
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
+ "fdn": "string",
16
+ "sourceType": null,
17
+ "sourceSystem": "string",
18
+ "sources": [
19
+ "string",
20
+ "string",
21
+ "string",
22
+ "string",
23
+ "string"
24
+ ],
25
+ "lagId": "string",
26
+ "neName": "string",
27
+ "neId": "string",
28
+ "name": "string",
29
+ "description": "string",
30
+ "configuredAddress": "string",
31
+ "encapType": null,
32
+ "operationalSpeedUnits": "string",
33
+ "operationalSpeed": 1,
34
+ "lagMode": null,
35
+ "adminState": null,
36
+ "operState": null,
37
+ "standbyState": null,
38
+ "availabilityStates": [
39
+ "logFull",
40
+ "powerOff",
41
+ "powerOff",
42
+ "inTest",
43
+ "degraded",
44
+ "logFull"
45
+ ],
46
+ "stateReasons": [
47
+ "string",
48
+ "string",
49
+ "string",
50
+ "string",
51
+ "string",
52
+ "string",
53
+ "string",
54
+ "string",
55
+ "string",
56
+ "string"
57
+ ],
58
+ "objectDetails": {},
59
+ "members": [
60
+ {
61
+ "encapType": "string",
62
+ "fdn": "string",
63
+ "lagId": "string",
64
+ "objectDetails": {},
65
+ "portFdn": "string",
66
+ "portName": "string",
67
+ "priority": 6,
68
+ "sourceSystem": "string",
69
+ "sourceType": "string",
70
+ "sources": [
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string",
75
+ "string",
76
+ "string"
77
+ ],
78
+ "standbyState": "string"
79
+ },
80
+ {
81
+ "encapType": "string",
82
+ "fdn": "string",
83
+ "lagId": "string",
84
+ "objectDetails": {},
85
+ "portFdn": "string",
86
+ "portName": "string",
87
+ "priority": 6,
88
+ "sourceSystem": "string",
89
+ "sourceType": "string",
90
+ "sources": [
91
+ "string",
92
+ "string",
93
+ "string",
94
+ "string",
95
+ "string",
96
+ "string",
97
+ "string",
98
+ "string"
99
+ ],
100
+ "standbyState": "string"
101
+ },
102
+ {
103
+ "encapType": "string",
104
+ "fdn": "string",
105
+ "lagId": "string",
106
+ "objectDetails": {},
107
+ "portFdn": "string",
108
+ "portName": "string",
109
+ "priority": 10,
110
+ "sourceSystem": "string",
111
+ "sourceType": "string",
112
+ "sources": [
113
+ "string",
114
+ "string",
115
+ "string",
116
+ "string",
117
+ "string",
118
+ "string"
119
+ ],
120
+ "standbyState": "string"
121
+ },
122
+ {
123
+ "encapType": "string",
124
+ "fdn": "string",
125
+ "lagId": "string",
126
+ "objectDetails": {},
127
+ "portFdn": "string",
128
+ "portName": "string",
129
+ "priority": 2,
130
+ "sourceSystem": "string",
131
+ "sourceType": "string",
132
+ "sources": [
133
+ "string",
134
+ "string",
135
+ "string"
136
+ ],
137
+ "standbyState": "string"
138
+ },
139
+ {
140
+ "encapType": "string",
141
+ "fdn": "string",
142
+ "lagId": "string",
143
+ "objectDetails": {},
144
+ "portFdn": "string",
145
+ "portName": "string",
146
+ "priority": 6,
147
+ "sourceSystem": "string",
148
+ "sourceType": "string",
149
+ "sources": [
150
+ "string",
151
+ "string",
152
+ "string",
153
+ "string",
154
+ "string"
155
+ ],
156
+ "standbyState": "string"
157
+ },
158
+ {
159
+ "encapType": "string",
160
+ "fdn": "string",
161
+ "lagId": "string",
162
+ "objectDetails": {},
163
+ "portFdn": "string",
164
+ "portName": "string",
165
+ "priority": 9,
166
+ "sourceSystem": "string",
167
+ "sourceType": "string",
168
+ "sources": [
169
+ "string",
170
+ "string",
171
+ "string",
172
+ "string"
173
+ ],
174
+ "standbyState": "string"
175
+ },
176
+ {
177
+ "encapType": "string",
178
+ "fdn": "string",
179
+ "lagId": "string",
180
+ "objectDetails": {},
181
+ "portFdn": "string",
182
+ "portName": "string",
183
+ "priority": 1,
184
+ "sourceSystem": "string",
185
+ "sourceType": "string",
186
+ "sources": [
187
+ "string",
188
+ "string",
189
+ "string",
190
+ "string",
191
+ "string",
192
+ "string",
193
+ "string",
194
+ "string",
195
+ "string"
196
+ ],
197
+ "standbyState": "string"
198
+ },
199
+ {
200
+ "encapType": "string",
201
+ "fdn": "string",
202
+ "lagId": "string",
203
+ "objectDetails": {},
204
+ "portFdn": "string",
205
+ "portName": "string",
206
+ "priority": 4,
207
+ "sourceSystem": "string",
208
+ "sourceType": "string",
209
+ "sources": [
210
+ "string",
211
+ "string",
212
+ "string",
213
+ "string",
214
+ "string",
215
+ "string",
216
+ "string"
217
+ ],
218
+ "standbyState": "string"
219
+ }
220
+ ],
221
+ "multiChassisLAGMembers": [
222
+ {
223
+ "description": "string",
224
+ "fdn": "string",
225
+ "lacpKey": 5,
226
+ "objectDetails": {},
227
+ "peerIpAddress": "string",
228
+ "peerNeId": "string",
229
+ "remoteLagId": "string",
230
+ "sourceSystem": "string",
231
+ "sourceType": "string",
232
+ "sources": [
233
+ "string",
234
+ "string",
235
+ "string",
236
+ "string",
237
+ "string",
238
+ "string",
239
+ "string"
240
+ ],
241
+ "standbyState": "string",
242
+ "systemId": "string",
243
+ "systemPriority": 2
244
+ },
245
+ {
246
+ "description": "string",
247
+ "fdn": "string",
248
+ "lacpKey": 4,
249
+ "objectDetails": {},
250
+ "peerIpAddress": "string",
251
+ "peerNeId": "string",
252
+ "remoteLagId": "string",
253
+ "sourceSystem": "string",
254
+ "sourceType": "string",
255
+ "sources": [
256
+ "string",
257
+ "string",
258
+ "string",
259
+ "string",
260
+ "string",
261
+ "string",
262
+ "string",
263
+ "string",
264
+ "string",
265
+ "string"
266
+ ],
267
+ "standbyState": "string",
268
+ "systemId": "string",
269
+ "systemPriority": 8
270
+ },
271
+ {
272
+ "description": "string",
273
+ "fdn": "string",
274
+ "lacpKey": 6,
275
+ "objectDetails": {},
276
+ "peerIpAddress": "string",
277
+ "peerNeId": "string",
278
+ "remoteLagId": "string",
279
+ "sourceSystem": "string",
280
+ "sourceType": "string",
281
+ "sources": [
282
+ "string",
283
+ "string",
284
+ "string"
285
+ ],
286
+ "standbyState": "string",
287
+ "systemId": "string",
288
+ "systemPriority": 3
289
+ },
290
+ {
291
+ "description": "string",
292
+ "fdn": "string",
293
+ "lacpKey": 2,
294
+ "objectDetails": {},
295
+ "peerIpAddress": "string",
296
+ "peerNeId": "string",
297
+ "remoteLagId": "string",
298
+ "sourceSystem": "string",
299
+ "sourceType": "string",
300
+ "sources": [
301
+ "string",
302
+ "string"
303
+ ],
304
+ "standbyState": "string",
305
+ "systemId": "string",
306
+ "systemPriority": 8
307
+ }
308
+ ],
309
+ "parentNe": "string",
310
+ "parent": "string"
311
+ }
312
+ ]
@@ -0,0 +1,106 @@
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": true
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
+ ],
47
+ "name": "string",
48
+ "neName": "string",
49
+ "neId": "string",
50
+ "description": "string",
51
+ "positionId": 3,
52
+ "position": "string",
53
+ "adminState": null,
54
+ "operState": null,
55
+ "standbyState": null,
56
+ "availabilityStates": [
57
+ "dependency",
58
+ "inTest",
59
+ "failed",
60
+ "notInstalled",
61
+ "notInstalled",
62
+ "offDuty",
63
+ "degraded"
64
+ ],
65
+ "stateReasons": [
66
+ "string",
67
+ "string",
68
+ "string",
69
+ "string",
70
+ "string",
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string"
75
+ ],
76
+ "objectDetails": {},
77
+ "manufacturer": "string",
78
+ "serialNumber": "string",
79
+ "partNumber": "string",
80
+ "manufacturerAssemblyNumber": "string",
81
+ "manufactureDate": "string",
82
+ "manufacturingDeviations": "string",
83
+ "macAddress": "string",
84
+ "hwMacAddress": "string",
85
+ "cardDetails": {
86
+ "fdn": "fdn:model:equipment:CardDetails:2203",
87
+ "sourceType": null,
88
+ "sourceSystem": "fdn:realm:sam",
89
+ "sources": [
90
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card@cardDetails"
91
+ ],
92
+ "objectDetails": {},
93
+ "cardType": "500g CPM / Switch Fabric 3",
94
+ "equippedPorts": 40,
95
+ "capabilities": [
96
+ "string",
97
+ "string",
98
+ "string"
99
+ ],
100
+ "availableSlots": 2,
101
+ "installedSlots": 1,
102
+ "memorySize": 16392,
103
+ "lastBootUpReason": "Hard Reboot"
104
+ }
105
+ }
106
+ ]
@@ -0,0 +1,66 @@
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": true
18
+ }
19
+ ],
20
+ "fdn": "string",
21
+ "sourceType": null,
22
+ "sourceSystem": "string",
23
+ "sources": [
24
+ "string",
25
+ "string",
26
+ "string",
27
+ "string",
28
+ "string",
29
+ "string",
30
+ "string",
31
+ "string"
32
+ ],
33
+ "name": "string",
34
+ "neName": "string",
35
+ "neId": "string",
36
+ "description": "string",
37
+ "positionId": 5,
38
+ "position": "string",
39
+ "adminState": null,
40
+ "operState": null,
41
+ "standbyState": null,
42
+ "availabilityStates": [
43
+ "unknown",
44
+ "unknown",
45
+ "logFull",
46
+ "notInstalled",
47
+ "logFull",
48
+ "powerOff",
49
+ "dependency"
50
+ ],
51
+ "stateReasons": [
52
+ "string",
53
+ "string",
54
+ "string"
55
+ ],
56
+ "objectDetails": {},
57
+ "manufacturer": "string",
58
+ "serialNumber": "string",
59
+ "partNumber": "string",
60
+ "manufacturerAssemblyNumber": "string",
61
+ "manufactureDate": "string",
62
+ "manufacturingDeviations": "string",
63
+ "macAddress": "string",
64
+ "hwMacAddress": "string"
65
+ }
66
+ ]
@@ -0,0 +1,218 @@
1
+ [
2
+ {
3
+ "links": [
4
+ {
5
+ "href": "string",
6
+ "rel": "string",
7
+ "templated": false
8
+ },
9
+ {
10
+ "href": "string",
11
+ "rel": "string",
12
+ "templated": false
13
+ },
14
+ {
15
+ "href": "string",
16
+ "rel": "string",
17
+ "templated": true
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
+ "href": "string",
41
+ "rel": "string",
42
+ "templated": true
43
+ },
44
+ {
45
+ "href": "string",
46
+ "rel": "string",
47
+ "templated": true
48
+ }
49
+ ],
50
+ "fdn": "string",
51
+ "sourceType": null,
52
+ "sourceSystem": "string",
53
+ "sources": [
54
+ "string",
55
+ "string",
56
+ "string",
57
+ "string",
58
+ "string",
59
+ "string",
60
+ "string"
61
+ ],
62
+ "name": "string",
63
+ "neName": "string",
64
+ "neId": "string",
65
+ "description": "string",
66
+ "positionId": 7,
67
+ "position": "string",
68
+ "adminState": null,
69
+ "operState": null,
70
+ "standbyState": null,
71
+ "availabilityStates": [
72
+ "failed",
73
+ "degraded",
74
+ "degraded",
75
+ "powerOff",
76
+ "degraded",
77
+ "notInstalled",
78
+ "offDuty",
79
+ "inTest",
80
+ "offLine",
81
+ "dependency"
82
+ ],
83
+ "stateReasons": [
84
+ "string"
85
+ ],
86
+ "objectDetails": {},
87
+ "manufacturer": "string",
88
+ "serialNumber": "string",
89
+ "partNumber": "string",
90
+ "manufacturerAssemblyNumber": "string",
91
+ "manufactureDate": "string",
92
+ "manufacturingDeviations": "string",
93
+ "macAddress": "string",
94
+ "hwMacAddress": "string",
95
+ "cardDetails": {
96
+ "fdn": "fdn:model:equipment:CardDetails:2203",
97
+ "sourceType": null,
98
+ "sourceSystem": "fdn:realm:sam",
99
+ "sources": [
100
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card@cardDetails"
101
+ ],
102
+ "objectDetails": {},
103
+ "cardType": "500g CPM / Switch Fabric 3",
104
+ "equippedPorts": 40,
105
+ "capabilities": [
106
+ "string",
107
+ "string"
108
+ ],
109
+ "availableSlots": 2,
110
+ "installedSlots": 1,
111
+ "memorySize": 16392,
112
+ "lastBootUpReason": "Hard Reboot"
113
+ }
114
+ },
115
+ {
116
+ "links": [
117
+ {
118
+ "href": "string",
119
+ "rel": "string",
120
+ "templated": false
121
+ },
122
+ {
123
+ "href": "string",
124
+ "rel": "string",
125
+ "templated": false
126
+ },
127
+ {
128
+ "href": "string",
129
+ "rel": "string",
130
+ "templated": false
131
+ },
132
+ {
133
+ "href": "string",
134
+ "rel": "string",
135
+ "templated": true
136
+ },
137
+ {
138
+ "href": "string",
139
+ "rel": "string",
140
+ "templated": true
141
+ },
142
+ {
143
+ "href": "string",
144
+ "rel": "string",
145
+ "templated": false
146
+ }
147
+ ],
148
+ "fdn": "string",
149
+ "sourceType": null,
150
+ "sourceSystem": "string",
151
+ "sources": [
152
+ "string",
153
+ "string",
154
+ "string",
155
+ "string",
156
+ "string",
157
+ "string",
158
+ "string",
159
+ "string",
160
+ "string",
161
+ "string"
162
+ ],
163
+ "name": "string",
164
+ "neName": "string",
165
+ "neId": "string",
166
+ "description": "string",
167
+ "positionId": 7,
168
+ "position": "string",
169
+ "adminState": null,
170
+ "operState": null,
171
+ "standbyState": null,
172
+ "availabilityStates": [
173
+ "inTest",
174
+ "dependency",
175
+ "failed",
176
+ "notInstalled",
177
+ "powerOff",
178
+ "notInstalled",
179
+ "degraded"
180
+ ],
181
+ "stateReasons": [
182
+ "string",
183
+ "string",
184
+ "string",
185
+ "string",
186
+ "string",
187
+ "string"
188
+ ],
189
+ "objectDetails": {},
190
+ "manufacturer": "string",
191
+ "serialNumber": "string",
192
+ "partNumber": "string",
193
+ "manufacturerAssemblyNumber": "string",
194
+ "manufactureDate": "string",
195
+ "manufacturingDeviations": "string",
196
+ "macAddress": "string",
197
+ "hwMacAddress": "string",
198
+ "cardDetails": {
199
+ "fdn": "fdn:model:equipment:CardDetails:2203",
200
+ "sourceType": null,
201
+ "sourceSystem": "fdn:realm:sam",
202
+ "sources": [
203
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card@cardDetails"
204
+ ],
205
+ "objectDetails": {},
206
+ "cardType": "500g CPM / Switch Fabric 3",
207
+ "equippedPorts": 40,
208
+ "capabilities": [
209
+ "string",
210
+ "string"
211
+ ],
212
+ "availableSlots": 2,
213
+ "installedSlots": 1,
214
+ "memorySize": 16392,
215
+ "lastBootUpReason": "Hard Reboot"
216
+ }
217
+ }
218
+ ]