@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,1964 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getAddresses",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/api/v2/addresses?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getAddress",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "putAddress",
47
+ "protocol": "REST",
48
+ "method": "PUT",
49
+ "entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": false,
54
+ "requestDatatype": "JSON",
55
+ "responseDatatype": "JSON",
56
+ "headers": {},
57
+ "responseObjects": [
58
+ {
59
+ "type": "default",
60
+ "key": "",
61
+ "mockFile": ""
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "deleteAddress",
67
+ "protocol": "REST",
68
+ "method": "DELETE",
69
+ "entitypath": "{base_path}/{version}/api/v2/addresses/{pathv1}?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "getCollectionAddresses",
87
+ "protocol": "REST",
88
+ "method": "GET",
89
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/addresses?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "sendGetBody": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": ""
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "postCollectionAddress",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/addresses?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "getNetworkAddresses",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/addresses?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "sendGetBody": false,
136
+ "requestDatatype": "JSON",
137
+ "responseDatatype": "JSON",
138
+ "headers": {},
139
+ "responseObjects": [
140
+ {
141
+ "type": "default",
142
+ "key": "",
143
+ "mockFile": ""
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "postNetworkAddress",
149
+ "protocol": "REST",
150
+ "method": "POST",
151
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/addresses?{query}",
152
+ "requestSchema": "schema.json",
153
+ "responseSchema": "schema.json",
154
+ "timeout": 0,
155
+ "sendEmpty": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "getCollectionAddress",
169
+ "protocol": "REST",
170
+ "method": "GET",
171
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/addresses/{pathv3}?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "sendGetBody": false,
177
+ "requestDatatype": "JSON",
178
+ "responseDatatype": "JSON",
179
+ "headers": {},
180
+ "responseObjects": [
181
+ {
182
+ "type": "default",
183
+ "key": "",
184
+ "mockFile": ""
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "deleteCollectionAddress",
190
+ "protocol": "REST",
191
+ "method": "DELETE",
192
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/addresses/{pathv3}?{query}",
193
+ "requestSchema": "schema.json",
194
+ "responseSchema": "schema.json",
195
+ "timeout": 0,
196
+ "sendEmpty": false,
197
+ "requestDatatype": "JSON",
198
+ "responseDatatype": "JSON",
199
+ "headers": {},
200
+ "responseObjects": [
201
+ {
202
+ "type": "default",
203
+ "key": "",
204
+ "mockFile": ""
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "name": "getCollectionAppliedResources",
210
+ "protocol": "REST",
211
+ "method": "GET",
212
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/appliedResources?{query}",
213
+ "requestSchema": "schema.json",
214
+ "responseSchema": "schema.json",
215
+ "timeout": 0,
216
+ "sendEmpty": false,
217
+ "sendGetBody": false,
218
+ "requestDatatype": "JSON",
219
+ "responseDatatype": "JSON",
220
+ "headers": {},
221
+ "responseObjects": [
222
+ {
223
+ "type": "default",
224
+ "key": "",
225
+ "mockFile": ""
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "postCollectionAppliedResource",
231
+ "protocol": "REST",
232
+ "method": "POST",
233
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/appliedResources?{query}",
234
+ "requestSchema": "schema.json",
235
+ "responseSchema": "schema.json",
236
+ "timeout": 0,
237
+ "sendEmpty": false,
238
+ "requestDatatype": "JSON",
239
+ "responseDatatype": "JSON",
240
+ "headers": {},
241
+ "responseObjects": [
242
+ {
243
+ "type": "default",
244
+ "key": "",
245
+ "mockFile": ""
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "name": "getCollectionAppliedResource",
251
+ "protocol": "REST",
252
+ "method": "GET",
253
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/appliedResources/{pathv3}?{query}",
254
+ "requestSchema": "schema.json",
255
+ "responseSchema": "schema.json",
256
+ "timeout": 0,
257
+ "sendEmpty": false,
258
+ "sendGetBody": false,
259
+ "requestDatatype": "JSON",
260
+ "responseDatatype": "JSON",
261
+ "headers": {},
262
+ "responseObjects": [
263
+ {
264
+ "type": "default",
265
+ "key": "",
266
+ "mockFile": ""
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "name": "deleteCollectionAppliedResource",
272
+ "protocol": "REST",
273
+ "method": "DELETE",
274
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/appliedResources/{pathv3}?{query}",
275
+ "requestSchema": "schema.json",
276
+ "responseSchema": "schema.json",
277
+ "timeout": 0,
278
+ "sendEmpty": false,
279
+ "requestDatatype": "JSON",
280
+ "responseDatatype": "JSON",
281
+ "headers": {},
282
+ "responseObjects": [
283
+ {
284
+ "type": "default",
285
+ "key": "",
286
+ "mockFile": ""
287
+ }
288
+ ]
289
+ },
290
+ {
291
+ "name": "getBlocks",
292
+ "protocol": "REST",
293
+ "method": "GET",
294
+ "entitypath": "{base_path}/{version}/api/v2/blocks?{query}",
295
+ "requestSchema": "schema.json",
296
+ "responseSchema": "schema.json",
297
+ "timeout": 0,
298
+ "sendEmpty": false,
299
+ "sendGetBody": false,
300
+ "requestDatatype": "JSON",
301
+ "responseDatatype": "JSON",
302
+ "headers": {},
303
+ "responseObjects": [
304
+ {
305
+ "type": "default",
306
+ "key": "",
307
+ "mockFile": ""
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "name": "getBlock",
313
+ "protocol": "REST",
314
+ "method": "GET",
315
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}?{query}",
316
+ "requestSchema": "schema.json",
317
+ "responseSchema": "schema.json",
318
+ "timeout": 0,
319
+ "sendEmpty": false,
320
+ "sendGetBody": false,
321
+ "requestDatatype": "JSON",
322
+ "responseDatatype": "JSON",
323
+ "headers": {},
324
+ "responseObjects": [
325
+ {
326
+ "type": "default",
327
+ "key": "",
328
+ "mockFile": ""
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "name": "putBlock",
334
+ "protocol": "REST",
335
+ "method": "PUT",
336
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}?{query}",
337
+ "requestSchema": "schema.json",
338
+ "responseSchema": "schema.json",
339
+ "timeout": 0,
340
+ "sendEmpty": false,
341
+ "requestDatatype": "JSON",
342
+ "responseDatatype": "JSON",
343
+ "headers": {},
344
+ "responseObjects": [
345
+ {
346
+ "type": "default",
347
+ "key": "",
348
+ "mockFile": ""
349
+ }
350
+ ]
351
+ },
352
+ {
353
+ "name": "deleteBlock",
354
+ "protocol": "REST",
355
+ "method": "DELETE",
356
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}?{query}",
357
+ "requestSchema": "schema.json",
358
+ "responseSchema": "schema.json",
359
+ "timeout": 0,
360
+ "sendEmpty": false,
361
+ "requestDatatype": "JSON",
362
+ "responseDatatype": "JSON",
363
+ "headers": {},
364
+ "responseObjects": [
365
+ {
366
+ "type": "default",
367
+ "key": "",
368
+ "mockFile": ""
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "name": "getBlockBlocks",
374
+ "protocol": "REST",
375
+ "method": "GET",
376
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}/blocks?{query}",
377
+ "requestSchema": "schema.json",
378
+ "responseSchema": "schema.json",
379
+ "timeout": 0,
380
+ "sendEmpty": false,
381
+ "sendGetBody": false,
382
+ "requestDatatype": "JSON",
383
+ "responseDatatype": "JSON",
384
+ "headers": {},
385
+ "responseObjects": [
386
+ {
387
+ "type": "default",
388
+ "key": "",
389
+ "mockFile": ""
390
+ }
391
+ ]
392
+ },
393
+ {
394
+ "name": "postBlockBlock",
395
+ "protocol": "REST",
396
+ "method": "POST",
397
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}/blocks?{query}",
398
+ "requestSchema": "schema.json",
399
+ "responseSchema": "schema.json",
400
+ "timeout": 0,
401
+ "sendEmpty": false,
402
+ "requestDatatype": "JSON",
403
+ "responseDatatype": "JSON",
404
+ "headers": {},
405
+ "responseObjects": [
406
+ {
407
+ "type": "default",
408
+ "key": "",
409
+ "mockFile": ""
410
+ }
411
+ ]
412
+ },
413
+ {
414
+ "name": "getConfigurationBlocks",
415
+ "protocol": "REST",
416
+ "method": "GET",
417
+ "entitypath": "{base_path}/{version}/api/v2/configurations/{pathv1}/blocks?{query}",
418
+ "requestSchema": "schema.json",
419
+ "responseSchema": "schema.json",
420
+ "timeout": 0,
421
+ "sendEmpty": false,
422
+ "sendGetBody": false,
423
+ "requestDatatype": "JSON",
424
+ "responseDatatype": "JSON",
425
+ "headers": {},
426
+ "responseObjects": [
427
+ {
428
+ "type": "default",
429
+ "key": "",
430
+ "mockFile": ""
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "name": "postConfigurationBlock",
436
+ "protocol": "REST",
437
+ "method": "POST",
438
+ "entitypath": "{base_path}/{version}/api/v2/configurations/{pathv1}/blocks?{query}",
439
+ "requestSchema": "schema.json",
440
+ "responseSchema": "schema.json",
441
+ "timeout": 0,
442
+ "sendEmpty": false,
443
+ "requestDatatype": "JSON",
444
+ "responseDatatype": "JSON",
445
+ "headers": {},
446
+ "responseObjects": [
447
+ {
448
+ "type": "default",
449
+ "key": "",
450
+ "mockFile": ""
451
+ }
452
+ ]
453
+ },
454
+ {
455
+ "name": "getMergeBlocks",
456
+ "protocol": "REST",
457
+ "method": "GET",
458
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/blocks?{query}",
459
+ "requestSchema": "schema.json",
460
+ "responseSchema": "schema.json",
461
+ "timeout": 0,
462
+ "sendEmpty": false,
463
+ "sendGetBody": false,
464
+ "requestDatatype": "JSON",
465
+ "responseDatatype": "JSON",
466
+ "headers": {},
467
+ "responseObjects": [
468
+ {
469
+ "type": "default",
470
+ "key": "",
471
+ "mockFile": ""
472
+ }
473
+ ]
474
+ },
475
+ {
476
+ "name": "getSplitBlocks",
477
+ "protocol": "REST",
478
+ "method": "GET",
479
+ "entitypath": "{base_path}/{version}/api/v2/splits/{pathv1}/blocks?{query}",
480
+ "requestSchema": "schema.json",
481
+ "responseSchema": "schema.json",
482
+ "timeout": 0,
483
+ "sendEmpty": false,
484
+ "sendGetBody": false,
485
+ "requestDatatype": "JSON",
486
+ "responseDatatype": "JSON",
487
+ "headers": {},
488
+ "responseObjects": [
489
+ {
490
+ "type": "default",
491
+ "key": "",
492
+ "mockFile": ""
493
+ }
494
+ ]
495
+ },
496
+ {
497
+ "name": "getMergeBlock",
498
+ "protocol": "REST",
499
+ "method": "GET",
500
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/blocks/{pathv2}?{query}",
501
+ "requestSchema": "schema.json",
502
+ "responseSchema": "schema.json",
503
+ "timeout": 0,
504
+ "sendEmpty": false,
505
+ "sendGetBody": false,
506
+ "requestDatatype": "JSON",
507
+ "responseDatatype": "JSON",
508
+ "headers": {},
509
+ "responseObjects": [
510
+ {
511
+ "type": "default",
512
+ "key": "",
513
+ "mockFile": ""
514
+ }
515
+ ]
516
+ },
517
+ {
518
+ "name": "getSplitBlock",
519
+ "protocol": "REST",
520
+ "method": "GET",
521
+ "entitypath": "{base_path}/{version}/api/v2/splits/{pathv1}/blocks/{pathv2}?{query}",
522
+ "requestSchema": "schema.json",
523
+ "responseSchema": "schema.json",
524
+ "timeout": 0,
525
+ "sendEmpty": false,
526
+ "sendGetBody": false,
527
+ "requestDatatype": "JSON",
528
+ "responseDatatype": "JSON",
529
+ "headers": {},
530
+ "responseObjects": [
531
+ {
532
+ "type": "default",
533
+ "key": "",
534
+ "mockFile": ""
535
+ }
536
+ ]
537
+ },
538
+ {
539
+ "name": "getTemplateConflictingResources",
540
+ "protocol": "REST",
541
+ "method": "GET",
542
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}/conflictingResources?{query}",
543
+ "requestSchema": "schema.json",
544
+ "responseSchema": "schema.json",
545
+ "timeout": 0,
546
+ "sendEmpty": false,
547
+ "sendGetBody": false,
548
+ "requestDatatype": "JSON",
549
+ "responseDatatype": "JSON",
550
+ "headers": {},
551
+ "responseObjects": [
552
+ {
553
+ "type": "default",
554
+ "key": "",
555
+ "mockFile": ""
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "name": "getTemplateConflictingResource",
561
+ "protocol": "REST",
562
+ "method": "GET",
563
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}/conflictingResources/{pathv2}?{query}",
564
+ "requestSchema": "schema.json",
565
+ "responseSchema": "schema.json",
566
+ "timeout": 0,
567
+ "sendEmpty": false,
568
+ "sendGetBody": false,
569
+ "requestDatatype": "JSON",
570
+ "responseDatatype": "JSON",
571
+ "headers": {},
572
+ "responseObjects": [
573
+ {
574
+ "type": "default",
575
+ "key": "",
576
+ "mockFile": ""
577
+ }
578
+ ]
579
+ },
580
+ {
581
+ "name": "getReconciliationPolicyDiscoveredDevices",
582
+ "protocol": "REST",
583
+ "method": "GET",
584
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies/{pathv1}/discoveredDevices?{query}",
585
+ "requestSchema": "schema.json",
586
+ "responseSchema": "schema.json",
587
+ "timeout": 0,
588
+ "sendEmpty": false,
589
+ "sendGetBody": false,
590
+ "requestDatatype": "JSON",
591
+ "responseDatatype": "JSON",
592
+ "headers": {},
593
+ "responseObjects": [
594
+ {
595
+ "type": "default",
596
+ "key": "",
597
+ "mockFile": ""
598
+ }
599
+ ]
600
+ },
601
+ {
602
+ "name": "getReconciliationPolicyDiscoveredDevice",
603
+ "protocol": "REST",
604
+ "method": "GET",
605
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies/{pathv1}/discoveredDevices/{pathv2}?{query}",
606
+ "requestSchema": "schema.json",
607
+ "responseSchema": "schema.json",
608
+ "timeout": 0,
609
+ "sendEmpty": false,
610
+ "sendGetBody": false,
611
+ "requestDatatype": "JSON",
612
+ "responseDatatype": "JSON",
613
+ "headers": {},
614
+ "responseObjects": [
615
+ {
616
+ "type": "default",
617
+ "key": "",
618
+ "mockFile": ""
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ "name": "getIpGroups",
624
+ "protocol": "REST",
625
+ "method": "GET",
626
+ "entitypath": "{base_path}/{version}/api/v2/ipGroups?{query}",
627
+ "requestSchema": "schema.json",
628
+ "responseSchema": "schema.json",
629
+ "timeout": 0,
630
+ "sendEmpty": false,
631
+ "sendGetBody": false,
632
+ "requestDatatype": "JSON",
633
+ "responseDatatype": "JSON",
634
+ "headers": {},
635
+ "responseObjects": [
636
+ {
637
+ "type": "default",
638
+ "key": "",
639
+ "mockFile": ""
640
+ }
641
+ ]
642
+ },
643
+ {
644
+ "name": "getIpGroup",
645
+ "protocol": "REST",
646
+ "method": "GET",
647
+ "entitypath": "{base_path}/{version}/api/v2/ipGroups/{pathv1}?{query}",
648
+ "requestSchema": "schema.json",
649
+ "responseSchema": "schema.json",
650
+ "timeout": 0,
651
+ "sendEmpty": false,
652
+ "sendGetBody": false,
653
+ "requestDatatype": "JSON",
654
+ "responseDatatype": "JSON",
655
+ "headers": {},
656
+ "responseObjects": [
657
+ {
658
+ "type": "default",
659
+ "key": "",
660
+ "mockFile": ""
661
+ }
662
+ ]
663
+ },
664
+ {
665
+ "name": "putIpGroup",
666
+ "protocol": "REST",
667
+ "method": "PUT",
668
+ "entitypath": "{base_path}/{version}/api/v2/ipGroups/{pathv1}?{query}",
669
+ "requestSchema": "schema.json",
670
+ "responseSchema": "schema.json",
671
+ "timeout": 0,
672
+ "sendEmpty": false,
673
+ "requestDatatype": "JSON",
674
+ "responseDatatype": "JSON",
675
+ "headers": {},
676
+ "responseObjects": [
677
+ {
678
+ "type": "default",
679
+ "key": "",
680
+ "mockFile": ""
681
+ }
682
+ ]
683
+ },
684
+ {
685
+ "name": "deleteIpGroup",
686
+ "protocol": "REST",
687
+ "method": "DELETE",
688
+ "entitypath": "{base_path}/{version}/api/v2/ipGroups/{pathv1}?{query}",
689
+ "requestSchema": "schema.json",
690
+ "responseSchema": "schema.json",
691
+ "timeout": 0,
692
+ "sendEmpty": false,
693
+ "requestDatatype": "JSON",
694
+ "responseDatatype": "JSON",
695
+ "headers": {},
696
+ "responseObjects": [
697
+ {
698
+ "type": "default",
699
+ "key": "",
700
+ "mockFile": ""
701
+ }
702
+ ]
703
+ },
704
+ {
705
+ "name": "getNetworkIpGroups",
706
+ "protocol": "REST",
707
+ "method": "GET",
708
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/ipGroups?{query}",
709
+ "requestSchema": "schema.json",
710
+ "responseSchema": "schema.json",
711
+ "timeout": 0,
712
+ "sendEmpty": false,
713
+ "sendGetBody": false,
714
+ "requestDatatype": "JSON",
715
+ "responseDatatype": "JSON",
716
+ "headers": {},
717
+ "responseObjects": [
718
+ {
719
+ "type": "default",
720
+ "key": "",
721
+ "mockFile": ""
722
+ }
723
+ ]
724
+ },
725
+ {
726
+ "name": "postNetworkIpGroup",
727
+ "protocol": "REST",
728
+ "method": "POST",
729
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/ipGroups?{query}",
730
+ "requestSchema": "schema.json",
731
+ "responseSchema": "schema.json",
732
+ "timeout": 0,
733
+ "sendEmpty": false,
734
+ "requestDatatype": "JSON",
735
+ "responseDatatype": "JSON",
736
+ "headers": {},
737
+ "responseObjects": [
738
+ {
739
+ "type": "default",
740
+ "key": "",
741
+ "mockFile": ""
742
+ }
743
+ ]
744
+ },
745
+ {
746
+ "name": "getLeases",
747
+ "protocol": "REST",
748
+ "method": "GET",
749
+ "entitypath": "{base_path}/{version}/api/v2/leases?{query}",
750
+ "requestSchema": "schema.json",
751
+ "responseSchema": "schema.json",
752
+ "timeout": 0,
753
+ "sendEmpty": false,
754
+ "sendGetBody": false,
755
+ "requestDatatype": "JSON",
756
+ "responseDatatype": "JSON",
757
+ "headers": {},
758
+ "responseObjects": [
759
+ {
760
+ "type": "default",
761
+ "key": "",
762
+ "mockFile": ""
763
+ }
764
+ ]
765
+ },
766
+ {
767
+ "name": "getLease",
768
+ "protocol": "REST",
769
+ "method": "GET",
770
+ "entitypath": "{base_path}/{version}/api/v2/leases/{pathv1}?{query}",
771
+ "requestSchema": "schema.json",
772
+ "responseSchema": "schema.json",
773
+ "timeout": 0,
774
+ "sendEmpty": false,
775
+ "sendGetBody": false,
776
+ "requestDatatype": "JSON",
777
+ "responseDatatype": "JSON",
778
+ "headers": {},
779
+ "responseObjects": [
780
+ {
781
+ "type": "default",
782
+ "key": "",
783
+ "mockFile": ""
784
+ }
785
+ ]
786
+ },
787
+ {
788
+ "name": "getCollectionLeases",
789
+ "protocol": "REST",
790
+ "method": "GET",
791
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/leases?{query}",
792
+ "requestSchema": "schema.json",
793
+ "responseSchema": "schema.json",
794
+ "timeout": 0,
795
+ "sendEmpty": false,
796
+ "sendGetBody": false,
797
+ "requestDatatype": "JSON",
798
+ "responseDatatype": "JSON",
799
+ "headers": {},
800
+ "responseObjects": [
801
+ {
802
+ "type": "default",
803
+ "key": "",
804
+ "mockFile": ""
805
+ }
806
+ ]
807
+ },
808
+ {
809
+ "name": "getMerges",
810
+ "protocol": "REST",
811
+ "method": "GET",
812
+ "entitypath": "{base_path}/{version}/api/v2/merges?{query}",
813
+ "requestSchema": "schema.json",
814
+ "responseSchema": "schema.json",
815
+ "timeout": 0,
816
+ "sendEmpty": false,
817
+ "sendGetBody": false,
818
+ "requestDatatype": "JSON",
819
+ "responseDatatype": "JSON",
820
+ "headers": {},
821
+ "responseObjects": [
822
+ {
823
+ "type": "default",
824
+ "key": "",
825
+ "mockFile": ""
826
+ }
827
+ ]
828
+ },
829
+ {
830
+ "name": "getMerge",
831
+ "protocol": "REST",
832
+ "method": "GET",
833
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}?{query}",
834
+ "requestSchema": "schema.json",
835
+ "responseSchema": "schema.json",
836
+ "timeout": 0,
837
+ "sendEmpty": false,
838
+ "sendGetBody": false,
839
+ "requestDatatype": "JSON",
840
+ "responseDatatype": "JSON",
841
+ "headers": {},
842
+ "responseObjects": [
843
+ {
844
+ "type": "default",
845
+ "key": "",
846
+ "mockFile": ""
847
+ }
848
+ ]
849
+ },
850
+ {
851
+ "name": "getCollectionMerges",
852
+ "protocol": "REST",
853
+ "method": "GET",
854
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/merges?{query}",
855
+ "requestSchema": "schema.json",
856
+ "responseSchema": "schema.json",
857
+ "timeout": 0,
858
+ "sendEmpty": false,
859
+ "sendGetBody": false,
860
+ "requestDatatype": "JSON",
861
+ "responseDatatype": "JSON",
862
+ "headers": {},
863
+ "responseObjects": [
864
+ {
865
+ "type": "default",
866
+ "key": "",
867
+ "mockFile": ""
868
+ }
869
+ ]
870
+ },
871
+ {
872
+ "name": "postCollectionMerge",
873
+ "protocol": "REST",
874
+ "method": "POST",
875
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/merges?{query}",
876
+ "requestSchema": "schema.json",
877
+ "responseSchema": "schema.json",
878
+ "timeout": 0,
879
+ "sendEmpty": false,
880
+ "requestDatatype": "JSON",
881
+ "responseDatatype": "JSON",
882
+ "headers": {},
883
+ "responseObjects": [
884
+ {
885
+ "type": "default",
886
+ "key": "",
887
+ "mockFile": ""
888
+ }
889
+ ]
890
+ },
891
+ {
892
+ "name": "getMoves",
893
+ "protocol": "REST",
894
+ "method": "GET",
895
+ "entitypath": "{base_path}/{version}/api/v2/moves?{query}",
896
+ "requestSchema": "schema.json",
897
+ "responseSchema": "schema.json",
898
+ "timeout": 0,
899
+ "sendEmpty": false,
900
+ "sendGetBody": false,
901
+ "requestDatatype": "JSON",
902
+ "responseDatatype": "JSON",
903
+ "headers": {},
904
+ "responseObjects": [
905
+ {
906
+ "type": "default",
907
+ "key": "",
908
+ "mockFile": ""
909
+ }
910
+ ]
911
+ },
912
+ {
913
+ "name": "getMove",
914
+ "protocol": "REST",
915
+ "method": "GET",
916
+ "entitypath": "{base_path}/{version}/api/v2/moves/{pathv1}?{query}",
917
+ "requestSchema": "schema.json",
918
+ "responseSchema": "schema.json",
919
+ "timeout": 0,
920
+ "sendEmpty": false,
921
+ "sendGetBody": false,
922
+ "requestDatatype": "JSON",
923
+ "responseDatatype": "JSON",
924
+ "headers": {},
925
+ "responseObjects": [
926
+ {
927
+ "type": "default",
928
+ "key": "",
929
+ "mockFile": ""
930
+ }
931
+ ]
932
+ },
933
+ {
934
+ "name": "getCollectionMoves",
935
+ "protocol": "REST",
936
+ "method": "GET",
937
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/moves?{query}",
938
+ "requestSchema": "schema.json",
939
+ "responseSchema": "schema.json",
940
+ "timeout": 0,
941
+ "sendEmpty": false,
942
+ "sendGetBody": false,
943
+ "requestDatatype": "JSON",
944
+ "responseDatatype": "JSON",
945
+ "headers": {},
946
+ "responseObjects": [
947
+ {
948
+ "type": "default",
949
+ "key": "",
950
+ "mockFile": ""
951
+ }
952
+ ]
953
+ },
954
+ {
955
+ "name": "postCollectionMove",
956
+ "protocol": "REST",
957
+ "method": "POST",
958
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/moves?{query}",
959
+ "requestSchema": "schema.json",
960
+ "responseSchema": "schema.json",
961
+ "timeout": 0,
962
+ "sendEmpty": false,
963
+ "requestDatatype": "JSON",
964
+ "responseDatatype": "JSON",
965
+ "headers": {},
966
+ "responseObjects": [
967
+ {
968
+ "type": "default",
969
+ "key": "",
970
+ "mockFile": ""
971
+ }
972
+ ]
973
+ },
974
+ {
975
+ "name": "getNetworks",
976
+ "protocol": "REST",
977
+ "method": "GET",
978
+ "entitypath": "{base_path}/{version}/api/v2/networks?{query}",
979
+ "requestSchema": "schema.json",
980
+ "responseSchema": "schema.json",
981
+ "timeout": 0,
982
+ "sendEmpty": false,
983
+ "sendGetBody": false,
984
+ "requestDatatype": "JSON",
985
+ "responseDatatype": "JSON",
986
+ "headers": {},
987
+ "responseObjects": [
988
+ {
989
+ "type": "default",
990
+ "key": "",
991
+ "mockFile": ""
992
+ }
993
+ ]
994
+ },
995
+ {
996
+ "name": "getNetwork",
997
+ "protocol": "REST",
998
+ "method": "GET",
999
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}?{query}",
1000
+ "requestSchema": "schema.json",
1001
+ "responseSchema": "schema.json",
1002
+ "timeout": 0,
1003
+ "sendEmpty": false,
1004
+ "sendGetBody": false,
1005
+ "requestDatatype": "JSON",
1006
+ "responseDatatype": "JSON",
1007
+ "headers": {},
1008
+ "responseObjects": [
1009
+ {
1010
+ "type": "default",
1011
+ "key": "",
1012
+ "mockFile": ""
1013
+ }
1014
+ ]
1015
+ },
1016
+ {
1017
+ "name": "putNetwork",
1018
+ "protocol": "REST",
1019
+ "method": "PUT",
1020
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}?{query}",
1021
+ "requestSchema": "schema.json",
1022
+ "responseSchema": "schema.json",
1023
+ "timeout": 0,
1024
+ "sendEmpty": false,
1025
+ "requestDatatype": "JSON",
1026
+ "responseDatatype": "JSON",
1027
+ "headers": {},
1028
+ "responseObjects": [
1029
+ {
1030
+ "type": "default",
1031
+ "key": "",
1032
+ "mockFile": ""
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "name": "deleteNetwork",
1038
+ "protocol": "REST",
1039
+ "method": "DELETE",
1040
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}?{query}",
1041
+ "requestSchema": "schema.json",
1042
+ "responseSchema": "schema.json",
1043
+ "timeout": 0,
1044
+ "sendEmpty": false,
1045
+ "requestDatatype": "JSON",
1046
+ "responseDatatype": "JSON",
1047
+ "headers": {},
1048
+ "responseObjects": [
1049
+ {
1050
+ "type": "default",
1051
+ "key": "",
1052
+ "mockFile": ""
1053
+ }
1054
+ ]
1055
+ },
1056
+ {
1057
+ "name": "getBlockNetworks",
1058
+ "protocol": "REST",
1059
+ "method": "GET",
1060
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}/networks?{query}",
1061
+ "requestSchema": "schema.json",
1062
+ "responseSchema": "schema.json",
1063
+ "timeout": 0,
1064
+ "sendEmpty": false,
1065
+ "sendGetBody": false,
1066
+ "requestDatatype": "JSON",
1067
+ "responseDatatype": "JSON",
1068
+ "headers": {},
1069
+ "responseObjects": [
1070
+ {
1071
+ "type": "default",
1072
+ "key": "",
1073
+ "mockFile": ""
1074
+ }
1075
+ ]
1076
+ },
1077
+ {
1078
+ "name": "postBlockNetwork",
1079
+ "protocol": "REST",
1080
+ "method": "POST",
1081
+ "entitypath": "{base_path}/{version}/api/v2/blocks/{pathv1}/networks?{query}",
1082
+ "requestSchema": "schema.json",
1083
+ "responseSchema": "schema.json",
1084
+ "timeout": 0,
1085
+ "sendEmpty": false,
1086
+ "requestDatatype": "JSON",
1087
+ "responseDatatype": "JSON",
1088
+ "headers": {},
1089
+ "responseObjects": [
1090
+ {
1091
+ "type": "default",
1092
+ "key": "",
1093
+ "mockFile": ""
1094
+ }
1095
+ ]
1096
+ },
1097
+ {
1098
+ "name": "getMergeNetworks",
1099
+ "protocol": "REST",
1100
+ "method": "GET",
1101
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/networks?{query}",
1102
+ "requestSchema": "schema.json",
1103
+ "responseSchema": "schema.json",
1104
+ "timeout": 0,
1105
+ "sendEmpty": false,
1106
+ "sendGetBody": false,
1107
+ "requestDatatype": "JSON",
1108
+ "responseDatatype": "JSON",
1109
+ "headers": {},
1110
+ "responseObjects": [
1111
+ {
1112
+ "type": "default",
1113
+ "key": "",
1114
+ "mockFile": ""
1115
+ }
1116
+ ]
1117
+ },
1118
+ {
1119
+ "name": "getSplitNetworks",
1120
+ "protocol": "REST",
1121
+ "method": "GET",
1122
+ "entitypath": "{base_path}/{version}/api/v2/splits/{pathv1}/networks?{query}",
1123
+ "requestSchema": "schema.json",
1124
+ "responseSchema": "schema.json",
1125
+ "timeout": 0,
1126
+ "sendEmpty": false,
1127
+ "sendGetBody": false,
1128
+ "requestDatatype": "JSON",
1129
+ "responseDatatype": "JSON",
1130
+ "headers": {},
1131
+ "responseObjects": [
1132
+ {
1133
+ "type": "default",
1134
+ "key": "",
1135
+ "mockFile": ""
1136
+ }
1137
+ ]
1138
+ },
1139
+ {
1140
+ "name": "getMergeNetwork",
1141
+ "protocol": "REST",
1142
+ "method": "GET",
1143
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/networks/{pathv2}?{query}",
1144
+ "requestSchema": "schema.json",
1145
+ "responseSchema": "schema.json",
1146
+ "timeout": 0,
1147
+ "sendEmpty": false,
1148
+ "sendGetBody": false,
1149
+ "requestDatatype": "JSON",
1150
+ "responseDatatype": "JSON",
1151
+ "headers": {},
1152
+ "responseObjects": [
1153
+ {
1154
+ "type": "default",
1155
+ "key": "",
1156
+ "mockFile": ""
1157
+ }
1158
+ ]
1159
+ },
1160
+ {
1161
+ "name": "getSplitNetwork",
1162
+ "protocol": "REST",
1163
+ "method": "GET",
1164
+ "entitypath": "{base_path}/{version}/api/v2/splits/{pathv1}/networks/{pathv2}?{query}",
1165
+ "requestSchema": "schema.json",
1166
+ "responseSchema": "schema.json",
1167
+ "timeout": 0,
1168
+ "sendEmpty": false,
1169
+ "sendGetBody": false,
1170
+ "requestDatatype": "JSON",
1171
+ "responseDatatype": "JSON",
1172
+ "headers": {},
1173
+ "responseObjects": [
1174
+ {
1175
+ "type": "default",
1176
+ "key": "",
1177
+ "mockFile": ""
1178
+ }
1179
+ ]
1180
+ },
1181
+ {
1182
+ "name": "getRanges",
1183
+ "protocol": "REST",
1184
+ "method": "GET",
1185
+ "entitypath": "{base_path}/{version}/api/v2/ranges?{query}",
1186
+ "requestSchema": "schema.json",
1187
+ "responseSchema": "schema.json",
1188
+ "timeout": 0,
1189
+ "sendEmpty": false,
1190
+ "sendGetBody": false,
1191
+ "requestDatatype": "JSON",
1192
+ "responseDatatype": "JSON",
1193
+ "headers": {},
1194
+ "responseObjects": [
1195
+ {
1196
+ "type": "default",
1197
+ "key": "",
1198
+ "mockFile": ""
1199
+ }
1200
+ ]
1201
+ },
1202
+ {
1203
+ "name": "getRange",
1204
+ "protocol": "REST",
1205
+ "method": "GET",
1206
+ "entitypath": "{base_path}/{version}/api/v2/ranges/{pathv1}?{query}",
1207
+ "requestSchema": "schema.json",
1208
+ "responseSchema": "schema.json",
1209
+ "timeout": 0,
1210
+ "sendEmpty": false,
1211
+ "sendGetBody": false,
1212
+ "requestDatatype": "JSON",
1213
+ "responseDatatype": "JSON",
1214
+ "headers": {},
1215
+ "responseObjects": [
1216
+ {
1217
+ "type": "default",
1218
+ "key": "",
1219
+ "mockFile": ""
1220
+ }
1221
+ ]
1222
+ },
1223
+ {
1224
+ "name": "putRange",
1225
+ "protocol": "REST",
1226
+ "method": "PUT",
1227
+ "entitypath": "{base_path}/{version}/api/v2/ranges/{pathv1}?{query}",
1228
+ "requestSchema": "schema.json",
1229
+ "responseSchema": "schema.json",
1230
+ "timeout": 0,
1231
+ "sendEmpty": false,
1232
+ "requestDatatype": "JSON",
1233
+ "responseDatatype": "JSON",
1234
+ "headers": {},
1235
+ "responseObjects": [
1236
+ {
1237
+ "type": "default",
1238
+ "key": "",
1239
+ "mockFile": ""
1240
+ }
1241
+ ]
1242
+ },
1243
+ {
1244
+ "name": "deleteRange",
1245
+ "protocol": "REST",
1246
+ "method": "DELETE",
1247
+ "entitypath": "{base_path}/{version}/api/v2/ranges/{pathv1}?{query}",
1248
+ "requestSchema": "schema.json",
1249
+ "responseSchema": "schema.json",
1250
+ "timeout": 0,
1251
+ "sendEmpty": false,
1252
+ "requestDatatype": "JSON",
1253
+ "responseDatatype": "JSON",
1254
+ "headers": {},
1255
+ "responseObjects": [
1256
+ {
1257
+ "type": "default",
1258
+ "key": "",
1259
+ "mockFile": ""
1260
+ }
1261
+ ]
1262
+ },
1263
+ {
1264
+ "name": "getMergeRanges",
1265
+ "protocol": "REST",
1266
+ "method": "GET",
1267
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/ranges?{query}",
1268
+ "requestSchema": "schema.json",
1269
+ "responseSchema": "schema.json",
1270
+ "timeout": 0,
1271
+ "sendEmpty": false,
1272
+ "sendGetBody": false,
1273
+ "requestDatatype": "JSON",
1274
+ "responseDatatype": "JSON",
1275
+ "headers": {},
1276
+ "responseObjects": [
1277
+ {
1278
+ "type": "default",
1279
+ "key": "",
1280
+ "mockFile": ""
1281
+ }
1282
+ ]
1283
+ },
1284
+ {
1285
+ "name": "getNetworkRanges",
1286
+ "protocol": "REST",
1287
+ "method": "GET",
1288
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/ranges?{query}",
1289
+ "requestSchema": "schema.json",
1290
+ "responseSchema": "schema.json",
1291
+ "timeout": 0,
1292
+ "sendEmpty": false,
1293
+ "sendGetBody": false,
1294
+ "requestDatatype": "JSON",
1295
+ "responseDatatype": "JSON",
1296
+ "headers": {},
1297
+ "responseObjects": [
1298
+ {
1299
+ "type": "default",
1300
+ "key": "",
1301
+ "mockFile": ""
1302
+ }
1303
+ ]
1304
+ },
1305
+ {
1306
+ "name": "postNetworkRange",
1307
+ "protocol": "REST",
1308
+ "method": "POST",
1309
+ "entitypath": "{base_path}/{version}/api/v2/networks/{pathv1}/ranges?{query}",
1310
+ "requestSchema": "schema.json",
1311
+ "responseSchema": "schema.json",
1312
+ "timeout": 0,
1313
+ "sendEmpty": false,
1314
+ "requestDatatype": "JSON",
1315
+ "responseDatatype": "JSON",
1316
+ "headers": {},
1317
+ "responseObjects": [
1318
+ {
1319
+ "type": "default",
1320
+ "key": "",
1321
+ "mockFile": ""
1322
+ }
1323
+ ]
1324
+ },
1325
+ {
1326
+ "name": "getMergeRange",
1327
+ "protocol": "REST",
1328
+ "method": "GET",
1329
+ "entitypath": "{base_path}/{version}/api/v2/merges/{pathv1}/ranges/{pathv2}?{query}",
1330
+ "requestSchema": "schema.json",
1331
+ "responseSchema": "schema.json",
1332
+ "timeout": 0,
1333
+ "sendEmpty": false,
1334
+ "sendGetBody": false,
1335
+ "requestDatatype": "JSON",
1336
+ "responseDatatype": "JSON",
1337
+ "headers": {},
1338
+ "responseObjects": [
1339
+ {
1340
+ "type": "default",
1341
+ "key": "",
1342
+ "mockFile": ""
1343
+ }
1344
+ ]
1345
+ },
1346
+ {
1347
+ "name": "getReconciliationPolicies",
1348
+ "protocol": "REST",
1349
+ "method": "GET",
1350
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies?{query}",
1351
+ "requestSchema": "schema.json",
1352
+ "responseSchema": "schema.json",
1353
+ "timeout": 0,
1354
+ "sendEmpty": false,
1355
+ "sendGetBody": false,
1356
+ "requestDatatype": "JSON",
1357
+ "responseDatatype": "JSON",
1358
+ "headers": {},
1359
+ "responseObjects": [
1360
+ {
1361
+ "type": "default",
1362
+ "key": "",
1363
+ "mockFile": ""
1364
+ }
1365
+ ]
1366
+ },
1367
+ {
1368
+ "name": "getReconciliationPolicy",
1369
+ "protocol": "REST",
1370
+ "method": "GET",
1371
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies/{pathv1}?{query}",
1372
+ "requestSchema": "schema.json",
1373
+ "responseSchema": "schema.json",
1374
+ "timeout": 0,
1375
+ "sendEmpty": false,
1376
+ "sendGetBody": false,
1377
+ "requestDatatype": "JSON",
1378
+ "responseDatatype": "JSON",
1379
+ "headers": {},
1380
+ "responseObjects": [
1381
+ {
1382
+ "type": "default",
1383
+ "key": "",
1384
+ "mockFile": ""
1385
+ }
1386
+ ]
1387
+ },
1388
+ {
1389
+ "name": "putReconciliationPolicy",
1390
+ "protocol": "REST",
1391
+ "method": "PUT",
1392
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies/{pathv1}?{query}",
1393
+ "requestSchema": "schema.json",
1394
+ "responseSchema": "schema.json",
1395
+ "timeout": 0,
1396
+ "sendEmpty": false,
1397
+ "requestDatatype": "JSON",
1398
+ "responseDatatype": "JSON",
1399
+ "headers": {},
1400
+ "responseObjects": [
1401
+ {
1402
+ "type": "default",
1403
+ "key": "",
1404
+ "mockFile": ""
1405
+ }
1406
+ ]
1407
+ },
1408
+ {
1409
+ "name": "deleteReconciliationPolicy",
1410
+ "protocol": "REST",
1411
+ "method": "DELETE",
1412
+ "entitypath": "{base_path}/{version}/api/v2/reconciliationPolicies/{pathv1}?{query}",
1413
+ "requestSchema": "schema.json",
1414
+ "responseSchema": "schema.json",
1415
+ "timeout": 0,
1416
+ "sendEmpty": false,
1417
+ "requestDatatype": "JSON",
1418
+ "responseDatatype": "JSON",
1419
+ "headers": {},
1420
+ "responseObjects": [
1421
+ {
1422
+ "type": "default",
1423
+ "key": "",
1424
+ "mockFile": ""
1425
+ }
1426
+ ]
1427
+ },
1428
+ {
1429
+ "name": "getCollectionReconciliationPolicies",
1430
+ "protocol": "REST",
1431
+ "method": "GET",
1432
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/reconciliationPolicies?{query}",
1433
+ "requestSchema": "schema.json",
1434
+ "responseSchema": "schema.json",
1435
+ "timeout": 0,
1436
+ "sendEmpty": false,
1437
+ "sendGetBody": false,
1438
+ "requestDatatype": "JSON",
1439
+ "responseDatatype": "JSON",
1440
+ "headers": {},
1441
+ "responseObjects": [
1442
+ {
1443
+ "type": "default",
1444
+ "key": "",
1445
+ "mockFile": ""
1446
+ }
1447
+ ]
1448
+ },
1449
+ {
1450
+ "name": "postCollectionReconciliationPolicy",
1451
+ "protocol": "REST",
1452
+ "method": "POST",
1453
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/reconciliationPolicies?{query}",
1454
+ "requestSchema": "schema.json",
1455
+ "responseSchema": "schema.json",
1456
+ "timeout": 0,
1457
+ "sendEmpty": false,
1458
+ "requestDatatype": "JSON",
1459
+ "responseDatatype": "JSON",
1460
+ "headers": {},
1461
+ "responseObjects": [
1462
+ {
1463
+ "type": "default",
1464
+ "key": "",
1465
+ "mockFile": ""
1466
+ }
1467
+ ]
1468
+ },
1469
+ {
1470
+ "name": "getCollectionRestrictedRanges",
1471
+ "protocol": "REST",
1472
+ "method": "GET",
1473
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/restrictedRanges?{query}",
1474
+ "requestSchema": "schema.json",
1475
+ "responseSchema": "schema.json",
1476
+ "timeout": 0,
1477
+ "sendEmpty": false,
1478
+ "sendGetBody": false,
1479
+ "requestDatatype": "JSON",
1480
+ "responseDatatype": "JSON",
1481
+ "headers": {},
1482
+ "responseObjects": [
1483
+ {
1484
+ "type": "default",
1485
+ "key": "",
1486
+ "mockFile": ""
1487
+ }
1488
+ ]
1489
+ },
1490
+ {
1491
+ "name": "postCollectionRestrictedRange",
1492
+ "protocol": "REST",
1493
+ "method": "POST",
1494
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/restrictedRanges?{query}",
1495
+ "requestSchema": "schema.json",
1496
+ "responseSchema": "schema.json",
1497
+ "timeout": 0,
1498
+ "sendEmpty": false,
1499
+ "requestDatatype": "JSON",
1500
+ "responseDatatype": "JSON",
1501
+ "headers": {},
1502
+ "responseObjects": [
1503
+ {
1504
+ "type": "default",
1505
+ "key": "",
1506
+ "mockFile": ""
1507
+ }
1508
+ ]
1509
+ },
1510
+ {
1511
+ "name": "getCollectionRestrictedRange",
1512
+ "protocol": "REST",
1513
+ "method": "GET",
1514
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/restrictedRanges/{pathv3}?{query}",
1515
+ "requestSchema": "schema.json",
1516
+ "responseSchema": "schema.json",
1517
+ "timeout": 0,
1518
+ "sendEmpty": false,
1519
+ "sendGetBody": false,
1520
+ "requestDatatype": "JSON",
1521
+ "responseDatatype": "JSON",
1522
+ "headers": {},
1523
+ "responseObjects": [
1524
+ {
1525
+ "type": "default",
1526
+ "key": "",
1527
+ "mockFile": ""
1528
+ }
1529
+ ]
1530
+ },
1531
+ {
1532
+ "name": "deleteCollectionRestrictedRange",
1533
+ "protocol": "REST",
1534
+ "method": "DELETE",
1535
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/restrictedRanges/{pathv3}?{query}",
1536
+ "requestSchema": "schema.json",
1537
+ "responseSchema": "schema.json",
1538
+ "timeout": 0,
1539
+ "sendEmpty": false,
1540
+ "requestDatatype": "JSON",
1541
+ "responseDatatype": "JSON",
1542
+ "headers": {},
1543
+ "responseObjects": [
1544
+ {
1545
+ "type": "default",
1546
+ "key": "",
1547
+ "mockFile": ""
1548
+ }
1549
+ ]
1550
+ },
1551
+ {
1552
+ "name": "getSplits",
1553
+ "protocol": "REST",
1554
+ "method": "GET",
1555
+ "entitypath": "{base_path}/{version}/api/v2/splits?{query}",
1556
+ "requestSchema": "schema.json",
1557
+ "responseSchema": "schema.json",
1558
+ "timeout": 0,
1559
+ "sendEmpty": false,
1560
+ "sendGetBody": false,
1561
+ "requestDatatype": "JSON",
1562
+ "responseDatatype": "JSON",
1563
+ "headers": {},
1564
+ "responseObjects": [
1565
+ {
1566
+ "type": "default",
1567
+ "key": "",
1568
+ "mockFile": ""
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "name": "getSplit",
1574
+ "protocol": "REST",
1575
+ "method": "GET",
1576
+ "entitypath": "{base_path}/{version}/api/v2/splits/{pathv1}?{query}",
1577
+ "requestSchema": "schema.json",
1578
+ "responseSchema": "schema.json",
1579
+ "timeout": 0,
1580
+ "sendEmpty": false,
1581
+ "sendGetBody": false,
1582
+ "requestDatatype": "JSON",
1583
+ "responseDatatype": "JSON",
1584
+ "headers": {},
1585
+ "responseObjects": [
1586
+ {
1587
+ "type": "default",
1588
+ "key": "",
1589
+ "mockFile": ""
1590
+ }
1591
+ ]
1592
+ },
1593
+ {
1594
+ "name": "getCollectionSplits",
1595
+ "protocol": "REST",
1596
+ "method": "GET",
1597
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/splits?{query}",
1598
+ "requestSchema": "schema.json",
1599
+ "responseSchema": "schema.json",
1600
+ "timeout": 0,
1601
+ "sendEmpty": false,
1602
+ "sendGetBody": false,
1603
+ "requestDatatype": "JSON",
1604
+ "responseDatatype": "JSON",
1605
+ "headers": {},
1606
+ "responseObjects": [
1607
+ {
1608
+ "type": "default",
1609
+ "key": "",
1610
+ "mockFile": ""
1611
+ }
1612
+ ]
1613
+ },
1614
+ {
1615
+ "name": "postCollectionSplit",
1616
+ "protocol": "REST",
1617
+ "method": "POST",
1618
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/splits?{query}",
1619
+ "requestSchema": "schema.json",
1620
+ "responseSchema": "schema.json",
1621
+ "timeout": 0,
1622
+ "sendEmpty": false,
1623
+ "requestDatatype": "JSON",
1624
+ "responseDatatype": "JSON",
1625
+ "headers": {},
1626
+ "responseObjects": [
1627
+ {
1628
+ "type": "default",
1629
+ "key": "",
1630
+ "mockFile": ""
1631
+ }
1632
+ ]
1633
+ },
1634
+ {
1635
+ "name": "getTemplateApplications",
1636
+ "protocol": "REST",
1637
+ "method": "GET",
1638
+ "entitypath": "{base_path}/{version}/api/v2/templateApplications?{query}",
1639
+ "requestSchema": "schema.json",
1640
+ "responseSchema": "schema.json",
1641
+ "timeout": 0,
1642
+ "sendEmpty": false,
1643
+ "sendGetBody": false,
1644
+ "requestDatatype": "JSON",
1645
+ "responseDatatype": "JSON",
1646
+ "headers": {},
1647
+ "responseObjects": [
1648
+ {
1649
+ "type": "default",
1650
+ "key": "",
1651
+ "mockFile": ""
1652
+ }
1653
+ ]
1654
+ },
1655
+ {
1656
+ "name": "getTemplateApplication",
1657
+ "protocol": "REST",
1658
+ "method": "GET",
1659
+ "entitypath": "{base_path}/{version}/api/v2/templateApplications/{pathv1}?{query}",
1660
+ "requestSchema": "schema.json",
1661
+ "responseSchema": "schema.json",
1662
+ "timeout": 0,
1663
+ "sendEmpty": false,
1664
+ "sendGetBody": false,
1665
+ "requestDatatype": "JSON",
1666
+ "responseDatatype": "JSON",
1667
+ "headers": {},
1668
+ "responseObjects": [
1669
+ {
1670
+ "type": "default",
1671
+ "key": "",
1672
+ "mockFile": ""
1673
+ }
1674
+ ]
1675
+ },
1676
+ {
1677
+ "name": "getCollectionTemplateApplications",
1678
+ "protocol": "REST",
1679
+ "method": "GET",
1680
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/templateApplications?{query}",
1681
+ "requestSchema": "schema.json",
1682
+ "responseSchema": "schema.json",
1683
+ "timeout": 0,
1684
+ "sendEmpty": false,
1685
+ "sendGetBody": false,
1686
+ "requestDatatype": "JSON",
1687
+ "responseDatatype": "JSON",
1688
+ "headers": {},
1689
+ "responseObjects": [
1690
+ {
1691
+ "type": "default",
1692
+ "key": "",
1693
+ "mockFile": ""
1694
+ }
1695
+ ]
1696
+ },
1697
+ {
1698
+ "name": "postCollectionTemplateApplication",
1699
+ "protocol": "REST",
1700
+ "method": "POST",
1701
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/templateApplications?{query}",
1702
+ "requestSchema": "schema.json",
1703
+ "responseSchema": "schema.json",
1704
+ "timeout": 0,
1705
+ "sendEmpty": false,
1706
+ "requestDatatype": "JSON",
1707
+ "responseDatatype": "JSON",
1708
+ "headers": {},
1709
+ "responseObjects": [
1710
+ {
1711
+ "type": "default",
1712
+ "key": "",
1713
+ "mockFile": ""
1714
+ }
1715
+ ]
1716
+ },
1717
+ {
1718
+ "name": "getTemplateItems",
1719
+ "protocol": "REST",
1720
+ "method": "GET",
1721
+ "entitypath": "{base_path}/{version}/api/v2/templateItems?{query}",
1722
+ "requestSchema": "schema.json",
1723
+ "responseSchema": "schema.json",
1724
+ "timeout": 0,
1725
+ "sendEmpty": false,
1726
+ "sendGetBody": false,
1727
+ "requestDatatype": "JSON",
1728
+ "responseDatatype": "JSON",
1729
+ "headers": {},
1730
+ "responseObjects": [
1731
+ {
1732
+ "type": "default",
1733
+ "key": "",
1734
+ "mockFile": ""
1735
+ }
1736
+ ]
1737
+ },
1738
+ {
1739
+ "name": "getTemplateItem",
1740
+ "protocol": "REST",
1741
+ "method": "GET",
1742
+ "entitypath": "{base_path}/{version}/api/v2/templateItems/{pathv1}?{query}",
1743
+ "requestSchema": "schema.json",
1744
+ "responseSchema": "schema.json",
1745
+ "timeout": 0,
1746
+ "sendEmpty": false,
1747
+ "sendGetBody": false,
1748
+ "requestDatatype": "JSON",
1749
+ "responseDatatype": "JSON",
1750
+ "headers": {},
1751
+ "responseObjects": [
1752
+ {
1753
+ "type": "default",
1754
+ "key": "",
1755
+ "mockFile": ""
1756
+ }
1757
+ ]
1758
+ },
1759
+ {
1760
+ "name": "putTemplateItem",
1761
+ "protocol": "REST",
1762
+ "method": "PUT",
1763
+ "entitypath": "{base_path}/{version}/api/v2/templateItems/{pathv1}?{query}",
1764
+ "requestSchema": "schema.json",
1765
+ "responseSchema": "schema.json",
1766
+ "timeout": 0,
1767
+ "sendEmpty": false,
1768
+ "requestDatatype": "JSON",
1769
+ "responseDatatype": "JSON",
1770
+ "headers": {},
1771
+ "responseObjects": [
1772
+ {
1773
+ "type": "default",
1774
+ "key": "",
1775
+ "mockFile": ""
1776
+ }
1777
+ ]
1778
+ },
1779
+ {
1780
+ "name": "deleteTemplateItem",
1781
+ "protocol": "REST",
1782
+ "method": "DELETE",
1783
+ "entitypath": "{base_path}/{version}/api/v2/templateItems/{pathv1}?{query}",
1784
+ "requestSchema": "schema.json",
1785
+ "responseSchema": "schema.json",
1786
+ "timeout": 0,
1787
+ "sendEmpty": false,
1788
+ "requestDatatype": "JSON",
1789
+ "responseDatatype": "JSON",
1790
+ "headers": {},
1791
+ "responseObjects": [
1792
+ {
1793
+ "type": "default",
1794
+ "key": "",
1795
+ "mockFile": ""
1796
+ }
1797
+ ]
1798
+ },
1799
+ {
1800
+ "name": "getTemplateTemplateItems",
1801
+ "protocol": "REST",
1802
+ "method": "GET",
1803
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}/templateItems?{query}",
1804
+ "requestSchema": "schema.json",
1805
+ "responseSchema": "schema.json",
1806
+ "timeout": 0,
1807
+ "sendEmpty": false,
1808
+ "sendGetBody": false,
1809
+ "requestDatatype": "JSON",
1810
+ "responseDatatype": "JSON",
1811
+ "headers": {},
1812
+ "responseObjects": [
1813
+ {
1814
+ "type": "default",
1815
+ "key": "",
1816
+ "mockFile": ""
1817
+ }
1818
+ ]
1819
+ },
1820
+ {
1821
+ "name": "postTemplateTemplateItem",
1822
+ "protocol": "REST",
1823
+ "method": "POST",
1824
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}/templateItems?{query}",
1825
+ "requestSchema": "schema.json",
1826
+ "responseSchema": "schema.json",
1827
+ "timeout": 0,
1828
+ "sendEmpty": false,
1829
+ "requestDatatype": "JSON",
1830
+ "responseDatatype": "JSON",
1831
+ "headers": {},
1832
+ "responseObjects": [
1833
+ {
1834
+ "type": "default",
1835
+ "key": "",
1836
+ "mockFile": ""
1837
+ }
1838
+ ]
1839
+ },
1840
+ {
1841
+ "name": "getTemplates",
1842
+ "protocol": "REST",
1843
+ "method": "GET",
1844
+ "entitypath": "{base_path}/{version}/api/v2/templates?{query}",
1845
+ "requestSchema": "schema.json",
1846
+ "responseSchema": "schema.json",
1847
+ "timeout": 0,
1848
+ "sendEmpty": false,
1849
+ "sendGetBody": false,
1850
+ "requestDatatype": "JSON",
1851
+ "responseDatatype": "JSON",
1852
+ "headers": {},
1853
+ "responseObjects": [
1854
+ {
1855
+ "type": "default",
1856
+ "key": "",
1857
+ "mockFile": ""
1858
+ }
1859
+ ]
1860
+ },
1861
+ {
1862
+ "name": "getTemplate",
1863
+ "protocol": "REST",
1864
+ "method": "GET",
1865
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}?{query}",
1866
+ "requestSchema": "schema.json",
1867
+ "responseSchema": "schema.json",
1868
+ "timeout": 0,
1869
+ "sendEmpty": false,
1870
+ "sendGetBody": false,
1871
+ "requestDatatype": "JSON",
1872
+ "responseDatatype": "JSON",
1873
+ "headers": {},
1874
+ "responseObjects": [
1875
+ {
1876
+ "type": "default",
1877
+ "key": "",
1878
+ "mockFile": ""
1879
+ }
1880
+ ]
1881
+ },
1882
+ {
1883
+ "name": "putTemplate",
1884
+ "protocol": "REST",
1885
+ "method": "PUT",
1886
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}?{query}",
1887
+ "requestSchema": "schema.json",
1888
+ "responseSchema": "schema.json",
1889
+ "timeout": 0,
1890
+ "sendEmpty": false,
1891
+ "requestDatatype": "JSON",
1892
+ "responseDatatype": "JSON",
1893
+ "headers": {},
1894
+ "responseObjects": [
1895
+ {
1896
+ "type": "default",
1897
+ "key": "",
1898
+ "mockFile": ""
1899
+ }
1900
+ ]
1901
+ },
1902
+ {
1903
+ "name": "deleteTemplate",
1904
+ "protocol": "REST",
1905
+ "method": "DELETE",
1906
+ "entitypath": "{base_path}/{version}/api/v2/templates/{pathv1}?{query}",
1907
+ "requestSchema": "schema.json",
1908
+ "responseSchema": "schema.json",
1909
+ "timeout": 0,
1910
+ "sendEmpty": false,
1911
+ "requestDatatype": "JSON",
1912
+ "responseDatatype": "JSON",
1913
+ "headers": {},
1914
+ "responseObjects": [
1915
+ {
1916
+ "type": "default",
1917
+ "key": "",
1918
+ "mockFile": ""
1919
+ }
1920
+ ]
1921
+ },
1922
+ {
1923
+ "name": "getCollectionTemplates",
1924
+ "protocol": "REST",
1925
+ "method": "GET",
1926
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/templates?{query}",
1927
+ "requestSchema": "schema.json",
1928
+ "responseSchema": "schema.json",
1929
+ "timeout": 0,
1930
+ "sendEmpty": false,
1931
+ "sendGetBody": false,
1932
+ "requestDatatype": "JSON",
1933
+ "responseDatatype": "JSON",
1934
+ "headers": {},
1935
+ "responseObjects": [
1936
+ {
1937
+ "type": "default",
1938
+ "key": "",
1939
+ "mockFile": ""
1940
+ }
1941
+ ]
1942
+ },
1943
+ {
1944
+ "name": "postCollectionTemplate",
1945
+ "protocol": "REST",
1946
+ "method": "POST",
1947
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/templates?{query}",
1948
+ "requestSchema": "schema.json",
1949
+ "responseSchema": "schema.json",
1950
+ "timeout": 0,
1951
+ "sendEmpty": false,
1952
+ "requestDatatype": "JSON",
1953
+ "responseDatatype": "JSON",
1954
+ "headers": {},
1955
+ "responseObjects": [
1956
+ {
1957
+ "type": "default",
1958
+ "key": "",
1959
+ "mockFile": ""
1960
+ }
1961
+ ]
1962
+ }
1963
+ ]
1964
+ }