@itentialopensource/adapter-bluecat_ipam 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 (108) 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 +3069 -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 +681 -0
  13. package/README.md +344 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +25 -0
  16. package/TAB1.md +15 -0
  17. package/TAB2.md +318 -0
  18. package/TROUBLESHOOT.md +56 -0
  19. package/UTILITIES.md +473 -0
  20. package/adapter.js +47832 -0
  21. package/adapterBase.js +1526 -0
  22. package/entities/.generic/action.json +214 -0
  23. package/entities/.generic/schema.json +28 -0
  24. package/entities/.system/action.json +50 -0
  25. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  26. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  27. package/entities/.system/schema.json +19 -0
  28. package/entities/.system/schemaTokenReq.json +53 -0
  29. package/entities/.system/schemaTokenResp.json +53 -0
  30. package/entities/ACLResources/action.json +127 -0
  31. package/entities/ACLResources/schema.json +24 -0
  32. package/entities/AdminResources/action.json +1954 -0
  33. package/entities/AdminResources/schema.json +113 -0
  34. package/entities/ConfigurationResources/action.json +106 -0
  35. package/entities/ConfigurationResources/schema.json +23 -0
  36. package/entities/DHCPClientClassResources/action.json +250 -0
  37. package/entities/DHCPClientClassResources/schema.json +30 -0
  38. package/entities/DHCPZoneResources/action.json +250 -0
  39. package/entities/DHCPZoneResources/schema.json +30 -0
  40. package/entities/DNSSECResources/action.json +147 -0
  41. package/entities/DNSSECResources/schema.json +25 -0
  42. package/entities/DeploymentOptionResources/action.json +250 -0
  43. package/entities/DeploymentOptionResources/schema.json +30 -0
  44. package/entities/DeploymentRoleResources/action.json +169 -0
  45. package/entities/DeploymentRoleResources/schema.json +26 -0
  46. package/entities/DeviceResources/action.json +352 -0
  47. package/entities/DeviceResources/schema.json +35 -0
  48. package/entities/FavoriteResources/action.json +65 -0
  49. package/entities/FavoriteResources/schema.json +21 -0
  50. package/entities/IPv4AndIPv6Resources/action.json +1964 -0
  51. package/entities/IPv4AndIPv6Resources/schema.json +113 -0
  52. package/entities/KerberosResources/action.json +393 -0
  53. package/entities/KerberosResources/schema.json +37 -0
  54. package/entities/LocationResources/action.json +209 -0
  55. package/entities/LocationResources/schema.json +28 -0
  56. package/entities/MACAddressAndClientIdentifierResources/action.json +395 -0
  57. package/entities/MACAddressAndClientIdentifierResources/schema.json +37 -0
  58. package/entities/NamingPolicyResources/action.json +476 -0
  59. package/entities/NamingPolicyResources/schema.json +41 -0
  60. package/entities/ResourceRecordResources/action.json +377 -0
  61. package/entities/ResourceRecordResources/schema.json +36 -0
  62. package/entities/ServerResources/action.json +784 -0
  63. package/entities/ServerResources/schema.json +56 -0
  64. package/entities/TFTPResources/action.json +250 -0
  65. package/entities/TFTPResources/schema.json +30 -0
  66. package/entities/TagResources/action.json +495 -0
  67. package/entities/TagResources/schema.json +42 -0
  68. package/entities/TaskResources/action.json +106 -0
  69. package/entities/TaskResources/schema.json +23 -0
  70. package/entities/VendorProfileResources/action.json +106 -0
  71. package/entities/VendorProfileResources/schema.json +23 -0
  72. package/entities/ViewAndZoneResources/action.json +660 -0
  73. package/entities/ViewAndZoneResources/schema.json +50 -0
  74. package/error.json +190 -0
  75. package/metadata.json +84 -0
  76. package/package.json +75 -0
  77. package/pronghorn.json +34480 -0
  78. package/propertiesDecorators.json +18 -0
  79. package/propertiesSchema.json +1777 -0
  80. package/report/Bluecat IPAM 9.5 v2 API.yml-OpenApi3Json.json +114720 -0
  81. package/report/adapterInfo.json +10 -0
  82. package/report/auto-adapter-openapi.json +28663 -0
  83. package/report/creationReport.json +2910 -0
  84. package/sampleProperties.json +264 -0
  85. package/test/integration/adapterTestBasicGet.js +117 -0
  86. package/test/integration/adapterTestConnectivity.js +117 -0
  87. package/test/integration/adapterTestIntegration.js +12568 -0
  88. package/test/unit/adapterBaseTestUnit.js +1628 -0
  89. package/test/unit/adapterTestUnit.js +16058 -0
  90. package/utils/adapterInfo.js +156 -0
  91. package/utils/argParser.js +44 -0
  92. package/utils/checkMigrate.js +102 -0
  93. package/utils/entitiesToDB.js +190 -0
  94. package/utils/findPath.js +74 -0
  95. package/utils/logger.js +26 -0
  96. package/utils/methodDocumentor.js +298 -0
  97. package/utils/modify.js +153 -0
  98. package/utils/mongoDbConnection.js +79 -0
  99. package/utils/mongoUtils.js +162 -0
  100. package/utils/pre-commit.sh +32 -0
  101. package/utils/removeHooks.js +20 -0
  102. package/utils/setup.js +33 -0
  103. package/utils/taskMover.js +308 -0
  104. package/utils/tbScript.js +103 -0
  105. package/utils/tbUtils.js +347 -0
  106. package/utils/testRunner.js +298 -0
  107. package/utils/troubleshootingAdapter.js +177 -0
  108. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,2910 @@
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": 17
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "6.1.12"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 84
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 47833
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 477
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 477
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": 682
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": 43
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": 16055
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 1066
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 12569
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 486
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for ACLResources entity",
117
+ "value": 6
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for AdminResources entity",
122
+ "value": 95
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for ConfigurationResources entity",
127
+ "value": 5
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for DeploymentOptionResources entity",
132
+ "value": 12
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for VendorProfileResources entity",
137
+ "value": 5
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for DeploymentRoleResources entity",
142
+ "value": 8
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for DeviceResources entity",
147
+ "value": 17
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for DHCPClientClassResources entity",
152
+ "value": 12
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for DHCPZoneResources entity",
157
+ "value": 12
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for DNSSECResources entity",
162
+ "value": 7
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for FavoriteResources entity",
167
+ "value": 3
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for IPv4AndIPv6Resources entity",
172
+ "value": 95
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for ViewAndZoneResources entity",
177
+ "value": 32
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for ServerResources entity",
182
+ "value": 38
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for KerberosResources entity",
187
+ "value": 19
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for LocationResources entity",
192
+ "value": 10
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for MACAddressAndClientIdentifierResources entity",
197
+ "value": 19
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for NamingPolicyResources entity",
202
+ "value": 23
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for ResourceRecordResources entity",
207
+ "value": 18
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for TagResources entity",
212
+ "value": 24
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for TaskResources entity",
217
+ "value": 5
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for TFTPResources entity",
222
+ "value": 12
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Total number of actions",
227
+ "value": 477
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Total number of entities",
232
+ "value": 22
233
+ },
234
+ {
235
+ "owner": "schemaJson",
236
+ "description": "Number of schemas for ACLResources entity",
237
+ "value": 1
238
+ },
239
+ {
240
+ "owner": "schemaJson",
241
+ "description": "Number of schemas for AdminResources entity",
242
+ "value": 1
243
+ },
244
+ {
245
+ "owner": "schemaJson",
246
+ "description": "Number of schemas for ConfigurationResources entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "schemaJson",
251
+ "description": "Number of schemas for DeploymentOptionResources entity",
252
+ "value": 1
253
+ },
254
+ {
255
+ "owner": "schemaJson",
256
+ "description": "Number of schemas for VendorProfileResources entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "schemaJson",
261
+ "description": "Number of schemas for DeploymentRoleResources entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "schemaJson",
266
+ "description": "Number of schemas for DeviceResources entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "schemaJson",
271
+ "description": "Number of schemas for DHCPClientClassResources entity",
272
+ "value": 1
273
+ },
274
+ {
275
+ "owner": "schemaJson",
276
+ "description": "Number of schemas for DHCPZoneResources entity",
277
+ "value": 1
278
+ },
279
+ {
280
+ "owner": "schemaJson",
281
+ "description": "Number of schemas for DNSSECResources entity",
282
+ "value": 1
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for FavoriteResources entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for IPv4AndIPv6Resources entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for ViewAndZoneResources entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for ServerResources entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for KerberosResources entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for LocationResources entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for MACAddressAndClientIdentifierResources entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for NamingPolicyResources entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Number of schemas for ResourceRecordResources entity",
327
+ "value": 1
328
+ },
329
+ {
330
+ "owner": "schemaJson",
331
+ "description": "Number of schemas for TagResources entity",
332
+ "value": 1
333
+ },
334
+ {
335
+ "owner": "schemaJson",
336
+ "description": "Number of schemas for TaskResources entity",
337
+ "value": 1
338
+ },
339
+ {
340
+ "owner": "schemaJson",
341
+ "description": "Number of schemas for TFTPResources entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "schemaJson",
346
+ "description": "Total number of schemas",
347
+ "value": 22
348
+ },
349
+ {
350
+ "owner": "mockdata",
351
+ "description": "Number of mock data files for ACLResources entity",
352
+ "value": 0
353
+ },
354
+ {
355
+ "owner": "mockdata",
356
+ "description": "Number of mock data files for AdminResources entity",
357
+ "value": 0
358
+ },
359
+ {
360
+ "owner": "mockdata",
361
+ "description": "Number of mock data files for ConfigurationResources entity",
362
+ "value": 0
363
+ },
364
+ {
365
+ "owner": "mockdata",
366
+ "description": "Number of mock data files for DeploymentOptionResources entity",
367
+ "value": 0
368
+ },
369
+ {
370
+ "owner": "mockdata",
371
+ "description": "Number of mock data files for VendorProfileResources entity",
372
+ "value": 0
373
+ },
374
+ {
375
+ "owner": "mockdata",
376
+ "description": "Number of mock data files for DeploymentRoleResources entity",
377
+ "value": 0
378
+ },
379
+ {
380
+ "owner": "mockdata",
381
+ "description": "Number of mock data files for DeviceResources entity",
382
+ "value": 0
383
+ },
384
+ {
385
+ "owner": "mockdata",
386
+ "description": "Number of mock data files for DHCPClientClassResources entity",
387
+ "value": 0
388
+ },
389
+ {
390
+ "owner": "mockdata",
391
+ "description": "Number of mock data files for DHCPZoneResources entity",
392
+ "value": 0
393
+ },
394
+ {
395
+ "owner": "mockdata",
396
+ "description": "Number of mock data files for DNSSECResources entity",
397
+ "value": 0
398
+ },
399
+ {
400
+ "owner": "mockdata",
401
+ "description": "Number of mock data files for FavoriteResources entity",
402
+ "value": 0
403
+ },
404
+ {
405
+ "owner": "mockdata",
406
+ "description": "Number of mock data files for IPv4AndIPv6Resources entity",
407
+ "value": 0
408
+ },
409
+ {
410
+ "owner": "mockdata",
411
+ "description": "Number of mock data files for ViewAndZoneResources entity",
412
+ "value": 0
413
+ },
414
+ {
415
+ "owner": "mockdata",
416
+ "description": "Number of mock data files for ServerResources entity",
417
+ "value": 0
418
+ },
419
+ {
420
+ "owner": "mockdata",
421
+ "description": "Number of mock data files for KerberosResources entity",
422
+ "value": 0
423
+ },
424
+ {
425
+ "owner": "mockdata",
426
+ "description": "Number of mock data files for LocationResources entity",
427
+ "value": 0
428
+ },
429
+ {
430
+ "owner": "mockdata",
431
+ "description": "Number of mock data files for MACAddressAndClientIdentifierResources entity",
432
+ "value": 0
433
+ },
434
+ {
435
+ "owner": "mockdata",
436
+ "description": "Number of mock data files for NamingPolicyResources entity",
437
+ "value": 0
438
+ },
439
+ {
440
+ "owner": "mockdata",
441
+ "description": "Number of mock data files for ResourceRecordResources entity",
442
+ "value": 0
443
+ },
444
+ {
445
+ "owner": "mockdata",
446
+ "description": "Number of mock data files for TagResources entity",
447
+ "value": 0
448
+ },
449
+ {
450
+ "owner": "mockdata",
451
+ "description": "Number of mock data files for TaskResources entity",
452
+ "value": 0
453
+ },
454
+ {
455
+ "owner": "mockdata",
456
+ "description": "Number of mock data files for TFTPResources entity",
457
+ "value": 0
458
+ },
459
+ {
460
+ "owner": "mockdata",
461
+ "description": "Total number of mock data files",
462
+ "value": 0
463
+ },
464
+ {
465
+ "owner": "actionJson",
466
+ "description": "Number of actions for .system entity",
467
+ "value": 2
468
+ },
469
+ {
470
+ "owner": "schemaJson",
471
+ "description": "Number of schemas for .system entity",
472
+ "value": 3
473
+ },
474
+ {
475
+ "owner": "mockdata",
476
+ "description": "Number of mock data files for .system entity",
477
+ "value": 2
478
+ },
479
+ {
480
+ "owner": "System",
481
+ "description": "System entity files",
482
+ "value": 6
483
+ },
484
+ {
485
+ "owner": "usecases",
486
+ "description": "Number of workflows",
487
+ "value": 0
488
+ },
489
+ {
490
+ "owner": "staticFile",
491
+ "description": "Number of lines of code in adapterBase.js",
492
+ "value": 1527
493
+ },
494
+ {
495
+ "owner": "staticFile",
496
+ "description": "Number of static files added",
497
+ "value": 44
498
+ },
499
+ {
500
+ "owner": "Overall",
501
+ "description": "Total lines of Code",
502
+ "value": 77984
503
+ },
504
+ {
505
+ "owner": "Overall",
506
+ "description": "Total Tests",
507
+ "value": 1552
508
+ },
509
+ {
510
+ "owner": "Overall",
511
+ "description": "Total Files",
512
+ "value": 103
513
+ }
514
+ ],
515
+ "warnings": [],
516
+ "apiParsingReport": {
517
+ "no_mockdata": [
518
+ {
519
+ "fnName": "getAccessControlLists",
520
+ "method": "get",
521
+ "path": "/api/v2/accessControlLists"
522
+ },
523
+ {
524
+ "fnName": "getAccessControlList",
525
+ "method": "get",
526
+ "path": "/api/v2/accessControlLists/{id}"
527
+ },
528
+ {
529
+ "fnName": "putAccessControlList",
530
+ "method": "put",
531
+ "path": "/api/v2/accessControlLists/{id}"
532
+ },
533
+ {
534
+ "fnName": "deleteAccessControlList",
535
+ "method": "delete",
536
+ "path": "/api/v2/accessControlLists/{id}"
537
+ },
538
+ {
539
+ "fnName": "getConfigurationAccessControlLists",
540
+ "method": "get",
541
+ "path": "/api/v2/configurations/{collectionId}/accessControlLists"
542
+ },
543
+ {
544
+ "fnName": "postConfigurationAccessControlList",
545
+ "method": "post",
546
+ "path": "/api/v2/configurations/{collectionId}/accessControlLists"
547
+ },
548
+ {
549
+ "fnName": "getAccessRights",
550
+ "method": "get",
551
+ "path": "/api/v2/accessRights"
552
+ },
553
+ {
554
+ "fnName": "postAccessRight",
555
+ "method": "post",
556
+ "path": "/api/v2/accessRights"
557
+ },
558
+ {
559
+ "fnName": "getAccessRight",
560
+ "method": "get",
561
+ "path": "/api/v2/accessRights/{id}"
562
+ },
563
+ {
564
+ "fnName": "putAccessRight",
565
+ "method": "put",
566
+ "path": "/api/v2/accessRights/{id}"
567
+ },
568
+ {
569
+ "fnName": "deleteAccessRight",
570
+ "method": "delete",
571
+ "path": "/api/v2/accessRights/{id}"
572
+ },
573
+ {
574
+ "fnName": "getCollectionAccessRights",
575
+ "method": "get",
576
+ "path": "/api/v2/{collection}/{collectionId}/accessRights"
577
+ },
578
+ {
579
+ "fnName": "getAuthenticators",
580
+ "method": "get",
581
+ "path": "/api/v2/authenticators"
582
+ },
583
+ {
584
+ "fnName": "postAuthenticator",
585
+ "method": "post",
586
+ "path": "/api/v2/authenticators"
587
+ },
588
+ {
589
+ "fnName": "getAuthenticator",
590
+ "method": "get",
591
+ "path": "/api/v2/authenticators/{id}"
592
+ },
593
+ {
594
+ "fnName": "putAuthenticator",
595
+ "method": "put",
596
+ "path": "/api/v2/authenticators/{id}"
597
+ },
598
+ {
599
+ "fnName": "deleteAuthenticator",
600
+ "method": "delete",
601
+ "path": "/api/v2/authenticators/{id}"
602
+ },
603
+ {
604
+ "fnName": "getDatabases",
605
+ "method": "get",
606
+ "path": "/api/v2/databases"
607
+ },
608
+ {
609
+ "fnName": "getDatabase",
610
+ "method": "get",
611
+ "path": "/api/v2/databases/{id}"
612
+ },
613
+ {
614
+ "fnName": "putDatabase",
615
+ "method": "put",
616
+ "path": "/api/v2/databases/{id}"
617
+ },
618
+ {
619
+ "fnName": "patchDatabase",
620
+ "method": "patch",
621
+ "path": "/api/v2/databases/{id}"
622
+ },
623
+ {
624
+ "fnName": "getEvents",
625
+ "method": "get",
626
+ "path": "/api/v2/events"
627
+ },
628
+ {
629
+ "fnName": "getEvent",
630
+ "method": "get",
631
+ "path": "/api/v2/events/{id}"
632
+ },
633
+ {
634
+ "fnName": "getGroups",
635
+ "method": "get",
636
+ "path": "/api/v2/groups"
637
+ },
638
+ {
639
+ "fnName": "postGroup",
640
+ "method": "post",
641
+ "path": "/api/v2/groups"
642
+ },
643
+ {
644
+ "fnName": "getGroup",
645
+ "method": "get",
646
+ "path": "/api/v2/groups/{id}"
647
+ },
648
+ {
649
+ "fnName": "putGroup",
650
+ "method": "put",
651
+ "path": "/api/v2/groups/{id}"
652
+ },
653
+ {
654
+ "fnName": "deleteGroup",
655
+ "method": "delete",
656
+ "path": "/api/v2/groups/{id}"
657
+ },
658
+ {
659
+ "fnName": "getUserGroups",
660
+ "method": "get",
661
+ "path": "/api/v2/users/{collectionId}/groups"
662
+ },
663
+ {
664
+ "fnName": "postUserGroup",
665
+ "method": "post",
666
+ "path": "/api/v2/users/{collectionId}/groups"
667
+ },
668
+ {
669
+ "fnName": "getUserGroup",
670
+ "method": "get",
671
+ "path": "/api/v2/users/{collectionId}/groups/{id}"
672
+ },
673
+ {
674
+ "fnName": "deleteUserGroup",
675
+ "method": "delete",
676
+ "path": "/api/v2/users/{collectionId}/groups/{id}"
677
+ },
678
+ {
679
+ "fnName": "getImports",
680
+ "method": "get",
681
+ "path": "/api/v2/imports"
682
+ },
683
+ {
684
+ "fnName": "postImport",
685
+ "method": "post",
686
+ "path": "/api/v2/imports"
687
+ },
688
+ {
689
+ "fnName": "getImport",
690
+ "method": "get",
691
+ "path": "/api/v2/imports/{id}"
692
+ },
693
+ {
694
+ "fnName": "deleteImport",
695
+ "method": "delete",
696
+ "path": "/api/v2/imports/{id}"
697
+ },
698
+ {
699
+ "fnName": "patchImport",
700
+ "method": "patch",
701
+ "path": "/api/v2/imports/{id}"
702
+ },
703
+ {
704
+ "fnName": "getResponsePolicyImports",
705
+ "method": "get",
706
+ "path": "/api/v2/responsePolicies/{collectionId}/imports"
707
+ },
708
+ {
709
+ "fnName": "postResponsePolicyImport",
710
+ "method": "post",
711
+ "path": "/api/v2/responsePolicies/{collectionId}/imports"
712
+ },
713
+ {
714
+ "fnName": "getResponsePolicyImport",
715
+ "method": "get",
716
+ "path": "/api/v2/responsePolicies/{collectionId}/imports/{id}"
717
+ },
718
+ {
719
+ "fnName": "deleteResponsePolicyImport",
720
+ "method": "delete",
721
+ "path": "/api/v2/responsePolicies/{collectionId}/imports/{id}"
722
+ },
723
+ {
724
+ "fnName": "getImportLogs",
725
+ "method": "get",
726
+ "path": "/api/v2/imports/{collectionId}/logs"
727
+ },
728
+ {
729
+ "fnName": "getImportLog",
730
+ "method": "get",
731
+ "path": "/api/v2/imports/{collectionId}/logs/{id}"
732
+ },
733
+ {
734
+ "fnName": "getTransactionOperations",
735
+ "method": "get",
736
+ "path": "/api/v2/transactions/{collectionId}/operations"
737
+ },
738
+ {
739
+ "fnName": "getTransactionOperation",
740
+ "method": "get",
741
+ "path": "/api/v2/transactions/{collectionId}/operations/{id}"
742
+ },
743
+ {
744
+ "fnName": "getSessions",
745
+ "method": "get",
746
+ "path": "/api/v2/sessions"
747
+ },
748
+ {
749
+ "fnName": "postSession",
750
+ "method": "post",
751
+ "path": "/api/v2/sessions"
752
+ },
753
+ {
754
+ "fnName": "getSessionCurrent",
755
+ "method": "get",
756
+ "path": "/api/v2/sessions/current"
757
+ },
758
+ {
759
+ "fnName": "patchSessionCurrent",
760
+ "method": "patch",
761
+ "path": "/api/v2/sessions/current"
762
+ },
763
+ {
764
+ "fnName": "getSession",
765
+ "method": "get",
766
+ "path": "/api/v2/sessions/{id}"
767
+ },
768
+ {
769
+ "fnName": "patchSession",
770
+ "method": "patch",
771
+ "path": "/api/v2/sessions/{id}"
772
+ },
773
+ {
774
+ "fnName": "getUserSessions",
775
+ "method": "get",
776
+ "path": "/api/v2/users/{collectionId}/sessions"
777
+ },
778
+ {
779
+ "fnName": "getUserSession",
780
+ "method": "get",
781
+ "path": "/api/v2/users/{collectionId}/sessions/{id}"
782
+ },
783
+ {
784
+ "fnName": "getSettings",
785
+ "method": "get",
786
+ "path": "/api/v2/settings"
787
+ },
788
+ {
789
+ "fnName": "getSetting",
790
+ "method": "get",
791
+ "path": "/api/v2/settings/{id}"
792
+ },
793
+ {
794
+ "fnName": "putSetting",
795
+ "method": "put",
796
+ "path": "/api/v2/settings/{id}"
797
+ },
798
+ {
799
+ "fnName": "getSigningPolicies",
800
+ "method": "get",
801
+ "path": "/api/v2/signingPolicies"
802
+ },
803
+ {
804
+ "fnName": "postSigningPolicy",
805
+ "method": "post",
806
+ "path": "/api/v2/signingPolicies"
807
+ },
808
+ {
809
+ "fnName": "getSigningPolicy",
810
+ "method": "get",
811
+ "path": "/api/v2/signingPolicies/{id}"
812
+ },
813
+ {
814
+ "fnName": "putSigningPolicy",
815
+ "method": "put",
816
+ "path": "/api/v2/signingPolicies/{id}"
817
+ },
818
+ {
819
+ "fnName": "deleteSigningPolicy",
820
+ "method": "delete",
821
+ "path": "/api/v2/signingPolicies/{id}"
822
+ },
823
+ {
824
+ "fnName": "getTransactions",
825
+ "method": "get",
826
+ "path": "/api/v2/transactions"
827
+ },
828
+ {
829
+ "fnName": "postTransaction",
830
+ "method": "post",
831
+ "path": "/api/v2/transactions"
832
+ },
833
+ {
834
+ "fnName": "getTransaction",
835
+ "method": "get",
836
+ "path": "/api/v2/transactions/{id}"
837
+ },
838
+ {
839
+ "fnName": "getCollectionTransactions",
840
+ "method": "get",
841
+ "path": "/api/v2/{collection}/{collectionId}/transactions"
842
+ },
843
+ {
844
+ "fnName": "getTrustRelationships",
845
+ "method": "get",
846
+ "path": "/api/v2/trustRelationships"
847
+ },
848
+ {
849
+ "fnName": "postTrustRelationship",
850
+ "method": "post",
851
+ "path": "/api/v2/trustRelationships"
852
+ },
853
+ {
854
+ "fnName": "getTrustRelationship",
855
+ "method": "get",
856
+ "path": "/api/v2/trustRelationships/{id}"
857
+ },
858
+ {
859
+ "fnName": "deleteTrustRelationship",
860
+ "method": "delete",
861
+ "path": "/api/v2/trustRelationships/{id}"
862
+ },
863
+ {
864
+ "fnName": "patchTrustRelationship",
865
+ "method": "patch",
866
+ "path": "/api/v2/trustRelationships/{id}"
867
+ },
868
+ {
869
+ "fnName": "getUserDefinedFieldDefinitions",
870
+ "method": "get",
871
+ "path": "/api/v2/userDefinedFieldDefinitions"
872
+ },
873
+ {
874
+ "fnName": "postUserDefinedFieldDefinition",
875
+ "method": "post",
876
+ "path": "/api/v2/userDefinedFieldDefinitions"
877
+ },
878
+ {
879
+ "fnName": "getUserDefinedFieldDefinition",
880
+ "method": "get",
881
+ "path": "/api/v2/userDefinedFieldDefinitions/{id}"
882
+ },
883
+ {
884
+ "fnName": "putUserDefinedFieldDefinition",
885
+ "method": "put",
886
+ "path": "/api/v2/userDefinedFieldDefinitions/{id}"
887
+ },
888
+ {
889
+ "fnName": "deleteUserDefinedFieldDefinition",
890
+ "method": "delete",
891
+ "path": "/api/v2/userDefinedFieldDefinitions/{id}"
892
+ },
893
+ {
894
+ "fnName": "getUserDefinedLinkDefinitions",
895
+ "method": "get",
896
+ "path": "/api/v2/userDefinedLinkDefinitions"
897
+ },
898
+ {
899
+ "fnName": "postUserDefinedLinkDefinition",
900
+ "method": "post",
901
+ "path": "/api/v2/userDefinedLinkDefinitions"
902
+ },
903
+ {
904
+ "fnName": "getUserDefinedLinkDefinition",
905
+ "method": "get",
906
+ "path": "/api/v2/userDefinedLinkDefinitions/{id}"
907
+ },
908
+ {
909
+ "fnName": "putUserDefinedLinkDefinition",
910
+ "method": "put",
911
+ "path": "/api/v2/userDefinedLinkDefinitions/{id}"
912
+ },
913
+ {
914
+ "fnName": "deleteUserDefinedLinkDefinition",
915
+ "method": "delete",
916
+ "path": "/api/v2/userDefinedLinkDefinitions/{id}"
917
+ },
918
+ {
919
+ "fnName": "getCollectionUserDefinedLinks",
920
+ "method": "get",
921
+ "path": "/api/v2/{collection}/{collectionId}/userDefinedLinks"
922
+ },
923
+ {
924
+ "fnName": "postCollectionUserDefinedLink",
925
+ "method": "post",
926
+ "path": "/api/v2/{collection}/{collectionId}/userDefinedLinks"
927
+ },
928
+ {
929
+ "fnName": "getCollectionUserDefinedLink",
930
+ "method": "get",
931
+ "path": "/api/v2/{collection}/{collectionId}/userDefinedLinks/{id}"
932
+ },
933
+ {
934
+ "fnName": "deleteCollectionUserDefinedLink",
935
+ "method": "delete",
936
+ "path": "/api/v2/{collection}/{collectionId}/userDefinedLinks/{id}"
937
+ },
938
+ {
939
+ "fnName": "getUsers",
940
+ "method": "get",
941
+ "path": "/api/v2/users"
942
+ },
943
+ {
944
+ "fnName": "postUser",
945
+ "method": "post",
946
+ "path": "/api/v2/users"
947
+ },
948
+ {
949
+ "fnName": "getUser",
950
+ "method": "get",
951
+ "path": "/api/v2/users/{id}"
952
+ },
953
+ {
954
+ "fnName": "putUser",
955
+ "method": "put",
956
+ "path": "/api/v2/users/{id}"
957
+ },
958
+ {
959
+ "fnName": "deleteUser",
960
+ "method": "delete",
961
+ "path": "/api/v2/users/{id}"
962
+ },
963
+ {
964
+ "fnName": "patchUser",
965
+ "method": "patch",
966
+ "path": "/api/v2/users/{id}"
967
+ },
968
+ {
969
+ "fnName": "getGroupUsers",
970
+ "method": "get",
971
+ "path": "/api/v2/groups/{collectionId}/users"
972
+ },
973
+ {
974
+ "fnName": "postGroupUser",
975
+ "method": "post",
976
+ "path": "/api/v2/groups/{collectionId}/users"
977
+ },
978
+ {
979
+ "fnName": "getGroupUser",
980
+ "method": "get",
981
+ "path": "/api/v2/groups/{collectionId}/users/{id}"
982
+ },
983
+ {
984
+ "fnName": "deleteGroupUser",
985
+ "method": "delete",
986
+ "path": "/api/v2/groups/{collectionId}/users/{id}"
987
+ },
988
+ {
989
+ "fnName": "getResources",
990
+ "method": "get",
991
+ "path": "/api/v2"
992
+ },
993
+ {
994
+ "fnName": "getRoot",
995
+ "method": "get",
996
+ "path": "/api/v2/{id}"
997
+ },
998
+ {
999
+ "fnName": "getWorkflowRequests",
1000
+ "method": "get",
1001
+ "path": "/api/v2/workflowRequests"
1002
+ },
1003
+ {
1004
+ "fnName": "getWorkflowRequest",
1005
+ "method": "get",
1006
+ "path": "/api/v2/workflowRequests/{id}"
1007
+ },
1008
+ {
1009
+ "fnName": "deleteWorkflowRequest",
1010
+ "method": "delete",
1011
+ "path": "/api/v2/workflowRequests/{id}"
1012
+ },
1013
+ {
1014
+ "fnName": "patchWorkflowRequest",
1015
+ "method": "patch",
1016
+ "path": "/api/v2/workflowRequests/{id}"
1017
+ },
1018
+ {
1019
+ "fnName": "getCollectionWorkflowRequests",
1020
+ "method": "get",
1021
+ "path": "/api/v2/{collection}/{collectionId}/workflowRequests"
1022
+ },
1023
+ {
1024
+ "fnName": "getConfigurations",
1025
+ "method": "get",
1026
+ "path": "/api/v2/configurations"
1027
+ },
1028
+ {
1029
+ "fnName": "postConfiguration",
1030
+ "method": "post",
1031
+ "path": "/api/v2/configurations"
1032
+ },
1033
+ {
1034
+ "fnName": "getConfiguration",
1035
+ "method": "get",
1036
+ "path": "/api/v2/configurations/{id}"
1037
+ },
1038
+ {
1039
+ "fnName": "putConfiguration",
1040
+ "method": "put",
1041
+ "path": "/api/v2/configurations/{id}"
1042
+ },
1043
+ {
1044
+ "fnName": "deleteConfiguration",
1045
+ "method": "delete",
1046
+ "path": "/api/v2/configurations/{id}"
1047
+ },
1048
+ {
1049
+ "fnName": "getDeploymentOptionDefinitions",
1050
+ "method": "get",
1051
+ "path": "/api/v2/deploymentOptionDefinitions"
1052
+ },
1053
+ {
1054
+ "fnName": "getDeploymentOptionDefinition",
1055
+ "method": "get",
1056
+ "path": "/api/v2/deploymentOptionDefinitions/{id}"
1057
+ },
1058
+ {
1059
+ "fnName": "putDeploymentOptionDefinition",
1060
+ "method": "put",
1061
+ "path": "/api/v2/deploymentOptionDefinitions/{id}"
1062
+ },
1063
+ {
1064
+ "fnName": "deleteDeploymentOptionDefinition",
1065
+ "method": "delete",
1066
+ "path": "/api/v2/deploymentOptionDefinitions/{id}"
1067
+ },
1068
+ {
1069
+ "fnName": "getCollectionDeploymentOptionDefinitions",
1070
+ "method": "get",
1071
+ "path": "/api/v2/{collection}/{collectionId}/deploymentOptionDefinitions"
1072
+ },
1073
+ {
1074
+ "fnName": "postCollectionDeploymentOptionDefinition",
1075
+ "method": "post",
1076
+ "path": "/api/v2/{collection}/{collectionId}/deploymentOptionDefinitions"
1077
+ },
1078
+ {
1079
+ "fnName": "getDeploymentOptions",
1080
+ "method": "get",
1081
+ "path": "/api/v2/deploymentOptions"
1082
+ },
1083
+ {
1084
+ "fnName": "getDeploymentOption",
1085
+ "method": "get",
1086
+ "path": "/api/v2/deploymentOptions/{id}"
1087
+ },
1088
+ {
1089
+ "fnName": "putDeploymentOption",
1090
+ "method": "put",
1091
+ "path": "/api/v2/deploymentOptions/{id}"
1092
+ },
1093
+ {
1094
+ "fnName": "deleteDeploymentOption",
1095
+ "method": "delete",
1096
+ "path": "/api/v2/deploymentOptions/{id}"
1097
+ },
1098
+ {
1099
+ "fnName": "getCollectionDeploymentOptions",
1100
+ "method": "get",
1101
+ "path": "/api/v2/{collection}/{collectionId}/deploymentOptions"
1102
+ },
1103
+ {
1104
+ "fnName": "postCollectionDeploymentOption",
1105
+ "method": "post",
1106
+ "path": "/api/v2/{collection}/{collectionId}/deploymentOptions"
1107
+ },
1108
+ {
1109
+ "fnName": "getVendorProfiles",
1110
+ "method": "get",
1111
+ "path": "/api/v2/vendorProfiles"
1112
+ },
1113
+ {
1114
+ "fnName": "postVendorProfile",
1115
+ "method": "post",
1116
+ "path": "/api/v2/vendorProfiles"
1117
+ },
1118
+ {
1119
+ "fnName": "getVendorProfile",
1120
+ "method": "get",
1121
+ "path": "/api/v2/vendorProfiles/{id}"
1122
+ },
1123
+ {
1124
+ "fnName": "putVendorProfile",
1125
+ "method": "put",
1126
+ "path": "/api/v2/vendorProfiles/{id}"
1127
+ },
1128
+ {
1129
+ "fnName": "deleteVendorProfile",
1130
+ "method": "delete",
1131
+ "path": "/api/v2/vendorProfiles/{id}"
1132
+ },
1133
+ {
1134
+ "fnName": "getDeploymentRoles",
1135
+ "method": "get",
1136
+ "path": "/api/v2/deploymentRoles"
1137
+ },
1138
+ {
1139
+ "fnName": "getDeploymentRole",
1140
+ "method": "get",
1141
+ "path": "/api/v2/deploymentRoles/{id}"
1142
+ },
1143
+ {
1144
+ "fnName": "putDeploymentRole",
1145
+ "method": "put",
1146
+ "path": "/api/v2/deploymentRoles/{id}"
1147
+ },
1148
+ {
1149
+ "fnName": "deleteDeploymentRole",
1150
+ "method": "delete",
1151
+ "path": "/api/v2/deploymentRoles/{id}"
1152
+ },
1153
+ {
1154
+ "fnName": "getCollectionDeploymentRoles",
1155
+ "method": "get",
1156
+ "path": "/api/v2/{collection}/{collectionId}/deploymentRoles"
1157
+ },
1158
+ {
1159
+ "fnName": "postCollectionDeploymentRole",
1160
+ "method": "post",
1161
+ "path": "/api/v2/{collection}/{collectionId}/deploymentRoles"
1162
+ },
1163
+ {
1164
+ "fnName": "getServerDeploymentRoles",
1165
+ "method": "get",
1166
+ "path": "/api/v2/servers/{collectionId}/deploymentRoles"
1167
+ },
1168
+ {
1169
+ "fnName": "getServerDeploymentRole",
1170
+ "method": "get",
1171
+ "path": "/api/v2/servers/{collectionId}/deploymentRoles/{id}"
1172
+ },
1173
+ {
1174
+ "fnName": "getDeviceSubtypes",
1175
+ "method": "get",
1176
+ "path": "/api/v2/deviceSubtypes"
1177
+ },
1178
+ {
1179
+ "fnName": "getDeviceSubtype",
1180
+ "method": "get",
1181
+ "path": "/api/v2/deviceSubtypes/{id}"
1182
+ },
1183
+ {
1184
+ "fnName": "putDeviceSubtype",
1185
+ "method": "put",
1186
+ "path": "/api/v2/deviceSubtypes/{id}"
1187
+ },
1188
+ {
1189
+ "fnName": "deleteDeviceSubtype",
1190
+ "method": "delete",
1191
+ "path": "/api/v2/deviceSubtypes/{id}"
1192
+ },
1193
+ {
1194
+ "fnName": "getDeviceTypeDeviceSubtypes",
1195
+ "method": "get",
1196
+ "path": "/api/v2/deviceTypes/{collectionId}/deviceSubtypes"
1197
+ },
1198
+ {
1199
+ "fnName": "postDeviceTypeDeviceSubtype",
1200
+ "method": "post",
1201
+ "path": "/api/v2/deviceTypes/{collectionId}/deviceSubtypes"
1202
+ },
1203
+ {
1204
+ "fnName": "getDeviceTypes",
1205
+ "method": "get",
1206
+ "path": "/api/v2/deviceTypes"
1207
+ },
1208
+ {
1209
+ "fnName": "postDeviceType",
1210
+ "method": "post",
1211
+ "path": "/api/v2/deviceTypes"
1212
+ },
1213
+ {
1214
+ "fnName": "getDeviceType",
1215
+ "method": "get",
1216
+ "path": "/api/v2/deviceTypes/{id}"
1217
+ },
1218
+ {
1219
+ "fnName": "putDeviceType",
1220
+ "method": "put",
1221
+ "path": "/api/v2/deviceTypes/{id}"
1222
+ },
1223
+ {
1224
+ "fnName": "deleteDeviceType",
1225
+ "method": "delete",
1226
+ "path": "/api/v2/deviceTypes/{id}"
1227
+ },
1228
+ {
1229
+ "fnName": "getDevices",
1230
+ "method": "get",
1231
+ "path": "/api/v2/devices"
1232
+ },
1233
+ {
1234
+ "fnName": "getDevice",
1235
+ "method": "get",
1236
+ "path": "/api/v2/devices/{id}"
1237
+ },
1238
+ {
1239
+ "fnName": "putDevice",
1240
+ "method": "put",
1241
+ "path": "/api/v2/devices/{id}"
1242
+ },
1243
+ {
1244
+ "fnName": "deleteDevice",
1245
+ "method": "delete",
1246
+ "path": "/api/v2/devices/{id}"
1247
+ },
1248
+ {
1249
+ "fnName": "getConfigurationDevices",
1250
+ "method": "get",
1251
+ "path": "/api/v2/configurations/{collectionId}/devices"
1252
+ },
1253
+ {
1254
+ "fnName": "postConfigurationDevice",
1255
+ "method": "post",
1256
+ "path": "/api/v2/configurations/{collectionId}/devices"
1257
+ },
1258
+ {
1259
+ "fnName": "getClientClasses",
1260
+ "method": "get",
1261
+ "path": "/api/v2/clientClasses"
1262
+ },
1263
+ {
1264
+ "fnName": "getClientClass",
1265
+ "method": "get",
1266
+ "path": "/api/v2/clientClasses/{id}"
1267
+ },
1268
+ {
1269
+ "fnName": "putClientClass",
1270
+ "method": "put",
1271
+ "path": "/api/v2/clientClasses/{id}"
1272
+ },
1273
+ {
1274
+ "fnName": "deleteClientClass",
1275
+ "method": "delete",
1276
+ "path": "/api/v2/clientClasses/{id}"
1277
+ },
1278
+ {
1279
+ "fnName": "getConfigurationClientClasses",
1280
+ "method": "get",
1281
+ "path": "/api/v2/configurations/{collectionId}/clientClasses"
1282
+ },
1283
+ {
1284
+ "fnName": "postConfigurationClientClass",
1285
+ "method": "post",
1286
+ "path": "/api/v2/configurations/{collectionId}/clientClasses"
1287
+ },
1288
+ {
1289
+ "fnName": "getSubclasses",
1290
+ "method": "get",
1291
+ "path": "/api/v2/subclasses"
1292
+ },
1293
+ {
1294
+ "fnName": "getSubclass",
1295
+ "method": "get",
1296
+ "path": "/api/v2/subclasses/{id}"
1297
+ },
1298
+ {
1299
+ "fnName": "putSubclass",
1300
+ "method": "put",
1301
+ "path": "/api/v2/subclasses/{id}"
1302
+ },
1303
+ {
1304
+ "fnName": "deleteSubclass",
1305
+ "method": "delete",
1306
+ "path": "/api/v2/subclasses/{id}"
1307
+ },
1308
+ {
1309
+ "fnName": "getClientClassSubclasses",
1310
+ "method": "get",
1311
+ "path": "/api/v2/clientClasses/{collectionId}/subclasses"
1312
+ },
1313
+ {
1314
+ "fnName": "postClientClassSubclass",
1315
+ "method": "post",
1316
+ "path": "/api/v2/clientClasses/{collectionId}/subclasses"
1317
+ },
1318
+ {
1319
+ "fnName": "getZoneDeclarations",
1320
+ "method": "get",
1321
+ "path": "/api/v2/zoneDeclarations"
1322
+ },
1323
+ {
1324
+ "fnName": "getZoneDeclaration",
1325
+ "method": "get",
1326
+ "path": "/api/v2/zoneDeclarations/{id}"
1327
+ },
1328
+ {
1329
+ "fnName": "putZoneDeclaration",
1330
+ "method": "put",
1331
+ "path": "/api/v2/zoneDeclarations/{id}"
1332
+ },
1333
+ {
1334
+ "fnName": "deleteZoneDeclaration",
1335
+ "method": "delete",
1336
+ "path": "/api/v2/zoneDeclarations/{id}"
1337
+ },
1338
+ {
1339
+ "fnName": "getZoneGroupZoneDeclarations",
1340
+ "method": "get",
1341
+ "path": "/api/v2/zoneGroups/{collectionId}/zoneDeclarations"
1342
+ },
1343
+ {
1344
+ "fnName": "postZoneGroupZoneDeclaration",
1345
+ "method": "post",
1346
+ "path": "/api/v2/zoneGroups/{collectionId}/zoneDeclarations"
1347
+ },
1348
+ {
1349
+ "fnName": "getZoneGroups",
1350
+ "method": "get",
1351
+ "path": "/api/v2/zoneGroups"
1352
+ },
1353
+ {
1354
+ "fnName": "getZoneGroup",
1355
+ "method": "get",
1356
+ "path": "/api/v2/zoneGroups/{id}"
1357
+ },
1358
+ {
1359
+ "fnName": "putZoneGroup",
1360
+ "method": "put",
1361
+ "path": "/api/v2/zoneGroups/{id}"
1362
+ },
1363
+ {
1364
+ "fnName": "deleteZoneGroup",
1365
+ "method": "delete",
1366
+ "path": "/api/v2/zoneGroups/{id}"
1367
+ },
1368
+ {
1369
+ "fnName": "getConfigurationZoneGroups",
1370
+ "method": "get",
1371
+ "path": "/api/v2/configurations/{collectionId}/zoneGroups"
1372
+ },
1373
+ {
1374
+ "fnName": "postConfigurationZoneGroup",
1375
+ "method": "post",
1376
+ "path": "/api/v2/configurations/{collectionId}/zoneGroups"
1377
+ },
1378
+ {
1379
+ "fnName": "getSigningKeys",
1380
+ "method": "get",
1381
+ "path": "/api/v2/signingKeys"
1382
+ },
1383
+ {
1384
+ "fnName": "getSigningKey",
1385
+ "method": "get",
1386
+ "path": "/api/v2/signingKeys/{id}"
1387
+ },
1388
+ {
1389
+ "fnName": "putSigningKey",
1390
+ "method": "put",
1391
+ "path": "/api/v2/signingKeys/{id}"
1392
+ },
1393
+ {
1394
+ "fnName": "deleteSigningKey",
1395
+ "method": "delete",
1396
+ "path": "/api/v2/signingKeys/{id}"
1397
+ },
1398
+ {
1399
+ "fnName": "patchSigningKey",
1400
+ "method": "patch",
1401
+ "path": "/api/v2/signingKeys/{id}"
1402
+ },
1403
+ {
1404
+ "fnName": "getCollectionSigningKeys",
1405
+ "method": "get",
1406
+ "path": "/api/v2/{collection}/{collectionId}/signingKeys"
1407
+ },
1408
+ {
1409
+ "fnName": "postCollectionSigningKey",
1410
+ "method": "post",
1411
+ "path": "/api/v2/{collection}/{collectionId}/signingKeys"
1412
+ },
1413
+ {
1414
+ "fnName": "getUserFavorites",
1415
+ "method": "get",
1416
+ "path": "/api/v2/users/{collectionId}/favorites"
1417
+ },
1418
+ {
1419
+ "fnName": "postUserFavorite",
1420
+ "method": "post",
1421
+ "path": "/api/v2/users/{collectionId}/favorites"
1422
+ },
1423
+ {
1424
+ "fnName": "deleteUserFavorite",
1425
+ "method": "delete",
1426
+ "path": "/api/v2/users/{collectionId}/favorites/{id}"
1427
+ },
1428
+ {
1429
+ "fnName": "getAddresses",
1430
+ "method": "get",
1431
+ "path": "/api/v2/addresses"
1432
+ },
1433
+ {
1434
+ "fnName": "getAddress",
1435
+ "method": "get",
1436
+ "path": "/api/v2/addresses/{id}"
1437
+ },
1438
+ {
1439
+ "fnName": "putAddress",
1440
+ "method": "put",
1441
+ "path": "/api/v2/addresses/{id}"
1442
+ },
1443
+ {
1444
+ "fnName": "deleteAddress",
1445
+ "method": "delete",
1446
+ "path": "/api/v2/addresses/{id}"
1447
+ },
1448
+ {
1449
+ "fnName": "getCollectionAddresses",
1450
+ "method": "get",
1451
+ "path": "/api/v2/{collection}/{collectionId}/addresses"
1452
+ },
1453
+ {
1454
+ "fnName": "postCollectionAddress",
1455
+ "method": "post",
1456
+ "path": "/api/v2/{collection}/{collectionId}/addresses"
1457
+ },
1458
+ {
1459
+ "fnName": "getNetworkAddresses",
1460
+ "method": "get",
1461
+ "path": "/api/v2/networks/{collectionId}/addresses"
1462
+ },
1463
+ {
1464
+ "fnName": "postNetworkAddress",
1465
+ "method": "post",
1466
+ "path": "/api/v2/networks/{collectionId}/addresses"
1467
+ },
1468
+ {
1469
+ "fnName": "getCollectionAddress",
1470
+ "method": "get",
1471
+ "path": "/api/v2/{collection}/{collectionId}/addresses/{id}"
1472
+ },
1473
+ {
1474
+ "fnName": "deleteCollectionAddress",
1475
+ "method": "delete",
1476
+ "path": "/api/v2/{collection}/{collectionId}/addresses/{id}"
1477
+ },
1478
+ {
1479
+ "fnName": "getCollectionAppliedResources",
1480
+ "method": "get",
1481
+ "path": "/api/v2/{collection}/{collectionId}/appliedResources"
1482
+ },
1483
+ {
1484
+ "fnName": "postCollectionAppliedResource",
1485
+ "method": "post",
1486
+ "path": "/api/v2/{collection}/{collectionId}/appliedResources"
1487
+ },
1488
+ {
1489
+ "fnName": "getCollectionAppliedResource",
1490
+ "method": "get",
1491
+ "path": "/api/v2/{collection}/{collectionId}/appliedResources/{id}"
1492
+ },
1493
+ {
1494
+ "fnName": "deleteCollectionAppliedResource",
1495
+ "method": "delete",
1496
+ "path": "/api/v2/{collection}/{collectionId}/appliedResources/{id}"
1497
+ },
1498
+ {
1499
+ "fnName": "getBlocks",
1500
+ "method": "get",
1501
+ "path": "/api/v2/blocks"
1502
+ },
1503
+ {
1504
+ "fnName": "getBlock",
1505
+ "method": "get",
1506
+ "path": "/api/v2/blocks/{id}"
1507
+ },
1508
+ {
1509
+ "fnName": "putBlock",
1510
+ "method": "put",
1511
+ "path": "/api/v2/blocks/{id}"
1512
+ },
1513
+ {
1514
+ "fnName": "deleteBlock",
1515
+ "method": "delete",
1516
+ "path": "/api/v2/blocks/{id}"
1517
+ },
1518
+ {
1519
+ "fnName": "getBlockBlocks",
1520
+ "method": "get",
1521
+ "path": "/api/v2/blocks/{collectionId}/blocks"
1522
+ },
1523
+ {
1524
+ "fnName": "postBlockBlock",
1525
+ "method": "post",
1526
+ "path": "/api/v2/blocks/{collectionId}/blocks"
1527
+ },
1528
+ {
1529
+ "fnName": "getConfigurationBlocks",
1530
+ "method": "get",
1531
+ "path": "/api/v2/configurations/{collectionId}/blocks"
1532
+ },
1533
+ {
1534
+ "fnName": "postConfigurationBlock",
1535
+ "method": "post",
1536
+ "path": "/api/v2/configurations/{collectionId}/blocks"
1537
+ },
1538
+ {
1539
+ "fnName": "getMergeBlocks",
1540
+ "method": "get",
1541
+ "path": "/api/v2/merges/{collectionId}/blocks"
1542
+ },
1543
+ {
1544
+ "fnName": "getSplitBlocks",
1545
+ "method": "get",
1546
+ "path": "/api/v2/splits/{collectionId}/blocks"
1547
+ },
1548
+ {
1549
+ "fnName": "getMergeBlock",
1550
+ "method": "get",
1551
+ "path": "/api/v2/merges/{collectionId}/blocks/{id}"
1552
+ },
1553
+ {
1554
+ "fnName": "getSplitBlock",
1555
+ "method": "get",
1556
+ "path": "/api/v2/splits/{collectionId}/blocks/{id}"
1557
+ },
1558
+ {
1559
+ "fnName": "getTemplateConflictingResources",
1560
+ "method": "get",
1561
+ "path": "/api/v2/templates/{collectionId}/conflictingResources"
1562
+ },
1563
+ {
1564
+ "fnName": "getTemplateConflictingResource",
1565
+ "method": "get",
1566
+ "path": "/api/v2/templates/{collectionId}/conflictingResources/{id}"
1567
+ },
1568
+ {
1569
+ "fnName": "getReconciliationPolicyDiscoveredDevices",
1570
+ "method": "get",
1571
+ "path": "/api/v2/reconciliationPolicies/{collectionId}/discoveredDevices"
1572
+ },
1573
+ {
1574
+ "fnName": "getReconciliationPolicyDiscoveredDevice",
1575
+ "method": "get",
1576
+ "path": "/api/v2/reconciliationPolicies/{collectionId}/discoveredDevices/{id}"
1577
+ },
1578
+ {
1579
+ "fnName": "getIpGroups",
1580
+ "method": "get",
1581
+ "path": "/api/v2/ipGroups"
1582
+ },
1583
+ {
1584
+ "fnName": "getIpGroup",
1585
+ "method": "get",
1586
+ "path": "/api/v2/ipGroups/{id}"
1587
+ },
1588
+ {
1589
+ "fnName": "putIpGroup",
1590
+ "method": "put",
1591
+ "path": "/api/v2/ipGroups/{id}"
1592
+ },
1593
+ {
1594
+ "fnName": "deleteIpGroup",
1595
+ "method": "delete",
1596
+ "path": "/api/v2/ipGroups/{id}"
1597
+ },
1598
+ {
1599
+ "fnName": "getNetworkIpGroups",
1600
+ "method": "get",
1601
+ "path": "/api/v2/networks/{collectionId}/ipGroups"
1602
+ },
1603
+ {
1604
+ "fnName": "postNetworkIpGroup",
1605
+ "method": "post",
1606
+ "path": "/api/v2/networks/{collectionId}/ipGroups"
1607
+ },
1608
+ {
1609
+ "fnName": "getLeases",
1610
+ "method": "get",
1611
+ "path": "/api/v2/leases"
1612
+ },
1613
+ {
1614
+ "fnName": "getLease",
1615
+ "method": "get",
1616
+ "path": "/api/v2/leases/{id}"
1617
+ },
1618
+ {
1619
+ "fnName": "getCollectionLeases",
1620
+ "method": "get",
1621
+ "path": "/api/v2/{collection}/{collectionId}/leases"
1622
+ },
1623
+ {
1624
+ "fnName": "getMerges",
1625
+ "method": "get",
1626
+ "path": "/api/v2/merges"
1627
+ },
1628
+ {
1629
+ "fnName": "getMerge",
1630
+ "method": "get",
1631
+ "path": "/api/v2/merges/{id}"
1632
+ },
1633
+ {
1634
+ "fnName": "getCollectionMerges",
1635
+ "method": "get",
1636
+ "path": "/api/v2/{collection}/{collectionId}/merges"
1637
+ },
1638
+ {
1639
+ "fnName": "postCollectionMerge",
1640
+ "method": "post",
1641
+ "path": "/api/v2/{collection}/{collectionId}/merges"
1642
+ },
1643
+ {
1644
+ "fnName": "getMoves",
1645
+ "method": "get",
1646
+ "path": "/api/v2/moves"
1647
+ },
1648
+ {
1649
+ "fnName": "getMove",
1650
+ "method": "get",
1651
+ "path": "/api/v2/moves/{id}"
1652
+ },
1653
+ {
1654
+ "fnName": "getCollectionMoves",
1655
+ "method": "get",
1656
+ "path": "/api/v2/{collection}/{collectionId}/moves"
1657
+ },
1658
+ {
1659
+ "fnName": "postCollectionMove",
1660
+ "method": "post",
1661
+ "path": "/api/v2/{collection}/{collectionId}/moves"
1662
+ },
1663
+ {
1664
+ "fnName": "getNetworks",
1665
+ "method": "get",
1666
+ "path": "/api/v2/networks"
1667
+ },
1668
+ {
1669
+ "fnName": "getNetwork",
1670
+ "method": "get",
1671
+ "path": "/api/v2/networks/{id}"
1672
+ },
1673
+ {
1674
+ "fnName": "putNetwork",
1675
+ "method": "put",
1676
+ "path": "/api/v2/networks/{id}"
1677
+ },
1678
+ {
1679
+ "fnName": "deleteNetwork",
1680
+ "method": "delete",
1681
+ "path": "/api/v2/networks/{id}"
1682
+ },
1683
+ {
1684
+ "fnName": "getBlockNetworks",
1685
+ "method": "get",
1686
+ "path": "/api/v2/blocks/{collectionId}/networks"
1687
+ },
1688
+ {
1689
+ "fnName": "postBlockNetwork",
1690
+ "method": "post",
1691
+ "path": "/api/v2/blocks/{collectionId}/networks"
1692
+ },
1693
+ {
1694
+ "fnName": "getMergeNetworks",
1695
+ "method": "get",
1696
+ "path": "/api/v2/merges/{collectionId}/networks"
1697
+ },
1698
+ {
1699
+ "fnName": "getSplitNetworks",
1700
+ "method": "get",
1701
+ "path": "/api/v2/splits/{collectionId}/networks"
1702
+ },
1703
+ {
1704
+ "fnName": "getMergeNetwork",
1705
+ "method": "get",
1706
+ "path": "/api/v2/merges/{collectionId}/networks/{id}"
1707
+ },
1708
+ {
1709
+ "fnName": "getSplitNetwork",
1710
+ "method": "get",
1711
+ "path": "/api/v2/splits/{collectionId}/networks/{id}"
1712
+ },
1713
+ {
1714
+ "fnName": "getRanges",
1715
+ "method": "get",
1716
+ "path": "/api/v2/ranges"
1717
+ },
1718
+ {
1719
+ "fnName": "getRange",
1720
+ "method": "get",
1721
+ "path": "/api/v2/ranges/{id}"
1722
+ },
1723
+ {
1724
+ "fnName": "putRange",
1725
+ "method": "put",
1726
+ "path": "/api/v2/ranges/{id}"
1727
+ },
1728
+ {
1729
+ "fnName": "deleteRange",
1730
+ "method": "delete",
1731
+ "path": "/api/v2/ranges/{id}"
1732
+ },
1733
+ {
1734
+ "fnName": "getMergeRanges",
1735
+ "method": "get",
1736
+ "path": "/api/v2/merges/{collectionId}/ranges"
1737
+ },
1738
+ {
1739
+ "fnName": "getNetworkRanges",
1740
+ "method": "get",
1741
+ "path": "/api/v2/networks/{collectionId}/ranges"
1742
+ },
1743
+ {
1744
+ "fnName": "postNetworkRange",
1745
+ "method": "post",
1746
+ "path": "/api/v2/networks/{collectionId}/ranges"
1747
+ },
1748
+ {
1749
+ "fnName": "getMergeRange",
1750
+ "method": "get",
1751
+ "path": "/api/v2/merges/{collectionId}/ranges/{id}"
1752
+ },
1753
+ {
1754
+ "fnName": "getReconciliationPolicies",
1755
+ "method": "get",
1756
+ "path": "/api/v2/reconciliationPolicies"
1757
+ },
1758
+ {
1759
+ "fnName": "getReconciliationPolicy",
1760
+ "method": "get",
1761
+ "path": "/api/v2/reconciliationPolicies/{id}"
1762
+ },
1763
+ {
1764
+ "fnName": "putReconciliationPolicy",
1765
+ "method": "put",
1766
+ "path": "/api/v2/reconciliationPolicies/{id}"
1767
+ },
1768
+ {
1769
+ "fnName": "deleteReconciliationPolicy",
1770
+ "method": "delete",
1771
+ "path": "/api/v2/reconciliationPolicies/{id}"
1772
+ },
1773
+ {
1774
+ "fnName": "getCollectionReconciliationPolicies",
1775
+ "method": "get",
1776
+ "path": "/api/v2/{collection}/{collectionId}/reconciliationPolicies"
1777
+ },
1778
+ {
1779
+ "fnName": "postCollectionReconciliationPolicy",
1780
+ "method": "post",
1781
+ "path": "/api/v2/{collection}/{collectionId}/reconciliationPolicies"
1782
+ },
1783
+ {
1784
+ "fnName": "getCollectionRestrictedRanges",
1785
+ "method": "get",
1786
+ "path": "/api/v2/{collection}/{collectionId}/restrictedRanges"
1787
+ },
1788
+ {
1789
+ "fnName": "postCollectionRestrictedRange",
1790
+ "method": "post",
1791
+ "path": "/api/v2/{collection}/{collectionId}/restrictedRanges"
1792
+ },
1793
+ {
1794
+ "fnName": "getCollectionRestrictedRange",
1795
+ "method": "get",
1796
+ "path": "/api/v2/{collection}/{collectionId}/restrictedRanges/{id}"
1797
+ },
1798
+ {
1799
+ "fnName": "deleteCollectionRestrictedRange",
1800
+ "method": "delete",
1801
+ "path": "/api/v2/{collection}/{collectionId}/restrictedRanges/{id}"
1802
+ },
1803
+ {
1804
+ "fnName": "getSplits",
1805
+ "method": "get",
1806
+ "path": "/api/v2/splits"
1807
+ },
1808
+ {
1809
+ "fnName": "getSplit",
1810
+ "method": "get",
1811
+ "path": "/api/v2/splits/{id}"
1812
+ },
1813
+ {
1814
+ "fnName": "getCollectionSplits",
1815
+ "method": "get",
1816
+ "path": "/api/v2/{collection}/{collectionId}/splits"
1817
+ },
1818
+ {
1819
+ "fnName": "postCollectionSplit",
1820
+ "method": "post",
1821
+ "path": "/api/v2/{collection}/{collectionId}/splits"
1822
+ },
1823
+ {
1824
+ "fnName": "getTemplateApplications",
1825
+ "method": "get",
1826
+ "path": "/api/v2/templateApplications"
1827
+ },
1828
+ {
1829
+ "fnName": "getTemplateApplication",
1830
+ "method": "get",
1831
+ "path": "/api/v2/templateApplications/{id}"
1832
+ },
1833
+ {
1834
+ "fnName": "getCollectionTemplateApplications",
1835
+ "method": "get",
1836
+ "path": "/api/v2/{collection}/{collectionId}/templateApplications"
1837
+ },
1838
+ {
1839
+ "fnName": "postCollectionTemplateApplication",
1840
+ "method": "post",
1841
+ "path": "/api/v2/{collection}/{collectionId}/templateApplications"
1842
+ },
1843
+ {
1844
+ "fnName": "getTemplateItems",
1845
+ "method": "get",
1846
+ "path": "/api/v2/templateItems"
1847
+ },
1848
+ {
1849
+ "fnName": "getTemplateItem",
1850
+ "method": "get",
1851
+ "path": "/api/v2/templateItems/{id}"
1852
+ },
1853
+ {
1854
+ "fnName": "putTemplateItem",
1855
+ "method": "put",
1856
+ "path": "/api/v2/templateItems/{id}"
1857
+ },
1858
+ {
1859
+ "fnName": "deleteTemplateItem",
1860
+ "method": "delete",
1861
+ "path": "/api/v2/templateItems/{id}"
1862
+ },
1863
+ {
1864
+ "fnName": "getTemplateTemplateItems",
1865
+ "method": "get",
1866
+ "path": "/api/v2/templates/{collectionId}/templateItems"
1867
+ },
1868
+ {
1869
+ "fnName": "postTemplateTemplateItem",
1870
+ "method": "post",
1871
+ "path": "/api/v2/templates/{collectionId}/templateItems"
1872
+ },
1873
+ {
1874
+ "fnName": "getTemplates",
1875
+ "method": "get",
1876
+ "path": "/api/v2/templates"
1877
+ },
1878
+ {
1879
+ "fnName": "getTemplate",
1880
+ "method": "get",
1881
+ "path": "/api/v2/templates/{id}"
1882
+ },
1883
+ {
1884
+ "fnName": "putTemplate",
1885
+ "method": "put",
1886
+ "path": "/api/v2/templates/{id}"
1887
+ },
1888
+ {
1889
+ "fnName": "deleteTemplate",
1890
+ "method": "delete",
1891
+ "path": "/api/v2/templates/{id}"
1892
+ },
1893
+ {
1894
+ "fnName": "getCollectionTemplates",
1895
+ "method": "get",
1896
+ "path": "/api/v2/{collection}/{collectionId}/templates"
1897
+ },
1898
+ {
1899
+ "fnName": "postCollectionTemplate",
1900
+ "method": "post",
1901
+ "path": "/api/v2/{collection}/{collectionId}/templates"
1902
+ },
1903
+ {
1904
+ "fnName": "getCollectionDefaultZones",
1905
+ "method": "get",
1906
+ "path": "/api/v2/{collection}/{collectionId}/defaultZones"
1907
+ },
1908
+ {
1909
+ "fnName": "postCollectionDefaultZone",
1910
+ "method": "post",
1911
+ "path": "/api/v2/{collection}/{collectionId}/defaultZones"
1912
+ },
1913
+ {
1914
+ "fnName": "getCollectionDefaultZone",
1915
+ "method": "get",
1916
+ "path": "/api/v2/{collection}/{collectionId}/defaultZones/{id}"
1917
+ },
1918
+ {
1919
+ "fnName": "deleteCollectionDefaultZone",
1920
+ "method": "delete",
1921
+ "path": "/api/v2/{collection}/{collectionId}/defaultZones/{id}"
1922
+ },
1923
+ {
1924
+ "fnName": "getPolicyItems",
1925
+ "method": "get",
1926
+ "path": "/api/v2/policyItems"
1927
+ },
1928
+ {
1929
+ "fnName": "getPolicyItem",
1930
+ "method": "get",
1931
+ "path": "/api/v2/policyItems/{id}"
1932
+ },
1933
+ {
1934
+ "fnName": "putPolicyItem",
1935
+ "method": "put",
1936
+ "path": "/api/v2/policyItems/{id}"
1937
+ },
1938
+ {
1939
+ "fnName": "deletePolicyItem",
1940
+ "method": "delete",
1941
+ "path": "/api/v2/policyItems/{id}"
1942
+ },
1943
+ {
1944
+ "fnName": "getResponsePolicyPolicyItems",
1945
+ "method": "get",
1946
+ "path": "/api/v2/responsePolicies/{collectionId}/policyItems"
1947
+ },
1948
+ {
1949
+ "fnName": "postResponsePolicyPolicyItem",
1950
+ "method": "post",
1951
+ "path": "/api/v2/responsePolicies/{collectionId}/policyItems"
1952
+ },
1953
+ {
1954
+ "fnName": "getResponsePolicies",
1955
+ "method": "get",
1956
+ "path": "/api/v2/responsePolicies"
1957
+ },
1958
+ {
1959
+ "fnName": "getResponsePolicy",
1960
+ "method": "get",
1961
+ "path": "/api/v2/responsePolicies/{id}"
1962
+ },
1963
+ {
1964
+ "fnName": "putResponsePolicy",
1965
+ "method": "put",
1966
+ "path": "/api/v2/responsePolicies/{id}"
1967
+ },
1968
+ {
1969
+ "fnName": "deleteResponsePolicy",
1970
+ "method": "delete",
1971
+ "path": "/api/v2/responsePolicies/{id}"
1972
+ },
1973
+ {
1974
+ "fnName": "getConfigurationResponsePolicies",
1975
+ "method": "get",
1976
+ "path": "/api/v2/configurations/{collectionId}/responsePolicies"
1977
+ },
1978
+ {
1979
+ "fnName": "postConfigurationResponsePolicy",
1980
+ "method": "post",
1981
+ "path": "/api/v2/configurations/{collectionId}/responsePolicies"
1982
+ },
1983
+ {
1984
+ "fnName": "getCollectionRestrictedZones",
1985
+ "method": "get",
1986
+ "path": "/api/v2/{collection}/{collectionId}/restrictedZones"
1987
+ },
1988
+ {
1989
+ "fnName": "postCollectionRestrictedZone",
1990
+ "method": "post",
1991
+ "path": "/api/v2/{collection}/{collectionId}/restrictedZones"
1992
+ },
1993
+ {
1994
+ "fnName": "getCollectionRestrictedZone",
1995
+ "method": "get",
1996
+ "path": "/api/v2/{collection}/{collectionId}/restrictedZones/{id}"
1997
+ },
1998
+ {
1999
+ "fnName": "deleteCollectionRestrictedZone",
2000
+ "method": "delete",
2001
+ "path": "/api/v2/{collection}/{collectionId}/restrictedZones/{id}"
2002
+ },
2003
+ {
2004
+ "fnName": "getViews",
2005
+ "method": "get",
2006
+ "path": "/api/v2/views"
2007
+ },
2008
+ {
2009
+ "fnName": "getView",
2010
+ "method": "get",
2011
+ "path": "/api/v2/views/{id}"
2012
+ },
2013
+ {
2014
+ "fnName": "putView",
2015
+ "method": "put",
2016
+ "path": "/api/v2/views/{id}"
2017
+ },
2018
+ {
2019
+ "fnName": "deleteView",
2020
+ "method": "delete",
2021
+ "path": "/api/v2/views/{id}"
2022
+ },
2023
+ {
2024
+ "fnName": "getConfigurationViews",
2025
+ "method": "get",
2026
+ "path": "/api/v2/configurations/{collectionId}/views"
2027
+ },
2028
+ {
2029
+ "fnName": "postConfigurationView",
2030
+ "method": "post",
2031
+ "path": "/api/v2/configurations/{collectionId}/views"
2032
+ },
2033
+ {
2034
+ "fnName": "getZones",
2035
+ "method": "get",
2036
+ "path": "/api/v2/zones"
2037
+ },
2038
+ {
2039
+ "fnName": "getZone",
2040
+ "method": "get",
2041
+ "path": "/api/v2/zones/{id}"
2042
+ },
2043
+ {
2044
+ "fnName": "putZone",
2045
+ "method": "put",
2046
+ "path": "/api/v2/zones/{id}"
2047
+ },
2048
+ {
2049
+ "fnName": "deleteZone",
2050
+ "method": "delete",
2051
+ "path": "/api/v2/zones/{id}"
2052
+ },
2053
+ {
2054
+ "fnName": "getCollectionZones",
2055
+ "method": "get",
2056
+ "path": "/api/v2/{collection}/{collectionId}/zones"
2057
+ },
2058
+ {
2059
+ "fnName": "postCollectionZone",
2060
+ "method": "post",
2061
+ "path": "/api/v2/{collection}/{collectionId}/zones"
2062
+ },
2063
+ {
2064
+ "fnName": "getDeployments",
2065
+ "method": "get",
2066
+ "path": "/api/v2/deployments"
2067
+ },
2068
+ {
2069
+ "fnName": "postDeployment",
2070
+ "method": "post",
2071
+ "path": "/api/v2/deployments"
2072
+ },
2073
+ {
2074
+ "fnName": "getDeployment",
2075
+ "method": "get",
2076
+ "path": "/api/v2/deployments/{id}"
2077
+ },
2078
+ {
2079
+ "fnName": "getCollectionDeployments",
2080
+ "method": "get",
2081
+ "path": "/api/v2/{collection}/{collectionId}/deployments"
2082
+ },
2083
+ {
2084
+ "fnName": "postCollectionDeployment",
2085
+ "method": "post",
2086
+ "path": "/api/v2/{collection}/{collectionId}/deployments"
2087
+ },
2088
+ {
2089
+ "fnName": "getInterfaces",
2090
+ "method": "get",
2091
+ "path": "/api/v2/interfaces"
2092
+ },
2093
+ {
2094
+ "fnName": "getInterface",
2095
+ "method": "get",
2096
+ "path": "/api/v2/interfaces/{id}"
2097
+ },
2098
+ {
2099
+ "fnName": "putInterface",
2100
+ "method": "put",
2101
+ "path": "/api/v2/interfaces/{id}"
2102
+ },
2103
+ {
2104
+ "fnName": "deleteInterface",
2105
+ "method": "delete",
2106
+ "path": "/api/v2/interfaces/{id}"
2107
+ },
2108
+ {
2109
+ "fnName": "getDeploymentRoleInterfaces",
2110
+ "method": "get",
2111
+ "path": "/api/v2/deploymentRoles/{collectionId}/interfaces"
2112
+ },
2113
+ {
2114
+ "fnName": "getServerInterfaces",
2115
+ "method": "get",
2116
+ "path": "/api/v2/servers/{collectionId}/interfaces"
2117
+ },
2118
+ {
2119
+ "fnName": "postServerInterface",
2120
+ "method": "post",
2121
+ "path": "/api/v2/servers/{collectionId}/interfaces"
2122
+ },
2123
+ {
2124
+ "fnName": "getServerGroups",
2125
+ "method": "get",
2126
+ "path": "/api/v2/serverGroups"
2127
+ },
2128
+ {
2129
+ "fnName": "getServerGroup",
2130
+ "method": "get",
2131
+ "path": "/api/v2/serverGroups/{id}"
2132
+ },
2133
+ {
2134
+ "fnName": "putServerGroup",
2135
+ "method": "put",
2136
+ "path": "/api/v2/serverGroups/{id}"
2137
+ },
2138
+ {
2139
+ "fnName": "deleteServerGroup",
2140
+ "method": "delete",
2141
+ "path": "/api/v2/serverGroups/{id}"
2142
+ },
2143
+ {
2144
+ "fnName": "getConfigurationServerGroups",
2145
+ "method": "get",
2146
+ "path": "/api/v2/configurations/{collectionId}/serverGroups"
2147
+ },
2148
+ {
2149
+ "fnName": "postConfigurationServerGroup",
2150
+ "method": "post",
2151
+ "path": "/api/v2/configurations/{collectionId}/serverGroups"
2152
+ },
2153
+ {
2154
+ "fnName": "getServers",
2155
+ "method": "get",
2156
+ "path": "/api/v2/servers"
2157
+ },
2158
+ {
2159
+ "fnName": "getServer",
2160
+ "method": "get",
2161
+ "path": "/api/v2/servers/{id}"
2162
+ },
2163
+ {
2164
+ "fnName": "putServer",
2165
+ "method": "put",
2166
+ "path": "/api/v2/servers/{id}"
2167
+ },
2168
+ {
2169
+ "fnName": "deleteServer",
2170
+ "method": "delete",
2171
+ "path": "/api/v2/servers/{id}"
2172
+ },
2173
+ {
2174
+ "fnName": "patchServer",
2175
+ "method": "patch",
2176
+ "path": "/api/v2/servers/{id}"
2177
+ },
2178
+ {
2179
+ "fnName": "getCollectionServers",
2180
+ "method": "get",
2181
+ "path": "/api/v2/{collection}/{collectionId}/servers"
2182
+ },
2183
+ {
2184
+ "fnName": "postCollectionServer",
2185
+ "method": "post",
2186
+ "path": "/api/v2/{collection}/{collectionId}/servers"
2187
+ },
2188
+ {
2189
+ "fnName": "getConfigurationServers",
2190
+ "method": "get",
2191
+ "path": "/api/v2/configurations/{collectionId}/servers"
2192
+ },
2193
+ {
2194
+ "fnName": "postConfigurationServer",
2195
+ "method": "post",
2196
+ "path": "/api/v2/configurations/{collectionId}/servers"
2197
+ },
2198
+ {
2199
+ "fnName": "getDatabaseServers",
2200
+ "method": "get",
2201
+ "path": "/api/v2/databases/{collectionId}/servers"
2202
+ },
2203
+ {
2204
+ "fnName": "postDatabaseServer",
2205
+ "method": "post",
2206
+ "path": "/api/v2/databases/{collectionId}/servers"
2207
+ },
2208
+ {
2209
+ "fnName": "getServerServers",
2210
+ "method": "get",
2211
+ "path": "/api/v2/servers/{collectionId}/servers"
2212
+ },
2213
+ {
2214
+ "fnName": "getCollectionServer",
2215
+ "method": "get",
2216
+ "path": "/api/v2/{collection}/{collectionId}/servers/{id}"
2217
+ },
2218
+ {
2219
+ "fnName": "deleteCollectionServer",
2220
+ "method": "delete",
2221
+ "path": "/api/v2/{collection}/{collectionId}/servers/{id}"
2222
+ },
2223
+ {
2224
+ "fnName": "getDatabaseServer",
2225
+ "method": "get",
2226
+ "path": "/api/v2/databases/{collectionId}/servers/{id}"
2227
+ },
2228
+ {
2229
+ "fnName": "deleteDatabaseServer",
2230
+ "method": "delete",
2231
+ "path": "/api/v2/databases/{collectionId}/servers/{id}"
2232
+ },
2233
+ {
2234
+ "fnName": "patchDatabaseServer",
2235
+ "method": "patch",
2236
+ "path": "/api/v2/databases/{collectionId}/servers/{id}"
2237
+ },
2238
+ {
2239
+ "fnName": "getServerServices",
2240
+ "method": "get",
2241
+ "path": "/api/v2/servers/{collectionId}/services"
2242
+ },
2243
+ {
2244
+ "fnName": "getServerService",
2245
+ "method": "get",
2246
+ "path": "/api/v2/servers/{collectionId}/services/{id}"
2247
+ },
2248
+ {
2249
+ "fnName": "putServerService",
2250
+ "method": "put",
2251
+ "path": "/api/v2/servers/{collectionId}/services/{id}"
2252
+ },
2253
+ {
2254
+ "fnName": "getKeyDistributionCenters",
2255
+ "method": "get",
2256
+ "path": "/api/v2/keyDistributionCenters"
2257
+ },
2258
+ {
2259
+ "fnName": "getKeyDistributionCenter",
2260
+ "method": "get",
2261
+ "path": "/api/v2/keyDistributionCenters/{id}"
2262
+ },
2263
+ {
2264
+ "fnName": "putKeyDistributionCenter",
2265
+ "method": "put",
2266
+ "path": "/api/v2/keyDistributionCenters/{id}"
2267
+ },
2268
+ {
2269
+ "fnName": "deleteKeyDistributionCenter",
2270
+ "method": "delete",
2271
+ "path": "/api/v2/keyDistributionCenters/{id}"
2272
+ },
2273
+ {
2274
+ "fnName": "getRealmKeyDistributionCenters",
2275
+ "method": "get",
2276
+ "path": "/api/v2/realms/{collectionId}/keyDistributionCenters"
2277
+ },
2278
+ {
2279
+ "fnName": "postRealmKeyDistributionCenter",
2280
+ "method": "post",
2281
+ "path": "/api/v2/realms/{collectionId}/keyDistributionCenters"
2282
+ },
2283
+ {
2284
+ "fnName": "getRealms",
2285
+ "method": "get",
2286
+ "path": "/api/v2/realms"
2287
+ },
2288
+ {
2289
+ "fnName": "getRealm",
2290
+ "method": "get",
2291
+ "path": "/api/v2/realms/{id}"
2292
+ },
2293
+ {
2294
+ "fnName": "putRealm",
2295
+ "method": "put",
2296
+ "path": "/api/v2/realms/{id}"
2297
+ },
2298
+ {
2299
+ "fnName": "deleteRealm",
2300
+ "method": "delete",
2301
+ "path": "/api/v2/realms/{id}"
2302
+ },
2303
+ {
2304
+ "fnName": "getConfigurationRealms",
2305
+ "method": "get",
2306
+ "path": "/api/v2/configurations/{collectionId}/realms"
2307
+ },
2308
+ {
2309
+ "fnName": "postConfigurationRealm",
2310
+ "method": "post",
2311
+ "path": "/api/v2/configurations/{collectionId}/realms"
2312
+ },
2313
+ {
2314
+ "fnName": "getServicePrincipals",
2315
+ "method": "get",
2316
+ "path": "/api/v2/servicePrincipals"
2317
+ },
2318
+ {
2319
+ "fnName": "getServicePrincipal",
2320
+ "method": "get",
2321
+ "path": "/api/v2/servicePrincipals/{id}"
2322
+ },
2323
+ {
2324
+ "fnName": "putServicePrincipal",
2325
+ "method": "put",
2326
+ "path": "/api/v2/servicePrincipals/{id}"
2327
+ },
2328
+ {
2329
+ "fnName": "deleteServicePrincipal",
2330
+ "method": "delete",
2331
+ "path": "/api/v2/servicePrincipals/{id}"
2332
+ },
2333
+ {
2334
+ "fnName": "patchServicePrincipal",
2335
+ "method": "patch",
2336
+ "path": "/api/v2/servicePrincipals/{id}"
2337
+ },
2338
+ {
2339
+ "fnName": "getRealmServicePrincipals",
2340
+ "method": "get",
2341
+ "path": "/api/v2/realms/{collectionId}/servicePrincipals"
2342
+ },
2343
+ {
2344
+ "fnName": "postRealmServicePrincipal",
2345
+ "method": "post",
2346
+ "path": "/api/v2/realms/{collectionId}/servicePrincipals"
2347
+ },
2348
+ {
2349
+ "fnName": "getLocationAnnotatedResources",
2350
+ "method": "get",
2351
+ "path": "/api/v2/locations/{collectionId}/annotatedResources"
2352
+ },
2353
+ {
2354
+ "fnName": "postLocationAnnotatedResource",
2355
+ "method": "post",
2356
+ "path": "/api/v2/locations/{collectionId}/annotatedResources"
2357
+ },
2358
+ {
2359
+ "fnName": "getLocationAnnotatedResource",
2360
+ "method": "get",
2361
+ "path": "/api/v2/locations/{collectionId}/annotatedResources/{id}"
2362
+ },
2363
+ {
2364
+ "fnName": "deleteLocationAnnotatedResource",
2365
+ "method": "delete",
2366
+ "path": "/api/v2/locations/{collectionId}/annotatedResources/{id}"
2367
+ },
2368
+ {
2369
+ "fnName": "getLocations",
2370
+ "method": "get",
2371
+ "path": "/api/v2/locations"
2372
+ },
2373
+ {
2374
+ "fnName": "getLocation",
2375
+ "method": "get",
2376
+ "path": "/api/v2/locations/{id}"
2377
+ },
2378
+ {
2379
+ "fnName": "putLocation",
2380
+ "method": "put",
2381
+ "path": "/api/v2/locations/{id}"
2382
+ },
2383
+ {
2384
+ "fnName": "deleteLocation",
2385
+ "method": "delete",
2386
+ "path": "/api/v2/locations/{id}"
2387
+ },
2388
+ {
2389
+ "fnName": "getLocationLocations",
2390
+ "method": "get",
2391
+ "path": "/api/v2/locations/{collectionId}/locations"
2392
+ },
2393
+ {
2394
+ "fnName": "postLocationLocation",
2395
+ "method": "post",
2396
+ "path": "/api/v2/locations/{collectionId}/locations"
2397
+ },
2398
+ {
2399
+ "fnName": "getClientIdentifiers",
2400
+ "method": "get",
2401
+ "path": "/api/v2/clientIdentifiers"
2402
+ },
2403
+ {
2404
+ "fnName": "getClientIdentifier",
2405
+ "method": "get",
2406
+ "path": "/api/v2/clientIdentifiers/{id}"
2407
+ },
2408
+ {
2409
+ "fnName": "getConfigurationClientIdentifiers",
2410
+ "method": "get",
2411
+ "path": "/api/v2/configurations/{collectionId}/clientIdentifiers"
2412
+ },
2413
+ {
2414
+ "fnName": "getMacAddresses",
2415
+ "method": "get",
2416
+ "path": "/api/v2/macAddresses"
2417
+ },
2418
+ {
2419
+ "fnName": "getMacAddress",
2420
+ "method": "get",
2421
+ "path": "/api/v2/macAddresses/{id}"
2422
+ },
2423
+ {
2424
+ "fnName": "putMacAddress",
2425
+ "method": "put",
2426
+ "path": "/api/v2/macAddresses/{id}"
2427
+ },
2428
+ {
2429
+ "fnName": "deleteMacAddress",
2430
+ "method": "delete",
2431
+ "path": "/api/v2/macAddresses/{id}"
2432
+ },
2433
+ {
2434
+ "fnName": "getConfigurationMacAddresses",
2435
+ "method": "get",
2436
+ "path": "/api/v2/configurations/{collectionId}/macAddresses"
2437
+ },
2438
+ {
2439
+ "fnName": "postConfigurationMacAddress",
2440
+ "method": "post",
2441
+ "path": "/api/v2/configurations/{collectionId}/macAddresses"
2442
+ },
2443
+ {
2444
+ "fnName": "getMacPoolMacAddresses",
2445
+ "method": "get",
2446
+ "path": "/api/v2/macPools/{collectionId}/macAddresses"
2447
+ },
2448
+ {
2449
+ "fnName": "postMacPoolMacAddress",
2450
+ "method": "post",
2451
+ "path": "/api/v2/macPools/{collectionId}/macAddresses"
2452
+ },
2453
+ {
2454
+ "fnName": "getMacPoolMacAddress",
2455
+ "method": "get",
2456
+ "path": "/api/v2/macPools/{collectionId}/macAddresses/{id}"
2457
+ },
2458
+ {
2459
+ "fnName": "deleteMacPoolMacAddress",
2460
+ "method": "delete",
2461
+ "path": "/api/v2/macPools/{collectionId}/macAddresses/{id}"
2462
+ },
2463
+ {
2464
+ "fnName": "getMacPools",
2465
+ "method": "get",
2466
+ "path": "/api/v2/macPools"
2467
+ },
2468
+ {
2469
+ "fnName": "getMacPool",
2470
+ "method": "get",
2471
+ "path": "/api/v2/macPools/{id}"
2472
+ },
2473
+ {
2474
+ "fnName": "putMacPool",
2475
+ "method": "put",
2476
+ "path": "/api/v2/macPools/{id}"
2477
+ },
2478
+ {
2479
+ "fnName": "deleteMacPool",
2480
+ "method": "delete",
2481
+ "path": "/api/v2/macPools/{id}"
2482
+ },
2483
+ {
2484
+ "fnName": "getConfigurationMacPools",
2485
+ "method": "get",
2486
+ "path": "/api/v2/configurations/{collectionId}/macPools"
2487
+ },
2488
+ {
2489
+ "fnName": "postConfigurationMacPool",
2490
+ "method": "post",
2491
+ "path": "/api/v2/configurations/{collectionId}/macPools"
2492
+ },
2493
+ {
2494
+ "fnName": "getNamingPolicies",
2495
+ "method": "get",
2496
+ "path": "/api/v2/namingPolicies"
2497
+ },
2498
+ {
2499
+ "fnName": "postNamingPolicy",
2500
+ "method": "post",
2501
+ "path": "/api/v2/namingPolicies"
2502
+ },
2503
+ {
2504
+ "fnName": "getNamingPolicy",
2505
+ "method": "get",
2506
+ "path": "/api/v2/namingPolicies/{id}"
2507
+ },
2508
+ {
2509
+ "fnName": "putNamingPolicy",
2510
+ "method": "put",
2511
+ "path": "/api/v2/namingPolicies/{id}"
2512
+ },
2513
+ {
2514
+ "fnName": "deleteNamingPolicy",
2515
+ "method": "delete",
2516
+ "path": "/api/v2/namingPolicies/{id}"
2517
+ },
2518
+ {
2519
+ "fnName": "getCollectionNamingPolicies",
2520
+ "method": "get",
2521
+ "path": "/api/v2/{collection}/{collectionId}/namingPolicies"
2522
+ },
2523
+ {
2524
+ "fnName": "postCollectionNamingPolicy",
2525
+ "method": "post",
2526
+ "path": "/api/v2/{collection}/{collectionId}/namingPolicies"
2527
+ },
2528
+ {
2529
+ "fnName": "getCollectionNamingPolicy",
2530
+ "method": "get",
2531
+ "path": "/api/v2/{collection}/{collectionId}/namingPolicies/{id}"
2532
+ },
2533
+ {
2534
+ "fnName": "deleteCollectionNamingPolicy",
2535
+ "method": "delete",
2536
+ "path": "/api/v2/{collection}/{collectionId}/namingPolicies/{id}"
2537
+ },
2538
+ {
2539
+ "fnName": "getNamingPolicyRestrictions",
2540
+ "method": "get",
2541
+ "path": "/api/v2/namingPolicyRestrictions"
2542
+ },
2543
+ {
2544
+ "fnName": "postNamingPolicyRestriction",
2545
+ "method": "post",
2546
+ "path": "/api/v2/namingPolicyRestrictions"
2547
+ },
2548
+ {
2549
+ "fnName": "getNamingPolicyRestriction",
2550
+ "method": "get",
2551
+ "path": "/api/v2/namingPolicyRestrictions/{id}"
2552
+ },
2553
+ {
2554
+ "fnName": "putNamingPolicyRestriction",
2555
+ "method": "put",
2556
+ "path": "/api/v2/namingPolicyRestrictions/{id}"
2557
+ },
2558
+ {
2559
+ "fnName": "deleteNamingPolicyRestriction",
2560
+ "method": "delete",
2561
+ "path": "/api/v2/namingPolicyRestrictions/{id}"
2562
+ },
2563
+ {
2564
+ "fnName": "getNamingPolicyValues",
2565
+ "method": "get",
2566
+ "path": "/api/v2/namingPolicyValues"
2567
+ },
2568
+ {
2569
+ "fnName": "postNamingPolicyValue",
2570
+ "method": "post",
2571
+ "path": "/api/v2/namingPolicyValues"
2572
+ },
2573
+ {
2574
+ "fnName": "getNamingPolicyValue",
2575
+ "method": "get",
2576
+ "path": "/api/v2/namingPolicyValues/{id}"
2577
+ },
2578
+ {
2579
+ "fnName": "putNamingPolicyValue",
2580
+ "method": "put",
2581
+ "path": "/api/v2/namingPolicyValues/{id}"
2582
+ },
2583
+ {
2584
+ "fnName": "deleteNamingPolicyValue",
2585
+ "method": "delete",
2586
+ "path": "/api/v2/namingPolicyValues/{id}"
2587
+ },
2588
+ {
2589
+ "fnName": "getNamingPolicyPolicyRestrictions",
2590
+ "method": "get",
2591
+ "path": "/api/v2/namingPolicies/{collectionId}/policyRestrictions"
2592
+ },
2593
+ {
2594
+ "fnName": "getNamingPolicyPolicyRestriction",
2595
+ "method": "get",
2596
+ "path": "/api/v2/namingPolicies/{collectionId}/policyRestrictions/{id}"
2597
+ },
2598
+ {
2599
+ "fnName": "getNamingPolicyPolicyValues",
2600
+ "method": "get",
2601
+ "path": "/api/v2/namingPolicies/{collectionId}/policyValues"
2602
+ },
2603
+ {
2604
+ "fnName": "getNamingPolicyPolicyValue",
2605
+ "method": "get",
2606
+ "path": "/api/v2/namingPolicies/{collectionId}/policyValues/{id}"
2607
+ },
2608
+ {
2609
+ "fnName": "getDeploymentAddedRecords",
2610
+ "method": "get",
2611
+ "path": "/api/v2/deployments/{collectionId}/addedRecords"
2612
+ },
2613
+ {
2614
+ "fnName": "getDeploymentAddedRecord",
2615
+ "method": "get",
2616
+ "path": "/api/v2/deployments/{collectionId}/addedRecords/{id}"
2617
+ },
2618
+ {
2619
+ "fnName": "getDeploymentDeletedRecords",
2620
+ "method": "get",
2621
+ "path": "/api/v2/deployments/{collectionId}/deletedRecords"
2622
+ },
2623
+ {
2624
+ "fnName": "getDeploymentDeletedRecord",
2625
+ "method": "get",
2626
+ "path": "/api/v2/deployments/{collectionId}/deletedRecords/{id}"
2627
+ },
2628
+ {
2629
+ "fnName": "getResourceRecordDependentRecords",
2630
+ "method": "get",
2631
+ "path": "/api/v2/resourceRecords/{collectionId}/dependentRecords"
2632
+ },
2633
+ {
2634
+ "fnName": "getResourceRecordDependentRecord",
2635
+ "method": "get",
2636
+ "path": "/api/v2/resourceRecords/{collectionId}/dependentRecords/{id}"
2637
+ },
2638
+ {
2639
+ "fnName": "getResourceRecords",
2640
+ "method": "get",
2641
+ "path": "/api/v2/resourceRecords"
2642
+ },
2643
+ {
2644
+ "fnName": "getResourceRecord",
2645
+ "method": "get",
2646
+ "path": "/api/v2/resourceRecords/{id}"
2647
+ },
2648
+ {
2649
+ "fnName": "putResourceRecord",
2650
+ "method": "put",
2651
+ "path": "/api/v2/resourceRecords/{id}"
2652
+ },
2653
+ {
2654
+ "fnName": "deleteResourceRecord",
2655
+ "method": "delete",
2656
+ "path": "/api/v2/resourceRecords/{id}"
2657
+ },
2658
+ {
2659
+ "fnName": "getAddressResourceRecords",
2660
+ "method": "get",
2661
+ "path": "/api/v2/addresses/{collectionId}/resourceRecords"
2662
+ },
2663
+ {
2664
+ "fnName": "postAddressResourceRecord",
2665
+ "method": "post",
2666
+ "path": "/api/v2/addresses/{collectionId}/resourceRecords"
2667
+ },
2668
+ {
2669
+ "fnName": "getCollectionResourceRecords",
2670
+ "method": "get",
2671
+ "path": "/api/v2/{collection}/{collectionId}/resourceRecords"
2672
+ },
2673
+ {
2674
+ "fnName": "postCollectionResourceRecord",
2675
+ "method": "post",
2676
+ "path": "/api/v2/{collection}/{collectionId}/resourceRecords"
2677
+ },
2678
+ {
2679
+ "fnName": "getAddressResourceRecord",
2680
+ "method": "get",
2681
+ "path": "/api/v2/addresses/{collectionId}/resourceRecords/{id}"
2682
+ },
2683
+ {
2684
+ "fnName": "deleteAddressResourceRecord",
2685
+ "method": "delete",
2686
+ "path": "/api/v2/addresses/{collectionId}/resourceRecords/{id}"
2687
+ },
2688
+ {
2689
+ "fnName": "getDeploymentUpdatedRecords",
2690
+ "method": "get",
2691
+ "path": "/api/v2/deployments/{collectionId}/updatedRecords"
2692
+ },
2693
+ {
2694
+ "fnName": "getDeploymentUpdatedRecord",
2695
+ "method": "get",
2696
+ "path": "/api/v2/deployments/{collectionId}/updatedRecords/{id}"
2697
+ },
2698
+ {
2699
+ "fnName": "getTagSharedResources",
2700
+ "method": "get",
2701
+ "path": "/api/v2/tags/{collectionId}/sharedResources"
2702
+ },
2703
+ {
2704
+ "fnName": "postTagSharedResource",
2705
+ "method": "post",
2706
+ "path": "/api/v2/tags/{collectionId}/sharedResources"
2707
+ },
2708
+ {
2709
+ "fnName": "deleteTagSharedResource",
2710
+ "method": "delete",
2711
+ "path": "/api/v2/tags/{collectionId}/sharedResources/{id}"
2712
+ },
2713
+ {
2714
+ "fnName": "getTagGroups",
2715
+ "method": "get",
2716
+ "path": "/api/v2/tagGroups"
2717
+ },
2718
+ {
2719
+ "fnName": "postTagGroup",
2720
+ "method": "post",
2721
+ "path": "/api/v2/tagGroups"
2722
+ },
2723
+ {
2724
+ "fnName": "getTagGroup",
2725
+ "method": "get",
2726
+ "path": "/api/v2/tagGroups/{id}"
2727
+ },
2728
+ {
2729
+ "fnName": "putTagGroup",
2730
+ "method": "put",
2731
+ "path": "/api/v2/tagGroups/{id}"
2732
+ },
2733
+ {
2734
+ "fnName": "deleteTagGroup",
2735
+ "method": "delete",
2736
+ "path": "/api/v2/tagGroups/{id}"
2737
+ },
2738
+ {
2739
+ "fnName": "getTagTaggedResources",
2740
+ "method": "get",
2741
+ "path": "/api/v2/tags/{collectionId}/taggedResources"
2742
+ },
2743
+ {
2744
+ "fnName": "postTagTaggedResource",
2745
+ "method": "post",
2746
+ "path": "/api/v2/tags/{collectionId}/taggedResources"
2747
+ },
2748
+ {
2749
+ "fnName": "getTagTaggedResource",
2750
+ "method": "get",
2751
+ "path": "/api/v2/tags/{collectionId}/taggedResources/{id}"
2752
+ },
2753
+ {
2754
+ "fnName": "deleteTagTaggedResource",
2755
+ "method": "delete",
2756
+ "path": "/api/v2/tags/{collectionId}/taggedResources/{id}"
2757
+ },
2758
+ {
2759
+ "fnName": "getTags",
2760
+ "method": "get",
2761
+ "path": "/api/v2/tags"
2762
+ },
2763
+ {
2764
+ "fnName": "getTag",
2765
+ "method": "get",
2766
+ "path": "/api/v2/tags/{id}"
2767
+ },
2768
+ {
2769
+ "fnName": "putTag",
2770
+ "method": "put",
2771
+ "path": "/api/v2/tags/{id}"
2772
+ },
2773
+ {
2774
+ "fnName": "deleteTag",
2775
+ "method": "delete",
2776
+ "path": "/api/v2/tags/{id}"
2777
+ },
2778
+ {
2779
+ "fnName": "getCollectionTags",
2780
+ "method": "get",
2781
+ "path": "/api/v2/{collection}/{collectionId}/tags"
2782
+ },
2783
+ {
2784
+ "fnName": "postCollectionTag",
2785
+ "method": "post",
2786
+ "path": "/api/v2/{collection}/{collectionId}/tags"
2787
+ },
2788
+ {
2789
+ "fnName": "getTagGroupTags",
2790
+ "method": "get",
2791
+ "path": "/api/v2/tagGroups/{collectionId}/tags"
2792
+ },
2793
+ {
2794
+ "fnName": "postTagGroupTag",
2795
+ "method": "post",
2796
+ "path": "/api/v2/tagGroups/{collectionId}/tags"
2797
+ },
2798
+ {
2799
+ "fnName": "getTagTags",
2800
+ "method": "get",
2801
+ "path": "/api/v2/tags/{collectionId}/tags"
2802
+ },
2803
+ {
2804
+ "fnName": "postTagTag",
2805
+ "method": "post",
2806
+ "path": "/api/v2/tags/{collectionId}/tags"
2807
+ },
2808
+ {
2809
+ "fnName": "getCollectionTag",
2810
+ "method": "get",
2811
+ "path": "/api/v2/{collection}/{collectionId}/tags/{id}"
2812
+ },
2813
+ {
2814
+ "fnName": "deleteCollectionTag",
2815
+ "method": "delete",
2816
+ "path": "/api/v2/{collection}/{collectionId}/tags/{id}"
2817
+ },
2818
+ {
2819
+ "fnName": "getUserTasks",
2820
+ "method": "get",
2821
+ "path": "/api/v2/users/{collectionId}/tasks"
2822
+ },
2823
+ {
2824
+ "fnName": "postUserTask",
2825
+ "method": "post",
2826
+ "path": "/api/v2/users/{collectionId}/tasks"
2827
+ },
2828
+ {
2829
+ "fnName": "getUserTask",
2830
+ "method": "get",
2831
+ "path": "/api/v2/users/{collectionId}/tasks/{id}"
2832
+ },
2833
+ {
2834
+ "fnName": "putUserTask",
2835
+ "method": "put",
2836
+ "path": "/api/v2/users/{collectionId}/tasks/{id}"
2837
+ },
2838
+ {
2839
+ "fnName": "deleteUserTask",
2840
+ "method": "delete",
2841
+ "path": "/api/v2/users/{collectionId}/tasks/{id}"
2842
+ },
2843
+ {
2844
+ "fnName": "getFiles",
2845
+ "method": "get",
2846
+ "path": "/api/v2/files"
2847
+ },
2848
+ {
2849
+ "fnName": "getFile",
2850
+ "method": "get",
2851
+ "path": "/api/v2/files/{id}"
2852
+ },
2853
+ {
2854
+ "fnName": "putFile",
2855
+ "method": "put",
2856
+ "path": "/api/v2/files/{id}"
2857
+ },
2858
+ {
2859
+ "fnName": "deleteFile",
2860
+ "method": "delete",
2861
+ "path": "/api/v2/files/{id}"
2862
+ },
2863
+ {
2864
+ "fnName": "getCollectionFiles",
2865
+ "method": "get",
2866
+ "path": "/api/v2/{collection}/{collectionId}/files"
2867
+ },
2868
+ {
2869
+ "fnName": "postCollectionFile",
2870
+ "method": "post",
2871
+ "path": "/api/v2/{collection}/{collectionId}/files"
2872
+ },
2873
+ {
2874
+ "fnName": "getTftpGroups",
2875
+ "method": "get",
2876
+ "path": "/api/v2/tftpGroups"
2877
+ },
2878
+ {
2879
+ "fnName": "getTftpGroup",
2880
+ "method": "get",
2881
+ "path": "/api/v2/tftpGroups/{id}"
2882
+ },
2883
+ {
2884
+ "fnName": "putTftpGroup",
2885
+ "method": "put",
2886
+ "path": "/api/v2/tftpGroups/{id}"
2887
+ },
2888
+ {
2889
+ "fnName": "deleteTftpGroup",
2890
+ "method": "delete",
2891
+ "path": "/api/v2/tftpGroups/{id}"
2892
+ },
2893
+ {
2894
+ "fnName": "getConfigurationTftpGroups",
2895
+ "method": "get",
2896
+ "path": "/api/v2/configurations/{collectionId}/tftpGroups"
2897
+ },
2898
+ {
2899
+ "fnName": "postConfigurationTftpGroup",
2900
+ "method": "post",
2901
+ "path": "/api/v2/configurations/{collectionId}/tftpGroups"
2902
+ }
2903
+ ],
2904
+ "errors": [],
2905
+ "warnings": [],
2906
+ "callsTotal": 477,
2907
+ "callsConverted": 477,
2908
+ "no_mockdata_num": 477
2909
+ }
2910
+ }