@itentialopensource/adapter-infoblox_universal_ddi 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 (111) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +923 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +661 -0
  12. package/README.md +344 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +16 -0
  15. package/TAB1.md +10 -0
  16. package/TAB2.md +314 -0
  17. package/TROUBLESHOOT.md +56 -0
  18. package/UTILITIES.md +473 -0
  19. package/adapter.js +13131 -0
  20. package/adapterBase.js +1488 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +50 -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 +53 -0
  29. package/entities/Address/action.json +106 -0
  30. package/entities/Address/schema.json +122 -0
  31. package/entities/AddressBlock/action.json +270 -0
  32. package/entities/AddressBlock/schema.json +163 -0
  33. package/entities/Asm/action.json +66 -0
  34. package/entities/Asm/schema.json +43 -0
  35. package/entities/ConfigProfile/action.json +126 -0
  36. package/entities/ConfigProfile/schema.json +90 -0
  37. package/entities/DhcpHost/action.json +87 -0
  38. package/entities/DhcpHost/schema.json +110 -0
  39. package/entities/DhcpUniversalService/action.json +46 -0
  40. package/entities/DhcpUniversalService/schema.json +20 -0
  41. package/entities/DnsUsage/action.json +46 -0
  42. package/entities/DnsUsage/schema.json +86 -0
  43. package/entities/Filter/action.json +25 -0
  44. package/entities/Filter/schema.json +107 -0
  45. package/entities/FixedAddress/action.json +106 -0
  46. package/entities/FixedAddress/schema.json +111 -0
  47. package/entities/Global/action.json +86 -0
  48. package/entities/Global/schema.json +33 -0
  49. package/entities/HaGroup/action.json +106 -0
  50. package/entities/HaGroup/schema.json +122 -0
  51. package/entities/HardwareFilter/action.json +106 -0
  52. package/entities/HardwareFilter/schema.json +111 -0
  53. package/entities/IpSpace/action.json +167 -0
  54. package/entities/IpSpace/schema.json +136 -0
  55. package/entities/IpamHost/action.json +106 -0
  56. package/entities/IpamHost/schema.json +111 -0
  57. package/entities/LeasesCommand/action.json +24 -0
  58. package/entities/LeasesCommand/schema.json +19 -0
  59. package/entities/MacAddressItem/action.json +146 -0
  60. package/entities/MacAddressItem/schema.json +91 -0
  61. package/entities/OptionCode/action.json +106 -0
  62. package/entities/OptionCode/schema.json +89 -0
  63. package/entities/OptionFilter/action.json +106 -0
  64. package/entities/OptionFilter/schema.json +111 -0
  65. package/entities/OptionGroup/action.json +106 -0
  66. package/entities/OptionGroup/schema.json +111 -0
  67. package/entities/OptionSpace/action.json +106 -0
  68. package/entities/OptionSpace/schema.json +111 -0
  69. package/entities/Range/action.json +147 -0
  70. package/entities/Range/schema.json +113 -0
  71. package/entities/Server/action.json +106 -0
  72. package/entities/Server/schema.json +111 -0
  73. package/entities/Service/action.json +46 -0
  74. package/entities/Service/schema.json +108 -0
  75. package/entities/Subnet/action.json +188 -0
  76. package/entities/Subnet/schema.json +137 -0
  77. package/error.json +190 -0
  78. package/metadata.json +61 -0
  79. package/package.json +75 -0
  80. package/pronghorn.json +8232 -0
  81. package/propertiesDecorators.json +18 -0
  82. package/propertiesSchema.json +1727 -0
  83. package/report/adapterInfo.json +10 -0
  84. package/report/auto-adapter-openapi.json +6163 -0
  85. package/report/creationReport.json +1150 -0
  86. package/report/universal_ddi_v1.json +10288 -0
  87. package/sampleProperties.json +260 -0
  88. package/test/integration/adapterTestBasicGet.js +117 -0
  89. package/test/integration/adapterTestConnectivity.js +117 -0
  90. package/test/integration/adapterTestIntegration.js +3484 -0
  91. package/test/unit/adapterBaseTestUnit.js +1628 -0
  92. package/test/unit/adapterTestUnit.js +4871 -0
  93. package/utils/adapterInfo.js +156 -0
  94. package/utils/argParser.js +44 -0
  95. package/utils/checkMigrate.js +102 -0
  96. package/utils/entitiesToDB.js +190 -0
  97. package/utils/findPath.js +74 -0
  98. package/utils/logger.js +26 -0
  99. package/utils/methodDocumentor.js +273 -0
  100. package/utils/modify.js +153 -0
  101. package/utils/mongoDbConnection.js +79 -0
  102. package/utils/mongoUtils.js +162 -0
  103. package/utils/pre-commit.sh +32 -0
  104. package/utils/removeHooks.js +20 -0
  105. package/utils/setup.js +33 -0
  106. package/utils/taskMover.js +308 -0
  107. package/utils/tbScript.js +103 -0
  108. package/utils/tbUtils.js +347 -0
  109. package/utils/testRunner.js +298 -0
  110. package/utils/troubleshootingAdapter.js +177 -0
  111. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,1150 @@
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": 15
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": 19
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "5.10.16"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 79
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 13132
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 119
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 119
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 345
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": 662
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 57
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": 212
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 208
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": 14
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 4868
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 303
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 3485
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 128
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for ConfigProfile entity",
117
+ "value": 6
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for Filter entity",
122
+ "value": 1
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for FixedAddress entity",
127
+ "value": 5
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for Global entity",
132
+ "value": 4
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for HaGroup entity",
137
+ "value": 5
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for HardwareFilter entity",
142
+ "value": 5
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for DhcpHost entity",
147
+ "value": 4
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for LeasesCommand entity",
152
+ "value": 1
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for MacAddressItem entity",
157
+ "value": 7
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for OptionCode entity",
162
+ "value": 5
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for OptionFilter entity",
167
+ "value": 5
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for OptionGroup entity",
172
+ "value": 5
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for OptionSpace entity",
177
+ "value": 5
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for Server entity",
182
+ "value": 5
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for Service entity",
187
+ "value": 2
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for DhcpUniversalService entity",
192
+ "value": 2
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for Address entity",
197
+ "value": 5
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for AddressBlock entity",
202
+ "value": 13
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for Asm entity",
207
+ "value": 3
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for DnsUsage entity",
212
+ "value": 2
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for IpamHost entity",
217
+ "value": 5
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for IpSpace entity",
222
+ "value": 8
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for Range entity",
227
+ "value": 7
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Number of actions for Subnet entity",
232
+ "value": 9
233
+ },
234
+ {
235
+ "owner": "actionJson",
236
+ "description": "Total number of actions",
237
+ "value": 119
238
+ },
239
+ {
240
+ "owner": "actionJson",
241
+ "description": "Total number of entities",
242
+ "value": 24
243
+ },
244
+ {
245
+ "owner": "schemaJson",
246
+ "description": "Number of schemas for ConfigProfile entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "schemaJson",
251
+ "description": "Number of schemas for Filter entity",
252
+ "value": 1
253
+ },
254
+ {
255
+ "owner": "schemaJson",
256
+ "description": "Number of schemas for FixedAddress entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "schemaJson",
261
+ "description": "Number of schemas for Global entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "schemaJson",
266
+ "description": "Number of schemas for HaGroup entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "schemaJson",
271
+ "description": "Number of schemas for HardwareFilter entity",
272
+ "value": 1
273
+ },
274
+ {
275
+ "owner": "schemaJson",
276
+ "description": "Number of schemas for DhcpHost entity",
277
+ "value": 1
278
+ },
279
+ {
280
+ "owner": "schemaJson",
281
+ "description": "Number of schemas for LeasesCommand entity",
282
+ "value": 1
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for MacAddressItem entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for OptionCode entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for OptionFilter entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for OptionGroup entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for OptionSpace entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for Server entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for Service entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for DhcpUniversalService entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Number of schemas for Address entity",
327
+ "value": 1
328
+ },
329
+ {
330
+ "owner": "schemaJson",
331
+ "description": "Number of schemas for AddressBlock entity",
332
+ "value": 1
333
+ },
334
+ {
335
+ "owner": "schemaJson",
336
+ "description": "Number of schemas for Asm entity",
337
+ "value": 1
338
+ },
339
+ {
340
+ "owner": "schemaJson",
341
+ "description": "Number of schemas for DnsUsage entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "schemaJson",
346
+ "description": "Number of schemas for IpamHost entity",
347
+ "value": 1
348
+ },
349
+ {
350
+ "owner": "schemaJson",
351
+ "description": "Number of schemas for IpSpace entity",
352
+ "value": 1
353
+ },
354
+ {
355
+ "owner": "schemaJson",
356
+ "description": "Number of schemas for Range entity",
357
+ "value": 1
358
+ },
359
+ {
360
+ "owner": "schemaJson",
361
+ "description": "Number of schemas for Subnet entity",
362
+ "value": 1
363
+ },
364
+ {
365
+ "owner": "schemaJson",
366
+ "description": "Total number of schemas",
367
+ "value": 24
368
+ },
369
+ {
370
+ "owner": "mockdata",
371
+ "description": "Number of mock data files for ConfigProfile entity",
372
+ "value": 0
373
+ },
374
+ {
375
+ "owner": "mockdata",
376
+ "description": "Number of mock data files for Filter entity",
377
+ "value": 0
378
+ },
379
+ {
380
+ "owner": "mockdata",
381
+ "description": "Number of mock data files for FixedAddress entity",
382
+ "value": 0
383
+ },
384
+ {
385
+ "owner": "mockdata",
386
+ "description": "Number of mock data files for Global entity",
387
+ "value": 0
388
+ },
389
+ {
390
+ "owner": "mockdata",
391
+ "description": "Number of mock data files for HaGroup entity",
392
+ "value": 0
393
+ },
394
+ {
395
+ "owner": "mockdata",
396
+ "description": "Number of mock data files for HardwareFilter entity",
397
+ "value": 0
398
+ },
399
+ {
400
+ "owner": "mockdata",
401
+ "description": "Number of mock data files for DhcpHost entity",
402
+ "value": 0
403
+ },
404
+ {
405
+ "owner": "mockdata",
406
+ "description": "Number of mock data files for LeasesCommand entity",
407
+ "value": 0
408
+ },
409
+ {
410
+ "owner": "mockdata",
411
+ "description": "Number of mock data files for MacAddressItem entity",
412
+ "value": 0
413
+ },
414
+ {
415
+ "owner": "mockdata",
416
+ "description": "Number of mock data files for OptionCode entity",
417
+ "value": 0
418
+ },
419
+ {
420
+ "owner": "mockdata",
421
+ "description": "Number of mock data files for OptionFilter entity",
422
+ "value": 0
423
+ },
424
+ {
425
+ "owner": "mockdata",
426
+ "description": "Number of mock data files for OptionGroup entity",
427
+ "value": 0
428
+ },
429
+ {
430
+ "owner": "mockdata",
431
+ "description": "Number of mock data files for OptionSpace entity",
432
+ "value": 0
433
+ },
434
+ {
435
+ "owner": "mockdata",
436
+ "description": "Number of mock data files for Server entity",
437
+ "value": 0
438
+ },
439
+ {
440
+ "owner": "mockdata",
441
+ "description": "Number of mock data files for Service entity",
442
+ "value": 0
443
+ },
444
+ {
445
+ "owner": "mockdata",
446
+ "description": "Number of mock data files for DhcpUniversalService entity",
447
+ "value": 0
448
+ },
449
+ {
450
+ "owner": "mockdata",
451
+ "description": "Number of mock data files for Address entity",
452
+ "value": 0
453
+ },
454
+ {
455
+ "owner": "mockdata",
456
+ "description": "Number of mock data files for AddressBlock entity",
457
+ "value": 0
458
+ },
459
+ {
460
+ "owner": "mockdata",
461
+ "description": "Number of mock data files for Asm entity",
462
+ "value": 0
463
+ },
464
+ {
465
+ "owner": "mockdata",
466
+ "description": "Number of mock data files for DnsUsage entity",
467
+ "value": 0
468
+ },
469
+ {
470
+ "owner": "mockdata",
471
+ "description": "Number of mock data files for IpamHost entity",
472
+ "value": 0
473
+ },
474
+ {
475
+ "owner": "mockdata",
476
+ "description": "Number of mock data files for IpSpace entity",
477
+ "value": 0
478
+ },
479
+ {
480
+ "owner": "mockdata",
481
+ "description": "Number of mock data files for Range entity",
482
+ "value": 0
483
+ },
484
+ {
485
+ "owner": "mockdata",
486
+ "description": "Number of mock data files for Subnet entity",
487
+ "value": 0
488
+ },
489
+ {
490
+ "owner": "mockdata",
491
+ "description": "Total number of mock data files",
492
+ "value": 0
493
+ },
494
+ {
495
+ "owner": "actionJson",
496
+ "description": "Number of actions for .system entity",
497
+ "value": 2
498
+ },
499
+ {
500
+ "owner": "schemaJson",
501
+ "description": "Number of schemas for .system entity",
502
+ "value": 3
503
+ },
504
+ {
505
+ "owner": "mockdata",
506
+ "description": "Number of mock data files for .system entity",
507
+ "value": 2
508
+ },
509
+ {
510
+ "owner": "System",
511
+ "description": "System entity files",
512
+ "value": 6
513
+ },
514
+ {
515
+ "owner": "usecases",
516
+ "description": "Number of workflows",
517
+ "value": 0
518
+ },
519
+ {
520
+ "owner": "staticFile",
521
+ "description": "Number of lines of code in adapterBase.js",
522
+ "value": 1489
523
+ },
524
+ {
525
+ "owner": "staticFile",
526
+ "description": "Number of static files added",
527
+ "value": 50
528
+ },
529
+ {
530
+ "owner": "Overall",
531
+ "description": "Total lines of Code",
532
+ "value": 22974
533
+ },
534
+ {
535
+ "owner": "Overall",
536
+ "description": "Total Tests",
537
+ "value": 431
538
+ },
539
+ {
540
+ "owner": "Overall",
541
+ "description": "Total Files",
542
+ "value": 113
543
+ }
544
+ ],
545
+ "warnings": [],
546
+ "apiParsingReport": {
547
+ "no_mockdata": [
548
+ {
549
+ "fnName": "configProfileDisassociateObjectFromConfigProfiles",
550
+ "method": "post",
551
+ "path": "/dhcp/config_profile/delink_object"
552
+ },
553
+ {
554
+ "fnName": "configProfileDisassociateConfigProfileFromObjects",
555
+ "method": "post",
556
+ "path": "/dhcp/config_profile/delink_profile"
557
+ },
558
+ {
559
+ "fnName": "configProfileAssociateObjectToConfigProfiles",
560
+ "method": "post",
561
+ "path": "/dhcp/config_profile/link_object"
562
+ },
563
+ {
564
+ "fnName": "configProfileAssociateConfigProfileToObjects",
565
+ "method": "post",
566
+ "path": "/dhcp/config_profile/link_profile"
567
+ },
568
+ {
569
+ "fnName": "configProfileListConfigProfiles",
570
+ "method": "get",
571
+ "path": "/dhcp/config_profile/profiles"
572
+ },
573
+ {
574
+ "fnName": "configProfileListSubnets",
575
+ "method": "get",
576
+ "path": "/dhcp/config_profile/subnets"
577
+ },
578
+ {
579
+ "fnName": "filterList",
580
+ "method": "get",
581
+ "path": "/dhcp/filter"
582
+ },
583
+ {
584
+ "fnName": "fixedAddressList",
585
+ "method": "get",
586
+ "path": "/dhcp/fixed_address"
587
+ },
588
+ {
589
+ "fnName": "fixedAddressCreate",
590
+ "method": "post",
591
+ "path": "/dhcp/fixed_address"
592
+ },
593
+ {
594
+ "fnName": "fixedAddressRead",
595
+ "method": "get",
596
+ "path": "/dhcp/fixed_address/{id}"
597
+ },
598
+ {
599
+ "fnName": "fixedAddressDelete",
600
+ "method": "delete",
601
+ "path": "/dhcp/fixed_address/{id}"
602
+ },
603
+ {
604
+ "fnName": "fixedAddressUpdate",
605
+ "method": "patch",
606
+ "path": "/dhcp/fixed_address/{id}"
607
+ },
608
+ {
609
+ "fnName": "globalRead",
610
+ "method": "get",
611
+ "path": "/dhcp/global"
612
+ },
613
+ {
614
+ "fnName": "globalUpdate",
615
+ "method": "patch",
616
+ "path": "/dhcp/global"
617
+ },
618
+ {
619
+ "fnName": "globalRead2",
620
+ "method": "get",
621
+ "path": "/dhcp/global/{id}"
622
+ },
623
+ {
624
+ "fnName": "globalUpdate2",
625
+ "method": "patch",
626
+ "path": "/dhcp/global/{id}"
627
+ },
628
+ {
629
+ "fnName": "haGroupList",
630
+ "method": "get",
631
+ "path": "/dhcp/ha_group"
632
+ },
633
+ {
634
+ "fnName": "haGroupCreate",
635
+ "method": "post",
636
+ "path": "/dhcp/ha_group"
637
+ },
638
+ {
639
+ "fnName": "haGroupRead",
640
+ "method": "get",
641
+ "path": "/dhcp/ha_group/{id}"
642
+ },
643
+ {
644
+ "fnName": "haGroupDelete",
645
+ "method": "delete",
646
+ "path": "/dhcp/ha_group/{id}"
647
+ },
648
+ {
649
+ "fnName": "haGroupUpdate",
650
+ "method": "patch",
651
+ "path": "/dhcp/ha_group/{id}"
652
+ },
653
+ {
654
+ "fnName": "hardwareFilterList",
655
+ "method": "get",
656
+ "path": "/dhcp/hardware_filter"
657
+ },
658
+ {
659
+ "fnName": "hardwareFilterCreate",
660
+ "method": "post",
661
+ "path": "/dhcp/hardware_filter"
662
+ },
663
+ {
664
+ "fnName": "hardwareFilterRead",
665
+ "method": "get",
666
+ "path": "/dhcp/hardware_filter/{id}"
667
+ },
668
+ {
669
+ "fnName": "hardwareFilterDelete",
670
+ "method": "delete",
671
+ "path": "/dhcp/hardware_filter/{id}"
672
+ },
673
+ {
674
+ "fnName": "hardwareFilterUpdate",
675
+ "method": "patch",
676
+ "path": "/dhcp/hardware_filter/{id}"
677
+ },
678
+ {
679
+ "fnName": "getDhcpHost",
680
+ "method": "get",
681
+ "path": "/dhcp/host"
682
+ },
683
+ {
684
+ "fnName": "getDhcpHostId",
685
+ "method": "get",
686
+ "path": "/dhcp/host/{id}"
687
+ },
688
+ {
689
+ "fnName": "patchDhcpHostId",
690
+ "method": "patch",
691
+ "path": "/dhcp/host/{id}"
692
+ },
693
+ {
694
+ "fnName": "getDhcpHostIdAssociations",
695
+ "method": "get",
696
+ "path": "/dhcp/host/{id}/associations"
697
+ },
698
+ {
699
+ "fnName": "leasesCommandCreate",
700
+ "method": "post",
701
+ "path": "/dhcp/leases_command"
702
+ },
703
+ {
704
+ "fnName": "macAddressItemList",
705
+ "method": "get",
706
+ "path": "/dhcp/mac_address_item"
707
+ },
708
+ {
709
+ "fnName": "macAddressItemCreate",
710
+ "method": "post",
711
+ "path": "/dhcp/mac_address_item"
712
+ },
713
+ {
714
+ "fnName": "macAddressItemBulkCreate",
715
+ "method": "post",
716
+ "path": "/dhcp/mac_address_item/bulk_create"
717
+ },
718
+ {
719
+ "fnName": "macAddressItemUpload",
720
+ "method": "post",
721
+ "path": "/dhcp/mac_address_item/upload"
722
+ },
723
+ {
724
+ "fnName": "macAddressItemRead",
725
+ "method": "get",
726
+ "path": "/dhcp/mac_address_item/{id}"
727
+ },
728
+ {
729
+ "fnName": "macAddressItemDelete",
730
+ "method": "delete",
731
+ "path": "/dhcp/mac_address_item/{id}"
732
+ },
733
+ {
734
+ "fnName": "macAddressItemUpdate",
735
+ "method": "patch",
736
+ "path": "/dhcp/mac_address_item/{id}"
737
+ },
738
+ {
739
+ "fnName": "optionCodeList",
740
+ "method": "get",
741
+ "path": "/dhcp/option_code"
742
+ },
743
+ {
744
+ "fnName": "optionCodeCreate",
745
+ "method": "post",
746
+ "path": "/dhcp/option_code"
747
+ },
748
+ {
749
+ "fnName": "optionCodeRead",
750
+ "method": "get",
751
+ "path": "/dhcp/option_code/{id}"
752
+ },
753
+ {
754
+ "fnName": "optionCodeDelete",
755
+ "method": "delete",
756
+ "path": "/dhcp/option_code/{id}"
757
+ },
758
+ {
759
+ "fnName": "optionCodeUpdate",
760
+ "method": "patch",
761
+ "path": "/dhcp/option_code/{id}"
762
+ },
763
+ {
764
+ "fnName": "optionFilterList",
765
+ "method": "get",
766
+ "path": "/dhcp/option_filter"
767
+ },
768
+ {
769
+ "fnName": "optionFilterCreate",
770
+ "method": "post",
771
+ "path": "/dhcp/option_filter"
772
+ },
773
+ {
774
+ "fnName": "optionFilterRead",
775
+ "method": "get",
776
+ "path": "/dhcp/option_filter/{id}"
777
+ },
778
+ {
779
+ "fnName": "optionFilterDelete",
780
+ "method": "delete",
781
+ "path": "/dhcp/option_filter/{id}"
782
+ },
783
+ {
784
+ "fnName": "optionFilterUpdate",
785
+ "method": "patch",
786
+ "path": "/dhcp/option_filter/{id}"
787
+ },
788
+ {
789
+ "fnName": "optionGroupList",
790
+ "method": "get",
791
+ "path": "/dhcp/option_group"
792
+ },
793
+ {
794
+ "fnName": "optionGroupCreate",
795
+ "method": "post",
796
+ "path": "/dhcp/option_group"
797
+ },
798
+ {
799
+ "fnName": "optionGroupRead",
800
+ "method": "get",
801
+ "path": "/dhcp/option_group/{id}"
802
+ },
803
+ {
804
+ "fnName": "optionGroupDelete",
805
+ "method": "delete",
806
+ "path": "/dhcp/option_group/{id}"
807
+ },
808
+ {
809
+ "fnName": "optionGroupUpdate",
810
+ "method": "patch",
811
+ "path": "/dhcp/option_group/{id}"
812
+ },
813
+ {
814
+ "fnName": "optionSpaceList",
815
+ "method": "get",
816
+ "path": "/dhcp/option_space"
817
+ },
818
+ {
819
+ "fnName": "optionSpaceCreate",
820
+ "method": "post",
821
+ "path": "/dhcp/option_space"
822
+ },
823
+ {
824
+ "fnName": "optionSpaceRead",
825
+ "method": "get",
826
+ "path": "/dhcp/option_space/{id}"
827
+ },
828
+ {
829
+ "fnName": "optionSpaceDelete",
830
+ "method": "delete",
831
+ "path": "/dhcp/option_space/{id}"
832
+ },
833
+ {
834
+ "fnName": "optionSpaceUpdate",
835
+ "method": "patch",
836
+ "path": "/dhcp/option_space/{id}"
837
+ },
838
+ {
839
+ "fnName": "serverList",
840
+ "method": "get",
841
+ "path": "/dhcp/server"
842
+ },
843
+ {
844
+ "fnName": "serverCreate",
845
+ "method": "post",
846
+ "path": "/dhcp/server"
847
+ },
848
+ {
849
+ "fnName": "serverRead",
850
+ "method": "get",
851
+ "path": "/dhcp/server/{id}"
852
+ },
853
+ {
854
+ "fnName": "serverDelete",
855
+ "method": "delete",
856
+ "path": "/dhcp/server/{id}"
857
+ },
858
+ {
859
+ "fnName": "serverUpdate",
860
+ "method": "patch",
861
+ "path": "/dhcp/server/{id}"
862
+ },
863
+ {
864
+ "fnName": "serviceList",
865
+ "method": "get",
866
+ "path": "/dhcp/service"
867
+ },
868
+ {
869
+ "fnName": "serviceRead",
870
+ "method": "get",
871
+ "path": "/dhcp/service/{id}"
872
+ },
873
+ {
874
+ "fnName": "getDhcpUniversalServiceIdAssociations",
875
+ "method": "get",
876
+ "path": "/dhcp/universal_service/{id}/associations"
877
+ },
878
+ {
879
+ "fnName": "getDhcpUniversalServiceIdAssociationsCount",
880
+ "method": "get",
881
+ "path": "/dhcp/universal_service/{id}/associations/count"
882
+ },
883
+ {
884
+ "fnName": "addressList",
885
+ "method": "get",
886
+ "path": "/ipam/address"
887
+ },
888
+ {
889
+ "fnName": "addressCreate",
890
+ "method": "post",
891
+ "path": "/ipam/address"
892
+ },
893
+ {
894
+ "fnName": "addressRead",
895
+ "method": "get",
896
+ "path": "/ipam/address/{id}"
897
+ },
898
+ {
899
+ "fnName": "addressDelete",
900
+ "method": "delete",
901
+ "path": "/ipam/address/{id}"
902
+ },
903
+ {
904
+ "fnName": "addressUpdate",
905
+ "method": "patch",
906
+ "path": "/ipam/address/{id}"
907
+ },
908
+ {
909
+ "fnName": "addressBlockList",
910
+ "method": "get",
911
+ "path": "/ipam/address_block"
912
+ },
913
+ {
914
+ "fnName": "addressBlockCreate",
915
+ "method": "post",
916
+ "path": "/ipam/address_block"
917
+ },
918
+ {
919
+ "fnName": "addressBlockRead",
920
+ "method": "get",
921
+ "path": "/ipam/address_block/{id}"
922
+ },
923
+ {
924
+ "fnName": "addressBlockDelete",
925
+ "method": "delete",
926
+ "path": "/ipam/address_block/{id}"
927
+ },
928
+ {
929
+ "fnName": "addressBlockUpdate",
930
+ "method": "patch",
931
+ "path": "/ipam/address_block/{id}"
932
+ },
933
+ {
934
+ "fnName": "addressBlockListAncestor",
935
+ "method": "get",
936
+ "path": "/ipam/address_block/{id}/ancestor"
937
+ },
938
+ {
939
+ "fnName": "addressBlockCopy",
940
+ "method": "post",
941
+ "path": "/ipam/address_block/{id}/copy"
942
+ },
943
+ {
944
+ "fnName": "addressBlockListNextAvailableAB",
945
+ "method": "get",
946
+ "path": "/ipam/address_block/{id}/nextavailableaddressblock"
947
+ },
948
+ {
949
+ "fnName": "addressBlockCreateNextAvailableAB",
950
+ "method": "post",
951
+ "path": "/ipam/address_block/{id}/nextavailableaddressblock"
952
+ },
953
+ {
954
+ "fnName": "addressBlockListNextAvailableIP",
955
+ "method": "get",
956
+ "path": "/ipam/address_block/{id}/nextavailableip"
957
+ },
958
+ {
959
+ "fnName": "addressBlockCreateNextAvailableIP",
960
+ "method": "post",
961
+ "path": "/ipam/address_block/{id}/nextavailableip"
962
+ },
963
+ {
964
+ "fnName": "addressBlockListNextAvailableSubnet",
965
+ "method": "get",
966
+ "path": "/ipam/address_block/{id}/nextavailablesubnet"
967
+ },
968
+ {
969
+ "fnName": "addressBlockCreateNextAvailableSubnet",
970
+ "method": "post",
971
+ "path": "/ipam/address_block/{id}/nextavailablesubnet"
972
+ },
973
+ {
974
+ "fnName": "asmList",
975
+ "method": "get",
976
+ "path": "/ipam/asm"
977
+ },
978
+ {
979
+ "fnName": "asmCreate",
980
+ "method": "post",
981
+ "path": "/ipam/asm"
982
+ },
983
+ {
984
+ "fnName": "asmRead",
985
+ "method": "get",
986
+ "path": "/ipam/asm/{id}"
987
+ },
988
+ {
989
+ "fnName": "dnsUsageList",
990
+ "method": "get",
991
+ "path": "/ipam/dns_usage"
992
+ },
993
+ {
994
+ "fnName": "dnsUsageRead",
995
+ "method": "get",
996
+ "path": "/ipam/dns_usage/{id}"
997
+ },
998
+ {
999
+ "fnName": "getIpamHost",
1000
+ "method": "get",
1001
+ "path": "/ipam/host"
1002
+ },
1003
+ {
1004
+ "fnName": "postIpamHost",
1005
+ "method": "post",
1006
+ "path": "/ipam/host"
1007
+ },
1008
+ {
1009
+ "fnName": "getIpamHostId",
1010
+ "method": "get",
1011
+ "path": "/ipam/host/{id}"
1012
+ },
1013
+ {
1014
+ "fnName": "deleteIpamHostId",
1015
+ "method": "delete",
1016
+ "path": "/ipam/host/{id}"
1017
+ },
1018
+ {
1019
+ "fnName": "patchIpamHostId",
1020
+ "method": "patch",
1021
+ "path": "/ipam/host/{id}"
1022
+ },
1023
+ {
1024
+ "fnName": "ipSpaceList",
1025
+ "method": "get",
1026
+ "path": "/ipam/ip_space"
1027
+ },
1028
+ {
1029
+ "fnName": "ipSpaceCreate",
1030
+ "method": "post",
1031
+ "path": "/ipam/ip_space"
1032
+ },
1033
+ {
1034
+ "fnName": "ipSpaceBulkCopy",
1035
+ "method": "post",
1036
+ "path": "/ipam/ip_space/bulk_copy"
1037
+ },
1038
+ {
1039
+ "fnName": "ipSpaceRead",
1040
+ "method": "get",
1041
+ "path": "/ipam/ip_space/{id}"
1042
+ },
1043
+ {
1044
+ "fnName": "ipSpaceDelete",
1045
+ "method": "delete",
1046
+ "path": "/ipam/ip_space/{id}"
1047
+ },
1048
+ {
1049
+ "fnName": "ipSpaceUpdate",
1050
+ "method": "patch",
1051
+ "path": "/ipam/ip_space/{id}"
1052
+ },
1053
+ {
1054
+ "fnName": "ipSpaceGetConflicts",
1055
+ "method": "get",
1056
+ "path": "/ipam/ip_space/{id}/conflicts"
1057
+ },
1058
+ {
1059
+ "fnName": "ipSpaceCopy",
1060
+ "method": "post",
1061
+ "path": "/ipam/ip_space/{id}/copy"
1062
+ },
1063
+ {
1064
+ "fnName": "rangeList",
1065
+ "method": "get",
1066
+ "path": "/ipam/range"
1067
+ },
1068
+ {
1069
+ "fnName": "rangeCreate",
1070
+ "method": "post",
1071
+ "path": "/ipam/range"
1072
+ },
1073
+ {
1074
+ "fnName": "rangeRead",
1075
+ "method": "get",
1076
+ "path": "/ipam/range/{id}"
1077
+ },
1078
+ {
1079
+ "fnName": "rangeDelete",
1080
+ "method": "delete",
1081
+ "path": "/ipam/range/{id}"
1082
+ },
1083
+ {
1084
+ "fnName": "rangeUpdate",
1085
+ "method": "patch",
1086
+ "path": "/ipam/range/{id}"
1087
+ },
1088
+ {
1089
+ "fnName": "rangeListNextAvailableIP",
1090
+ "method": "get",
1091
+ "path": "/ipam/range/{id}/nextavailableip"
1092
+ },
1093
+ {
1094
+ "fnName": "rangeCreateNextAvailableIP",
1095
+ "method": "post",
1096
+ "path": "/ipam/range/{id}/nextavailableip"
1097
+ },
1098
+ {
1099
+ "fnName": "subnetList",
1100
+ "method": "get",
1101
+ "path": "/ipam/subnet"
1102
+ },
1103
+ {
1104
+ "fnName": "subnetCreate",
1105
+ "method": "post",
1106
+ "path": "/ipam/subnet"
1107
+ },
1108
+ {
1109
+ "fnName": "subnetRead",
1110
+ "method": "get",
1111
+ "path": "/ipam/subnet/{id}"
1112
+ },
1113
+ {
1114
+ "fnName": "subnetDelete",
1115
+ "method": "delete",
1116
+ "path": "/ipam/subnet/{id}"
1117
+ },
1118
+ {
1119
+ "fnName": "subnetUpdate",
1120
+ "method": "patch",
1121
+ "path": "/ipam/subnet/{id}"
1122
+ },
1123
+ {
1124
+ "fnName": "subnetListAncestor",
1125
+ "method": "get",
1126
+ "path": "/ipam/subnet/{id}/ancestor"
1127
+ },
1128
+ {
1129
+ "fnName": "subnetCopy",
1130
+ "method": "post",
1131
+ "path": "/ipam/subnet/{id}/copy"
1132
+ },
1133
+ {
1134
+ "fnName": "subnetListNextAvailableIP",
1135
+ "method": "get",
1136
+ "path": "/ipam/subnet/{id}/nextavailableip"
1137
+ },
1138
+ {
1139
+ "fnName": "subnetCreateNextAvailableIP",
1140
+ "method": "post",
1141
+ "path": "/ipam/subnet/{id}/nextavailableip"
1142
+ }
1143
+ ],
1144
+ "errors": [],
1145
+ "warnings": [],
1146
+ "callsTotal": 119,
1147
+ "callsConverted": 119,
1148
+ "no_mockdata_num": 119
1149
+ }
1150
+ }