@itentialopensource/adapter-nokia_nsp_network_management 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 (179) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +38 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +206 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +646 -0
  13. package/README.md +343 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +22 -0
  16. package/TAB1.md +14 -0
  17. package/TAB2.md +321 -0
  18. package/TROUBLESHOOT.md +47 -0
  19. package/adapter.js +11110 -0
  20. package/adapterBase.js +1452 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +52 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +31 -0
  29. package/entities/AddressPool/action.json +65 -0
  30. package/entities/AddressPool/mockdatafiles/getIPv4AddressPool-default.json +47 -0
  31. package/entities/AddressPool/mockdatafiles/obtainValueFromPool-default.json +23 -0
  32. package/entities/AddressPool/schema.json +32 -0
  33. package/entities/AuditAndAlignment/action.json +165 -0
  34. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationDeployment-default.json +6 -0
  35. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateAllDeployments-default.json +7 -0
  36. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateMisalignedDeployments-default.json +7 -0
  37. package/entities/AuditAndAlignment/mockdatafiles/auditDeployment-default.json +7 -0
  38. package/entities/AuditAndAlignment/mockdatafiles/auditNodeDeployments-default.json +6 -0
  39. package/entities/AuditAndAlignment/mockdatafiles/auditTemplate-default.json +7 -0
  40. package/entities/AuditAndAlignment/mockdatafiles/checkAuditStatusCount-default.json +15 -0
  41. package/entities/AuditAndAlignment/mockdatafiles/getAuditDetails-default.json +9 -0
  42. package/entities/AuditAndAlignment/schema.json +26 -0
  43. package/entities/BaselineOperationsRestconfAPI/action.json +207 -0
  44. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/createBaselineDetector-default.json +35 -0
  45. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getAllBaselines-default.json +44 -0
  46. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaseline-default.json +24 -0
  47. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaselineDetector-default.json +15 -0
  48. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/patchBaselineDetector-default.json +13 -0
  49. package/entities/BaselineOperationsRestconfAPI/schema.json +39 -0
  50. package/entities/Brownfield/action.json +24 -0
  51. package/entities/Brownfield/mockdatafiles/discoverDeployments-default.json +7 -0
  52. package/entities/Brownfield/schema.json +19 -0
  53. package/entities/ConfigurationDeployments/action.json +207 -0
  54. package/entities/ConfigurationDeployments/mockdatafiles/createDeployment-default.json +7 -0
  55. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroup-default.json +18 -0
  56. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroupDirectory-default.json +16 -0
  57. package/entities/ConfigurationDeployments/mockdatafiles/deleteDeployments-default.json +7 -0
  58. package/entities/ConfigurationDeployments/mockdatafiles/getDeployments-default.json +322 -0
  59. package/entities/ConfigurationDeployments/mockdatafiles/getPortGroupFDN-default.json +18 -0
  60. package/entities/ConfigurationDeployments/mockdatafiles/getSpecificDeployment-default.json +43 -0
  61. package/entities/ConfigurationDeployments/mockdatafiles/replaceDeployment-default.json +7 -0
  62. package/entities/ConfigurationDeployments/mockdatafiles/updateDeploymentConfiguration-default.json +7 -0
  63. package/entities/ConfigurationDeployments/schema.json +28 -0
  64. package/entities/ConfigurationTemplates/action.json +85 -0
  65. package/entities/ConfigurationTemplates/mockdatafiles/createTemplate-default.json +4 -0
  66. package/entities/ConfigurationTemplates/mockdatafiles/getTemplates-default.json +195 -0
  67. package/entities/ConfigurationTemplates/schema.json +22 -0
  68. package/entities/DataTablesRetention/action.json +86 -0
  69. package/entities/DataTablesRetention/mockdatafiles/getBaselineAgeoutPolicySettings-default.json +22 -0
  70. package/entities/DataTablesRetention/mockdatafiles/getIndicatorAgeoutPolicySettings-default.json +16 -0
  71. package/entities/DataTablesRetention/schema.json +22 -0
  72. package/entities/IETFL2Model/action.json +67 -0
  73. package/entities/IETFL2Model/mockdatafiles/getL2TopologyAttributes-default.json +5 -0
  74. package/entities/IETFL2Model/mockdatafiles/getL2TopologyNodeTerminationPoints-default.json +69 -0
  75. package/entities/IETFL2Model/schema.json +21 -0
  76. package/entities/IETFL3Model/action.json +277 -0
  77. package/entities/IETFL3Model/mockdatafiles/getAllNodesInANetwork-default.json +207 -0
  78. package/entities/IETFL3Model/mockdatafiles/getL3TopologyAttribute-default.json +8 -0
  79. package/entities/IETFL3Model/mockdatafiles/getNetworkType-default.json +7 -0
  80. package/entities/IETFL3Model/mockdatafiles/getSpecificLinkInANetwork-default.json +67 -0
  81. package/entities/IETFL3Model/mockdatafiles/getSpecificNetwork-default.json +498 -0
  82. package/entities/IETFL3Model/mockdatafiles/getSpecificNodeInANetwork-default.json +56 -0
  83. package/entities/IETFL3Model/mockdatafiles/getSpecificTerminationPointsOfANode-default.json +17 -0
  84. package/entities/IETFL3Model/mockdatafiles/getSupportingLink-default.json +8 -0
  85. package/entities/IETFL3Model/mockdatafiles/getSupportingNetwork-default.json +7 -0
  86. package/entities/IETFL3Model/mockdatafiles/getSupportingTerminationPoint-default.json +9 -0
  87. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyLinkAttributes-default.json +41 -0
  88. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyNodeAttributes-default.json +16 -0
  89. package/entities/IETFL3Model/schema.json +42 -0
  90. package/entities/IETFLogicalInventoryRestconfAPI/action.json +235 -0
  91. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesConfig-default.json +14 -0
  92. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumbered-default.json +28 -0
  93. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumberedIntf-default.json +21 -0
  94. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesConfig-default.json +16 -0
  95. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv4Addresses-default.json +39 -0
  96. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv6Addresses-default.json +38 -0
  97. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesState-default.json +15 -0
  98. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNodeVersionEntity-default.json +797 -0
  99. package/entities/IETFLogicalInventoryRestconfAPI/schema.json +51 -0
  100. package/entities/IETFSAPTopology/action.json +67 -0
  101. package/entities/IETFSAPTopology/mockdatafiles/getIETFNetworkFromSpecificNode-default.json +483 -0
  102. package/entities/IETFSAPTopology/mockdatafiles/getSAPNetwork-default.json +9 -0
  103. package/entities/IETFSAPTopology/mockdatafiles/getSAPsOnASpecificNodeOfSpecificServiceType-default.json +153 -0
  104. package/entities/IETFSAPTopology/schema.json +21 -0
  105. package/entities/IndicatorRules/action.json +106 -0
  106. package/entities/IndicatorRules/mockdatafiles/getAllIndicatorRules-default.json +818 -0
  107. package/entities/IndicatorRules/mockdatafiles/getSpecificIndicatorRule-default.json +119 -0
  108. package/entities/IndicatorRules/schema.json +23 -0
  109. package/entities/IndicatorTemplates/action.json +106 -0
  110. package/entities/IndicatorTemplates/mockdatafiles/avgCPUAllNodesAllActions-default.json +105 -0
  111. package/entities/IndicatorTemplates/mockdatafiles/getAllIndicatorTemplates-default.json +512 -0
  112. package/entities/IndicatorTemplates/mockdatafiles/getSpecificIndicatorTemplate-default.json +88 -0
  113. package/entities/IndicatorTemplates/mockdatafiles/uPDATEIndicatorTemplate-default.json +48 -0
  114. package/entities/IndicatorTemplates/schema.json +23 -0
  115. package/entities/Intent/action.json +105 -0
  116. package/entities/Intent/mockdatafiles/getIntent-default.json +161 -0
  117. package/entities/Intent/mockdatafiles/synchronizeIntent-default.json +6 -0
  118. package/entities/Intent/schema.json +23 -0
  119. package/entities/IntentTypeManagement/action.json +65 -0
  120. package/entities/IntentTypeManagement/mockdatafiles/getIntentTypes-default.json +482 -0
  121. package/entities/IntentTypeManagement/mockdatafiles/importIntentTypeFromIntentManager-default.json +6 -0
  122. package/entities/IntentTypeManagement/mockdatafiles/removeIntentType-default.json +7 -0
  123. package/entities/IntentTypeManagement/schema.json +21 -0
  124. package/entities/LogicalInventoryRestconfAPI/action.json +107 -0
  125. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/nspInventoryFindWithFilter-default.json +528 -0
  126. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicy-default.json +4189 -0
  127. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNEAndVersionSpecific-default.json +1083 -0
  128. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPollingPolicyNESpecific-default.json +1113 -0
  129. package/entities/LogicalInventoryRestconfAPI/schema.json +34 -0
  130. package/entities/ManageZTPListFromDeviceAdministrator/action.json +85 -0
  131. package/entities/ManageZTPListFromDeviceAdministrator/mockdatafiles/getZTPListFromDeviceAdministrator-default.json +114 -0
  132. package/entities/ManageZTPListFromDeviceAdministrator/schema.json +33 -0
  133. package/entities/RouterNECorrelationMappingService/action.json +147 -0
  134. package/entities/RouterNECorrelationMappingService/mockdatafiles/getCorrelationPolicy-default.json +38 -0
  135. package/entities/RouterNECorrelationMappingService/mockdatafiles/getRouterNeMapping-default.json +32 -0
  136. package/entities/RouterNECorrelationMappingService/mockdatafiles/getSpecificMappingPolicy-default.json +32 -0
  137. package/entities/RouterNECorrelationMappingService/schema.json +47 -0
  138. package/entities/TemplateMigration/action.json +44 -0
  139. package/entities/TemplateMigration/mockdatafiles/cloneTemplate-default.json +7 -0
  140. package/entities/TemplateMigration/mockdatafiles/migrateDeployments-default.json +7 -0
  141. package/entities/TemplateMigration/schema.json +20 -0
  142. package/entities/UploadMappingFiles/action.json +45 -0
  143. package/entities/UploadMappingFiles/mockdatafiles/getIETFMappingFiles-default.json +953 -0
  144. package/entities/UploadMappingFiles/schema.json +31 -0
  145. package/error.json +190 -0
  146. package/metadata.json +61 -0
  147. package/package.json +81 -0
  148. package/pronghorn.json +5141 -0
  149. package/propertiesDecorators.json +14 -0
  150. package/propertiesSchema.json +1666 -0
  151. package/refs?service=git-upload-pack +0 -0
  152. package/report/creationReport.json +657 -0
  153. package/report/update-postman.json-OpenApi3Json.json +112049 -0
  154. package/report/updateReport1718639512342.json +120 -0
  155. package/sampleProperties.json +268 -0
  156. package/test/integration/adapterTestBasicGet.js +83 -0
  157. package/test/integration/adapterTestConnectivity.js +142 -0
  158. package/test/integration/adapterTestIntegration.js +3836 -0
  159. package/test/unit/adapterBaseTestUnit.js +1024 -0
  160. package/test/unit/adapterTestUnit.js +5403 -0
  161. package/utils/adapterInfo.js +206 -0
  162. package/utils/addAuth.js +94 -0
  163. package/utils/artifactize.js +146 -0
  164. package/utils/basicGet.js +50 -0
  165. package/utils/checkMigrate.js +63 -0
  166. package/utils/entitiesToDB.js +179 -0
  167. package/utils/findPath.js +74 -0
  168. package/utils/methodDocumentor.js +273 -0
  169. package/utils/modify.js +152 -0
  170. package/utils/packModificationScript.js +35 -0
  171. package/utils/patches2bundledDeps.js +90 -0
  172. package/utils/pre-commit.sh +32 -0
  173. package/utils/removeHooks.js +20 -0
  174. package/utils/setup.js +33 -0
  175. package/utils/taskMover.js +309 -0
  176. package/utils/tbScript.js +239 -0
  177. package/utils/tbUtils.js +489 -0
  178. package/utils/testRunner.js +298 -0
  179. package/utils/troubleshootingAdapter.js +193 -0
Binary file
@@ -0,0 +1,657 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 17
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 6
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 22
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^5.3.0"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 77
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 11111
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 108
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 108
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 347
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 642
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 200
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 171
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 11
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 5400
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 329
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 3836
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 117
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for IETFLogicalInventoryRestconfAPI entity",
117
+ "value": 11
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for Intent entity",
122
+ "value": 5
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for ManageZTPListFromDeviceAdministrator entity",
127
+ "value": 4
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for AddressPool entity",
132
+ "value": 3
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for LogicalInventoryRestconfAPI entity",
137
+ "value": 5
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for IETFL2Model entity",
142
+ "value": 3
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for IETFL3Model entity",
147
+ "value": 13
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for IETFSAPTopology entity",
152
+ "value": 3
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for UploadMappingFiles entity",
157
+ "value": 2
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for RouterNECorrelationMappingService entity",
162
+ "value": 7
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for DataTablesRetention entity",
167
+ "value": 4
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for IndicatorTemplates entity",
172
+ "value": 5
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for IndicatorRules entity",
177
+ "value": 5
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for BaselineOperationsRestconfAPI entity",
182
+ "value": 10
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for IntentTypeManagement entity",
187
+ "value": 3
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for ConfigurationTemplates entity",
192
+ "value": 4
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for ConfigurationDeployments entity",
197
+ "value": 10
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for Brownfield entity",
202
+ "value": 1
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for AuditAndAlignment entity",
207
+ "value": 8
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for TemplateMigration entity",
212
+ "value": 2
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Total number of actions",
217
+ "value": 108
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Total number of entities",
222
+ "value": 20
223
+ },
224
+ {
225
+ "owner": "schemaJson",
226
+ "description": "Number of schemas for IETFLogicalInventoryRestconfAPI entity",
227
+ "value": 1
228
+ },
229
+ {
230
+ "owner": "schemaJson",
231
+ "description": "Number of schemas for Intent entity",
232
+ "value": 1
233
+ },
234
+ {
235
+ "owner": "schemaJson",
236
+ "description": "Number of schemas for ManageZTPListFromDeviceAdministrator entity",
237
+ "value": 1
238
+ },
239
+ {
240
+ "owner": "schemaJson",
241
+ "description": "Number of schemas for AddressPool entity",
242
+ "value": 1
243
+ },
244
+ {
245
+ "owner": "schemaJson",
246
+ "description": "Number of schemas for LogicalInventoryRestconfAPI entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "schemaJson",
251
+ "description": "Number of schemas for IETFL2Model entity",
252
+ "value": 1
253
+ },
254
+ {
255
+ "owner": "schemaJson",
256
+ "description": "Number of schemas for IETFL3Model entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "schemaJson",
261
+ "description": "Number of schemas for IETFSAPTopology entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "schemaJson",
266
+ "description": "Number of schemas for UploadMappingFiles entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "schemaJson",
271
+ "description": "Number of schemas for RouterNECorrelationMappingService entity",
272
+ "value": 1
273
+ },
274
+ {
275
+ "owner": "schemaJson",
276
+ "description": "Number of schemas for DataTablesRetention entity",
277
+ "value": 1
278
+ },
279
+ {
280
+ "owner": "schemaJson",
281
+ "description": "Number of schemas for IndicatorTemplates entity",
282
+ "value": 1
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for IndicatorRules entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for BaselineOperationsRestconfAPI entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for IntentTypeManagement entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for ConfigurationTemplates entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for ConfigurationDeployments entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for Brownfield entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for AuditAndAlignment entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for TemplateMigration entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Total number of schemas",
327
+ "value": 20
328
+ },
329
+ {
330
+ "owner": "mockdata",
331
+ "description": "Number of mock data files for IETFLogicalInventoryRestconfAPI entity",
332
+ "value": 8
333
+ },
334
+ {
335
+ "owner": "mockdata",
336
+ "description": "Number of mock data files for Intent entity",
337
+ "value": 2
338
+ },
339
+ {
340
+ "owner": "mockdata",
341
+ "description": "Number of mock data files for ManageZTPListFromDeviceAdministrator entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "mockdata",
346
+ "description": "Number of mock data files for AddressPool entity",
347
+ "value": 2
348
+ },
349
+ {
350
+ "owner": "mockdata",
351
+ "description": "Number of mock data files for LogicalInventoryRestconfAPI entity",
352
+ "value": 4
353
+ },
354
+ {
355
+ "owner": "mockdata",
356
+ "description": "Number of mock data files for IETFL2Model entity",
357
+ "value": 2
358
+ },
359
+ {
360
+ "owner": "mockdata",
361
+ "description": "Number of mock data files for IETFL3Model entity",
362
+ "value": 12
363
+ },
364
+ {
365
+ "owner": "mockdata",
366
+ "description": "Number of mock data files for IETFSAPTopology entity",
367
+ "value": 3
368
+ },
369
+ {
370
+ "owner": "mockdata",
371
+ "description": "Number of mock data files for UploadMappingFiles entity",
372
+ "value": 1
373
+ },
374
+ {
375
+ "owner": "mockdata",
376
+ "description": "Number of mock data files for RouterNECorrelationMappingService entity",
377
+ "value": 3
378
+ },
379
+ {
380
+ "owner": "mockdata",
381
+ "description": "Number of mock data files for DataTablesRetention entity",
382
+ "value": 2
383
+ },
384
+ {
385
+ "owner": "mockdata",
386
+ "description": "Number of mock data files for IndicatorTemplates entity",
387
+ "value": 4
388
+ },
389
+ {
390
+ "owner": "mockdata",
391
+ "description": "Number of mock data files for IndicatorRules entity",
392
+ "value": 2
393
+ },
394
+ {
395
+ "owner": "mockdata",
396
+ "description": "Number of mock data files for BaselineOperationsRestconfAPI entity",
397
+ "value": 5
398
+ },
399
+ {
400
+ "owner": "mockdata",
401
+ "description": "Number of mock data files for IntentTypeManagement entity",
402
+ "value": 3
403
+ },
404
+ {
405
+ "owner": "mockdata",
406
+ "description": "Number of mock data files for ConfigurationTemplates entity",
407
+ "value": 2
408
+ },
409
+ {
410
+ "owner": "mockdata",
411
+ "description": "Number of mock data files for ConfigurationDeployments entity",
412
+ "value": 9
413
+ },
414
+ {
415
+ "owner": "mockdata",
416
+ "description": "Number of mock data files for Brownfield entity",
417
+ "value": 1
418
+ },
419
+ {
420
+ "owner": "mockdata",
421
+ "description": "Number of mock data files for AuditAndAlignment entity",
422
+ "value": 8
423
+ },
424
+ {
425
+ "owner": "mockdata",
426
+ "description": "Number of mock data files for TemplateMigration entity",
427
+ "value": 2
428
+ },
429
+ {
430
+ "owner": "mockdata",
431
+ "description": "Total number of mock data files",
432
+ "value": 76
433
+ },
434
+ {
435
+ "owner": "actionJson",
436
+ "description": "Number of actions for .system entity",
437
+ "value": 2
438
+ },
439
+ {
440
+ "owner": "schemaJson",
441
+ "description": "Number of schemas for .system entity",
442
+ "value": 3
443
+ },
444
+ {
445
+ "owner": "mockdata",
446
+ "description": "Number of mock data files for .system entity",
447
+ "value": 2
448
+ },
449
+ {
450
+ "owner": "System",
451
+ "description": "System entity files",
452
+ "value": 6
453
+ },
454
+ {
455
+ "owner": "usecases",
456
+ "description": "Number of workflows",
457
+ "value": 0
458
+ },
459
+ {
460
+ "owner": "staticFile",
461
+ "description": "Number of lines of code in adapterBase.js",
462
+ "value": 1453
463
+ },
464
+ {
465
+ "owner": "staticFile",
466
+ "description": "Number of static files added",
467
+ "value": 37
468
+ },
469
+ {
470
+ "owner": "Overall",
471
+ "description": "Total lines of Code",
472
+ "value": 21800
473
+ },
474
+ {
475
+ "owner": "Overall",
476
+ "description": "Total Tests",
477
+ "value": 446
478
+ },
479
+ {
480
+ "owner": "Overall",
481
+ "description": "Total Files",
482
+ "value": 168
483
+ }
484
+ ],
485
+ "warnings": [],
486
+ "apiParsingReport": {
487
+ "no_mockdata": [
488
+ {
489
+ "fnName": "retrieveNetworkInterfaces",
490
+ "method": "get",
491
+ "path": "/restconf/data/ietf-network:networks/{network}/{node}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface"
492
+ },
493
+ {
494
+ "fnName": "retrieveNetworkSubInterfaces",
495
+ "method": "get",
496
+ "path": "/restconf/data/ietf-network:networks/{network}/{node}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/interface/subinterfaces/subinterface"
497
+ },
498
+ {
499
+ "fnName": "retrieveNetworkInstance",
500
+ "method": "get",
501
+ "path": "/restconf/data/ietf-network:networks/{network}/{node}/ne-management-nm:commissioning-configs/protocols-config/protocol-root/openconfig-network-instance:network-instances/network-instance"
502
+ },
503
+ {
504
+ "fnName": "createUsingIntent",
505
+ "method": "post",
506
+ "path": "/restconf/data/ibn:ibn"
507
+ },
508
+ {
509
+ "fnName": "modifyIntent",
510
+ "method": "put",
511
+ "path": "/restconf/data/ibn:ibn/{intent}"
512
+ },
513
+ {
514
+ "fnName": "deleteIntent",
515
+ "method": "delete",
516
+ "path": "/restconf/data/ibn:ibn/{intent}"
517
+ },
518
+ {
519
+ "fnName": "devAdminCreateAutodiscoveryNe",
520
+ "method": "post",
521
+ "path": "/:8545/restconf/data/nsp-ne-control:ne-control"
522
+ },
523
+ {
524
+ "fnName": "devAdminUpdateAutodiscoveryNe",
525
+ "method": "patch",
526
+ "path": "/restconf/data/nsp-ne-control:ne-control/{autodiscovery-ne}"
527
+ },
528
+ {
529
+ "fnName": "devAdminDeleteAutodiscoverNe",
530
+ "method": "delete",
531
+ "path": "/restconf/data/nsp-ne-control:ne-control/{autodiscovery-ne}"
532
+ },
533
+ {
534
+ "fnName": "createIPv4AddressPool",
535
+ "method": "post",
536
+ "path": "/restconf/data/nsp-resource-pool:resource-pools"
537
+ },
538
+ {
539
+ "fnName": "enableResyncPollingPolicy",
540
+ "method": "patch",
541
+ "path": "/restconf/data/nsp-admin-resync:resync-policies/mdm/{resync-policy}/{node}/{version}/{entity}"
542
+ },
543
+ {
544
+ "fnName": "gETL2TopologyLinks",
545
+ "method": "get",
546
+ "path": "/restconf/data/ietf-network:networks/{network}/ietf-network-topology:link"
547
+ },
548
+ {
549
+ "fnName": "gETNetwork",
550
+ "method": "get",
551
+ "path": "/restconf/data/ietf-network:networks/network"
552
+ },
553
+ {
554
+ "fnName": "loadIETFMappingFiles",
555
+ "method": "post",
556
+ "path": "/restconf/operations/nsp-yang-mapping-converter:nsp-yang-mapping-converter/uploadFile"
557
+ },
558
+ {
559
+ "fnName": "createMappingPolicy",
560
+ "method": "post",
561
+ "path": "/restconf/data/nsp-equipment-templates:correlation-policy"
562
+ },
563
+ {
564
+ "fnName": "updateMappingPolicy",
565
+ "method": "put",
566
+ "path": "/restconf/data/nsp-equipment-templates:correlation-policy/{router-ne-mapping}"
567
+ },
568
+ {
569
+ "fnName": "deleteAllPoliciesOnARouter",
570
+ "method": "delete",
571
+ "path": "/restconf/data/nsp-equipment-templates:correlation-policy/{router-ne-mapping}"
572
+ },
573
+ {
574
+ "fnName": "deleteOnePolicyOfRouter",
575
+ "method": "delete",
576
+ "path": "/restconf/data/nsp-equipment-templates:correlation-policy/{router-ne-mapping}/{router-infos}"
577
+ },
578
+ {
579
+ "fnName": "updateTheRetentionTimeForIndicators",
580
+ "method": "patch",
581
+ "path": "/restconf/data/indicators-admin:/ageout-policies/ageout-policy"
582
+ },
583
+ {
584
+ "fnName": "updateTheRetentionTimeForBaseline",
585
+ "method": "patch",
586
+ "path": "/restconf/data/rtanalytics-admin:/ageout-policies"
587
+ },
588
+ {
589
+ "fnName": "deleteIndicatorTemplate",
590
+ "method": "delete",
591
+ "path": "/restconf/data/nsp-indicator:rta-indicator-templates/{template}"
592
+ },
593
+ {
594
+ "fnName": "postavgCPUAllNodesAllActions",
595
+ "method": "post",
596
+ "path": "/restconf/data/nsp-indicator:rta-indicator-rules"
597
+ },
598
+ {
599
+ "fnName": "updateIndicatorRule",
600
+ "method": "put",
601
+ "path": "/restconf/data/nsp-indicator:rta-indicator-rules/{rule}"
602
+ },
603
+ {
604
+ "fnName": "deleteIndicatorRule",
605
+ "method": "delete",
606
+ "path": "/restconf/data/nsp-indicator:rta-indicator-rules/{rule}"
607
+ },
608
+ {
609
+ "fnName": "createSubscription",
610
+ "method": "post",
611
+ "path": "/restconf/data/md-subscription:/subscriptions/subscription"
612
+ },
613
+ {
614
+ "fnName": "createBaseline",
615
+ "method": "post",
616
+ "path": "/restconf/data/nsp-rt-analytics:baselines"
617
+ },
618
+ {
619
+ "fnName": "deleteBaseline",
620
+ "method": "delete",
621
+ "path": "/restconf/data/nsp-rt-analytics:baselines/{baseline}"
622
+ },
623
+ {
624
+ "fnName": "deleteBaselineDetector",
625
+ "method": "delete",
626
+ "path": "/restconf/data/nsp-rt-analytics:baselines/{baseline}/{baseline-detector}"
627
+ },
628
+ {
629
+ "fnName": "deleteSubscription",
630
+ "method": "delete",
631
+ "path": "/restconf/data/md-subscription:/subscriptions/{subscription}"
632
+ },
633
+ {
634
+ "fnName": "updateTemplateLifecycle",
635
+ "method": "patch",
636
+ "path": "/restconf/data/nsp-icm:icm/templates/{template}"
637
+ },
638
+ {
639
+ "fnName": "deleteTemplate",
640
+ "method": "delete",
641
+ "path": "/restconf/data/nsp-icm:icm/templates/{template}"
642
+ },
643
+ {
644
+ "fnName": "deleteSingleDeployment",
645
+ "method": "delete",
646
+ "path": "/restconf/data/nsp-icm:icm/deployments/{deployment}"
647
+ }
648
+ ],
649
+ "errors": [],
650
+ "warnings": [
651
+ "Method get in path /restconf/data/ietf-network:networks/{network}/{node}/ne-management-nm:commissioning-configs/ne-interfaces/logical-interfaces/interfaces-root/openconfig-interfaces:interfaces/{interface}/subinterfaces/{subinterface}/openconfig-if-ip:ipv4/addresses/address has parameter with the name of a javascript keyword. Parameter name changed from interface to interfaceParam to avoid errors."
652
+ ],
653
+ "callsTotal": 108,
654
+ "callsConverted": 108,
655
+ "no_mockdata_num": 32
656
+ }
657
+ }