@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,1954 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getAccessRights",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/api/v2/accessRights?{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": "postAccessRight",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/api/v2/accessRights?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "getAccessRight",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/api/v2/accessRights/{pathv1}?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "sendGetBody": 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": "putAccessRight",
67
+ "protocol": "REST",
68
+ "method": "PUT",
69
+ "entitypath": "{base_path}/{version}/api/v2/accessRights/{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": "deleteAccessRight",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/api/v2/accessRights/{pathv1}?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "getCollectionAccessRights",
107
+ "protocol": "REST",
108
+ "method": "GET",
109
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/accessRights?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "sendGetBody": 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": "getAuthenticators",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/api/v2/authenticators?{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": "postAuthenticator",
149
+ "protocol": "REST",
150
+ "method": "POST",
151
+ "entitypath": "{base_path}/{version}/api/v2/authenticators?{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": "getAuthenticator",
169
+ "protocol": "REST",
170
+ "method": "GET",
171
+ "entitypath": "{base_path}/{version}/api/v2/authenticators/{pathv1}?{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": "putAuthenticator",
190
+ "protocol": "REST",
191
+ "method": "PUT",
192
+ "entitypath": "{base_path}/{version}/api/v2/authenticators/{pathv1}?{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": "deleteAuthenticator",
210
+ "protocol": "REST",
211
+ "method": "DELETE",
212
+ "entitypath": "{base_path}/{version}/api/v2/authenticators/{pathv1}?{query}",
213
+ "requestSchema": "schema.json",
214
+ "responseSchema": "schema.json",
215
+ "timeout": 0,
216
+ "sendEmpty": false,
217
+ "requestDatatype": "JSON",
218
+ "responseDatatype": "JSON",
219
+ "headers": {},
220
+ "responseObjects": [
221
+ {
222
+ "type": "default",
223
+ "key": "",
224
+ "mockFile": ""
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "name": "getDatabases",
230
+ "protocol": "REST",
231
+ "method": "GET",
232
+ "entitypath": "{base_path}/{version}/api/v2/databases?{query}",
233
+ "requestSchema": "schema.json",
234
+ "responseSchema": "schema.json",
235
+ "timeout": 0,
236
+ "sendEmpty": false,
237
+ "sendGetBody": 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": "getDatabase",
251
+ "protocol": "REST",
252
+ "method": "GET",
253
+ "entitypath": "{base_path}/{version}/api/v2/databases/{pathv1}?{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": "putDatabase",
272
+ "protocol": "REST",
273
+ "method": "PUT",
274
+ "entitypath": "{base_path}/{version}/api/v2/databases/{pathv1}?{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": "patchDatabase",
292
+ "protocol": "REST",
293
+ "method": "PATCH",
294
+ "entitypath": "{base_path}/{version}/api/v2/databases/{pathv1}?{query}",
295
+ "requestSchema": "schema.json",
296
+ "responseSchema": "schema.json",
297
+ "timeout": 0,
298
+ "sendEmpty": false,
299
+ "requestDatatype": "JSON",
300
+ "responseDatatype": "JSON",
301
+ "headers": {},
302
+ "responseObjects": [
303
+ {
304
+ "type": "default",
305
+ "key": "",
306
+ "mockFile": ""
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "name": "getEvents",
312
+ "protocol": "REST",
313
+ "method": "GET",
314
+ "entitypath": "{base_path}/{version}/api/v2/events?{query}",
315
+ "requestSchema": "schema.json",
316
+ "responseSchema": "schema.json",
317
+ "timeout": 0,
318
+ "sendEmpty": false,
319
+ "sendGetBody": false,
320
+ "requestDatatype": "JSON",
321
+ "responseDatatype": "JSON",
322
+ "headers": {},
323
+ "responseObjects": [
324
+ {
325
+ "type": "default",
326
+ "key": "",
327
+ "mockFile": ""
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "getEvent",
333
+ "protocol": "REST",
334
+ "method": "GET",
335
+ "entitypath": "{base_path}/{version}/api/v2/events/{pathv1}?{query}",
336
+ "requestSchema": "schema.json",
337
+ "responseSchema": "schema.json",
338
+ "timeout": 0,
339
+ "sendEmpty": false,
340
+ "sendGetBody": 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": "getGroups",
354
+ "protocol": "REST",
355
+ "method": "GET",
356
+ "entitypath": "{base_path}/{version}/api/v2/groups?{query}",
357
+ "requestSchema": "schema.json",
358
+ "responseSchema": "schema.json",
359
+ "timeout": 0,
360
+ "sendEmpty": false,
361
+ "sendGetBody": false,
362
+ "requestDatatype": "JSON",
363
+ "responseDatatype": "JSON",
364
+ "headers": {},
365
+ "responseObjects": [
366
+ {
367
+ "type": "default",
368
+ "key": "",
369
+ "mockFile": ""
370
+ }
371
+ ]
372
+ },
373
+ {
374
+ "name": "postGroup",
375
+ "protocol": "REST",
376
+ "method": "POST",
377
+ "entitypath": "{base_path}/{version}/api/v2/groups?{query}",
378
+ "requestSchema": "schema.json",
379
+ "responseSchema": "schema.json",
380
+ "timeout": 0,
381
+ "sendEmpty": 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": "getGroup",
395
+ "protocol": "REST",
396
+ "method": "GET",
397
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}?{query}",
398
+ "requestSchema": "schema.json",
399
+ "responseSchema": "schema.json",
400
+ "timeout": 0,
401
+ "sendEmpty": false,
402
+ "sendGetBody": false,
403
+ "requestDatatype": "JSON",
404
+ "responseDatatype": "JSON",
405
+ "headers": {},
406
+ "responseObjects": [
407
+ {
408
+ "type": "default",
409
+ "key": "",
410
+ "mockFile": ""
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "name": "putGroup",
416
+ "protocol": "REST",
417
+ "method": "PUT",
418
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}?{query}",
419
+ "requestSchema": "schema.json",
420
+ "responseSchema": "schema.json",
421
+ "timeout": 0,
422
+ "sendEmpty": 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": "deleteGroup",
436
+ "protocol": "REST",
437
+ "method": "DELETE",
438
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}?{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": "getUserGroups",
456
+ "protocol": "REST",
457
+ "method": "GET",
458
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/groups?{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": "postUserGroup",
477
+ "protocol": "REST",
478
+ "method": "POST",
479
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/groups?{query}",
480
+ "requestSchema": "schema.json",
481
+ "responseSchema": "schema.json",
482
+ "timeout": 0,
483
+ "sendEmpty": false,
484
+ "requestDatatype": "JSON",
485
+ "responseDatatype": "JSON",
486
+ "headers": {},
487
+ "responseObjects": [
488
+ {
489
+ "type": "default",
490
+ "key": "",
491
+ "mockFile": ""
492
+ }
493
+ ]
494
+ },
495
+ {
496
+ "name": "getUserGroup",
497
+ "protocol": "REST",
498
+ "method": "GET",
499
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/groups/{pathv2}?{query}",
500
+ "requestSchema": "schema.json",
501
+ "responseSchema": "schema.json",
502
+ "timeout": 0,
503
+ "sendEmpty": false,
504
+ "sendGetBody": false,
505
+ "requestDatatype": "JSON",
506
+ "responseDatatype": "JSON",
507
+ "headers": {},
508
+ "responseObjects": [
509
+ {
510
+ "type": "default",
511
+ "key": "",
512
+ "mockFile": ""
513
+ }
514
+ ]
515
+ },
516
+ {
517
+ "name": "deleteUserGroup",
518
+ "protocol": "REST",
519
+ "method": "DELETE",
520
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/groups/{pathv2}?{query}",
521
+ "requestSchema": "schema.json",
522
+ "responseSchema": "schema.json",
523
+ "timeout": 0,
524
+ "sendEmpty": false,
525
+ "requestDatatype": "JSON",
526
+ "responseDatatype": "JSON",
527
+ "headers": {},
528
+ "responseObjects": [
529
+ {
530
+ "type": "default",
531
+ "key": "",
532
+ "mockFile": ""
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "name": "getImports",
538
+ "protocol": "REST",
539
+ "method": "GET",
540
+ "entitypath": "{base_path}/{version}/api/v2/imports?{query}",
541
+ "requestSchema": "schema.json",
542
+ "responseSchema": "schema.json",
543
+ "timeout": 0,
544
+ "sendEmpty": false,
545
+ "sendGetBody": false,
546
+ "requestDatatype": "JSON",
547
+ "responseDatatype": "JSON",
548
+ "headers": {},
549
+ "responseObjects": [
550
+ {
551
+ "type": "default",
552
+ "key": "",
553
+ "mockFile": ""
554
+ }
555
+ ]
556
+ },
557
+ {
558
+ "name": "postImport",
559
+ "protocol": "REST",
560
+ "method": "POST",
561
+ "entitypath": "{base_path}/{version}/api/v2/imports?{query}",
562
+ "requestSchema": "schema.json",
563
+ "responseSchema": "schema.json",
564
+ "timeout": 0,
565
+ "sendEmpty": false,
566
+ "requestDatatype": "FORM",
567
+ "responseDatatype": "JSON",
568
+ "headers": {},
569
+ "responseObjects": [
570
+ {
571
+ "type": "default",
572
+ "key": "",
573
+ "mockFile": ""
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "name": "getImport",
579
+ "protocol": "REST",
580
+ "method": "GET",
581
+ "entitypath": "{base_path}/{version}/api/v2/imports/{pathv1}?{query}",
582
+ "requestSchema": "schema.json",
583
+ "responseSchema": "schema.json",
584
+ "timeout": 0,
585
+ "sendEmpty": false,
586
+ "sendGetBody": false,
587
+ "requestDatatype": "JSON",
588
+ "responseDatatype": "JSON",
589
+ "headers": {},
590
+ "responseObjects": [
591
+ {
592
+ "type": "default",
593
+ "key": "",
594
+ "mockFile": ""
595
+ }
596
+ ]
597
+ },
598
+ {
599
+ "name": "deleteImport",
600
+ "protocol": "REST",
601
+ "method": "DELETE",
602
+ "entitypath": "{base_path}/{version}/api/v2/imports/{pathv1}?{query}",
603
+ "requestSchema": "schema.json",
604
+ "responseSchema": "schema.json",
605
+ "timeout": 0,
606
+ "sendEmpty": false,
607
+ "requestDatatype": "JSON",
608
+ "responseDatatype": "JSON",
609
+ "headers": {},
610
+ "responseObjects": [
611
+ {
612
+ "type": "default",
613
+ "key": "",
614
+ "mockFile": ""
615
+ }
616
+ ]
617
+ },
618
+ {
619
+ "name": "patchImport",
620
+ "protocol": "REST",
621
+ "method": "PATCH",
622
+ "entitypath": "{base_path}/{version}/api/v2/imports/{pathv1}?{query}",
623
+ "requestSchema": "schema.json",
624
+ "responseSchema": "schema.json",
625
+ "timeout": 0,
626
+ "sendEmpty": false,
627
+ "requestDatatype": "JSON",
628
+ "responseDatatype": "JSON",
629
+ "headers": {},
630
+ "responseObjects": [
631
+ {
632
+ "type": "default",
633
+ "key": "",
634
+ "mockFile": ""
635
+ }
636
+ ]
637
+ },
638
+ {
639
+ "name": "getResponsePolicyImports",
640
+ "protocol": "REST",
641
+ "method": "GET",
642
+ "entitypath": "{base_path}/{version}/api/v2/responsePolicies/{pathv1}/imports?{query}",
643
+ "requestSchema": "schema.json",
644
+ "responseSchema": "schema.json",
645
+ "timeout": 0,
646
+ "sendEmpty": false,
647
+ "sendGetBody": false,
648
+ "requestDatatype": "JSON",
649
+ "responseDatatype": "JSON",
650
+ "headers": {},
651
+ "responseObjects": [
652
+ {
653
+ "type": "default",
654
+ "key": "",
655
+ "mockFile": ""
656
+ }
657
+ ]
658
+ },
659
+ {
660
+ "name": "postResponsePolicyImport",
661
+ "protocol": "REST",
662
+ "method": "POST",
663
+ "entitypath": "{base_path}/{version}/api/v2/responsePolicies/{pathv1}/imports?{query}",
664
+ "requestSchema": "schema.json",
665
+ "responseSchema": "schema.json",
666
+ "timeout": 0,
667
+ "sendEmpty": false,
668
+ "requestDatatype": "FORM",
669
+ "responseDatatype": "JSON",
670
+ "headers": {},
671
+ "responseObjects": [
672
+ {
673
+ "type": "default",
674
+ "key": "",
675
+ "mockFile": ""
676
+ }
677
+ ]
678
+ },
679
+ {
680
+ "name": "getResponsePolicyImport",
681
+ "protocol": "REST",
682
+ "method": "GET",
683
+ "entitypath": "{base_path}/{version}/api/v2/responsePolicies/{pathv1}/imports/{pathv2}?{query}",
684
+ "requestSchema": "schema.json",
685
+ "responseSchema": "schema.json",
686
+ "timeout": 0,
687
+ "sendEmpty": false,
688
+ "sendGetBody": false,
689
+ "requestDatatype": "JSON",
690
+ "responseDatatype": "JSON",
691
+ "headers": {},
692
+ "responseObjects": [
693
+ {
694
+ "type": "default",
695
+ "key": "",
696
+ "mockFile": ""
697
+ }
698
+ ]
699
+ },
700
+ {
701
+ "name": "deleteResponsePolicyImport",
702
+ "protocol": "REST",
703
+ "method": "DELETE",
704
+ "entitypath": "{base_path}/{version}/api/v2/responsePolicies/{pathv1}/imports/{pathv2}?{query}",
705
+ "requestSchema": "schema.json",
706
+ "responseSchema": "schema.json",
707
+ "timeout": 0,
708
+ "sendEmpty": false,
709
+ "requestDatatype": "JSON",
710
+ "responseDatatype": "JSON",
711
+ "headers": {},
712
+ "responseObjects": [
713
+ {
714
+ "type": "default",
715
+ "key": "",
716
+ "mockFile": ""
717
+ }
718
+ ]
719
+ },
720
+ {
721
+ "name": "getImportLogs",
722
+ "protocol": "REST",
723
+ "method": "GET",
724
+ "entitypath": "{base_path}/{version}/api/v2/imports/{pathv1}/logs?{query}",
725
+ "requestSchema": "schema.json",
726
+ "responseSchema": "schema.json",
727
+ "timeout": 0,
728
+ "sendEmpty": false,
729
+ "sendGetBody": false,
730
+ "requestDatatype": "JSON",
731
+ "responseDatatype": "JSON",
732
+ "headers": {},
733
+ "responseObjects": [
734
+ {
735
+ "type": "default",
736
+ "key": "",
737
+ "mockFile": ""
738
+ }
739
+ ]
740
+ },
741
+ {
742
+ "name": "getImportLog",
743
+ "protocol": "REST",
744
+ "method": "GET",
745
+ "entitypath": "{base_path}/{version}/api/v2/imports/{pathv1}/logs/{pathv2}?{query}",
746
+ "requestSchema": "schema.json",
747
+ "responseSchema": "schema.json",
748
+ "timeout": 0,
749
+ "sendEmpty": false,
750
+ "sendGetBody": false,
751
+ "requestDatatype": "JSON",
752
+ "responseDatatype": "JSON",
753
+ "headers": {},
754
+ "responseObjects": [
755
+ {
756
+ "type": "default",
757
+ "key": "",
758
+ "mockFile": ""
759
+ }
760
+ ]
761
+ },
762
+ {
763
+ "name": "getTransactionOperations",
764
+ "protocol": "REST",
765
+ "method": "GET",
766
+ "entitypath": "{base_path}/{version}/api/v2/transactions/{pathv1}/operations?{query}",
767
+ "requestSchema": "schema.json",
768
+ "responseSchema": "schema.json",
769
+ "timeout": 0,
770
+ "sendEmpty": false,
771
+ "sendGetBody": false,
772
+ "requestDatatype": "JSON",
773
+ "responseDatatype": "JSON",
774
+ "headers": {},
775
+ "responseObjects": [
776
+ {
777
+ "type": "default",
778
+ "key": "",
779
+ "mockFile": ""
780
+ }
781
+ ]
782
+ },
783
+ {
784
+ "name": "getTransactionOperation",
785
+ "protocol": "REST",
786
+ "method": "GET",
787
+ "entitypath": "{base_path}/{version}/api/v2/transactions/{pathv1}/operations/{pathv2}?{query}",
788
+ "requestSchema": "schema.json",
789
+ "responseSchema": "schema.json",
790
+ "timeout": 0,
791
+ "sendEmpty": false,
792
+ "sendGetBody": false,
793
+ "requestDatatype": "JSON",
794
+ "responseDatatype": "JSON",
795
+ "headers": {},
796
+ "responseObjects": [
797
+ {
798
+ "type": "default",
799
+ "key": "",
800
+ "mockFile": ""
801
+ }
802
+ ]
803
+ },
804
+ {
805
+ "name": "getSessions",
806
+ "protocol": "REST",
807
+ "method": "GET",
808
+ "entitypath": "{base_path}/{version}/api/v2/sessions?{query}",
809
+ "requestSchema": "schema.json",
810
+ "responseSchema": "schema.json",
811
+ "timeout": 0,
812
+ "sendEmpty": false,
813
+ "sendGetBody": false,
814
+ "requestDatatype": "JSON",
815
+ "responseDatatype": "JSON",
816
+ "headers": {},
817
+ "responseObjects": [
818
+ {
819
+ "type": "default",
820
+ "key": "",
821
+ "mockFile": ""
822
+ }
823
+ ]
824
+ },
825
+ {
826
+ "name": "postSession",
827
+ "protocol": "REST",
828
+ "method": "POST",
829
+ "entitypath": "{base_path}/{version}/api/v2/sessions?{query}",
830
+ "requestSchema": "schema.json",
831
+ "responseSchema": "schema.json",
832
+ "timeout": 0,
833
+ "sendEmpty": false,
834
+ "requestDatatype": "JSON",
835
+ "responseDatatype": "JSON",
836
+ "headers": {},
837
+ "responseObjects": [
838
+ {
839
+ "type": "default",
840
+ "key": "",
841
+ "mockFile": ""
842
+ }
843
+ ]
844
+ },
845
+ {
846
+ "name": "getSessionCurrent",
847
+ "protocol": "REST",
848
+ "method": "GET",
849
+ "entitypath": "{base_path}/{version}/api/v2/sessions/current?{query}",
850
+ "requestSchema": "schema.json",
851
+ "responseSchema": "schema.json",
852
+ "timeout": 0,
853
+ "sendEmpty": false,
854
+ "sendGetBody": false,
855
+ "requestDatatype": "JSON",
856
+ "responseDatatype": "JSON",
857
+ "headers": {},
858
+ "responseObjects": [
859
+ {
860
+ "type": "default",
861
+ "key": "",
862
+ "mockFile": ""
863
+ }
864
+ ]
865
+ },
866
+ {
867
+ "name": "patchSessionCurrent",
868
+ "protocol": "REST",
869
+ "method": "PATCH",
870
+ "entitypath": "{base_path}/{version}/api/v2/sessions/current?{query}",
871
+ "requestSchema": "schema.json",
872
+ "responseSchema": "schema.json",
873
+ "timeout": 0,
874
+ "sendEmpty": false,
875
+ "requestDatatype": "JSON",
876
+ "responseDatatype": "JSON",
877
+ "headers": {},
878
+ "responseObjects": [
879
+ {
880
+ "type": "default",
881
+ "key": "",
882
+ "mockFile": ""
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "name": "getSession",
888
+ "protocol": "REST",
889
+ "method": "GET",
890
+ "entitypath": "{base_path}/{version}/api/v2/sessions/{pathv1}?{query}",
891
+ "requestSchema": "schema.json",
892
+ "responseSchema": "schema.json",
893
+ "timeout": 0,
894
+ "sendEmpty": false,
895
+ "sendGetBody": false,
896
+ "requestDatatype": "JSON",
897
+ "responseDatatype": "JSON",
898
+ "headers": {},
899
+ "responseObjects": [
900
+ {
901
+ "type": "default",
902
+ "key": "",
903
+ "mockFile": ""
904
+ }
905
+ ]
906
+ },
907
+ {
908
+ "name": "patchSession",
909
+ "protocol": "REST",
910
+ "method": "PATCH",
911
+ "entitypath": "{base_path}/{version}/api/v2/sessions/{pathv1}?{query}",
912
+ "requestSchema": "schema.json",
913
+ "responseSchema": "schema.json",
914
+ "timeout": 0,
915
+ "sendEmpty": false,
916
+ "requestDatatype": "JSON",
917
+ "responseDatatype": "JSON",
918
+ "headers": {},
919
+ "responseObjects": [
920
+ {
921
+ "type": "default",
922
+ "key": "",
923
+ "mockFile": ""
924
+ }
925
+ ]
926
+ },
927
+ {
928
+ "name": "getUserSessions",
929
+ "protocol": "REST",
930
+ "method": "GET",
931
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/sessions?{query}",
932
+ "requestSchema": "schema.json",
933
+ "responseSchema": "schema.json",
934
+ "timeout": 0,
935
+ "sendEmpty": false,
936
+ "sendGetBody": false,
937
+ "requestDatatype": "JSON",
938
+ "responseDatatype": "JSON",
939
+ "headers": {},
940
+ "responseObjects": [
941
+ {
942
+ "type": "default",
943
+ "key": "",
944
+ "mockFile": ""
945
+ }
946
+ ]
947
+ },
948
+ {
949
+ "name": "getUserSession",
950
+ "protocol": "REST",
951
+ "method": "GET",
952
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}/sessions/{pathv2}?{query}",
953
+ "requestSchema": "schema.json",
954
+ "responseSchema": "schema.json",
955
+ "timeout": 0,
956
+ "sendEmpty": false,
957
+ "sendGetBody": false,
958
+ "requestDatatype": "JSON",
959
+ "responseDatatype": "JSON",
960
+ "headers": {},
961
+ "responseObjects": [
962
+ {
963
+ "type": "default",
964
+ "key": "",
965
+ "mockFile": ""
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ "name": "getSettings",
971
+ "protocol": "REST",
972
+ "method": "GET",
973
+ "entitypath": "{base_path}/{version}/api/v2/settings?{query}",
974
+ "requestSchema": "schema.json",
975
+ "responseSchema": "schema.json",
976
+ "timeout": 0,
977
+ "sendEmpty": false,
978
+ "sendGetBody": false,
979
+ "requestDatatype": "JSON",
980
+ "responseDatatype": "JSON",
981
+ "headers": {},
982
+ "responseObjects": [
983
+ {
984
+ "type": "default",
985
+ "key": "",
986
+ "mockFile": ""
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "name": "getSetting",
992
+ "protocol": "REST",
993
+ "method": "GET",
994
+ "entitypath": "{base_path}/{version}/api/v2/settings/{pathv1}?{query}",
995
+ "requestSchema": "schema.json",
996
+ "responseSchema": "schema.json",
997
+ "timeout": 0,
998
+ "sendEmpty": false,
999
+ "sendGetBody": false,
1000
+ "requestDatatype": "JSON",
1001
+ "responseDatatype": "JSON",
1002
+ "headers": {},
1003
+ "responseObjects": [
1004
+ {
1005
+ "type": "default",
1006
+ "key": "",
1007
+ "mockFile": ""
1008
+ }
1009
+ ]
1010
+ },
1011
+ {
1012
+ "name": "putSetting",
1013
+ "protocol": "REST",
1014
+ "method": "PUT",
1015
+ "entitypath": "{base_path}/{version}/api/v2/settings/{pathv1}?{query}",
1016
+ "requestSchema": "schema.json",
1017
+ "responseSchema": "schema.json",
1018
+ "timeout": 0,
1019
+ "sendEmpty": false,
1020
+ "requestDatatype": "JSON",
1021
+ "responseDatatype": "JSON",
1022
+ "headers": {},
1023
+ "responseObjects": [
1024
+ {
1025
+ "type": "default",
1026
+ "key": "",
1027
+ "mockFile": ""
1028
+ }
1029
+ ]
1030
+ },
1031
+ {
1032
+ "name": "getSigningPolicies",
1033
+ "protocol": "REST",
1034
+ "method": "GET",
1035
+ "entitypath": "{base_path}/{version}/api/v2/signingPolicies?{query}",
1036
+ "requestSchema": "schema.json",
1037
+ "responseSchema": "schema.json",
1038
+ "timeout": 0,
1039
+ "sendEmpty": false,
1040
+ "sendGetBody": false,
1041
+ "requestDatatype": "JSON",
1042
+ "responseDatatype": "JSON",
1043
+ "headers": {},
1044
+ "responseObjects": [
1045
+ {
1046
+ "type": "default",
1047
+ "key": "",
1048
+ "mockFile": ""
1049
+ }
1050
+ ]
1051
+ },
1052
+ {
1053
+ "name": "postSigningPolicy",
1054
+ "protocol": "REST",
1055
+ "method": "POST",
1056
+ "entitypath": "{base_path}/{version}/api/v2/signingPolicies?{query}",
1057
+ "requestSchema": "schema.json",
1058
+ "responseSchema": "schema.json",
1059
+ "timeout": 0,
1060
+ "sendEmpty": false,
1061
+ "requestDatatype": "JSON",
1062
+ "responseDatatype": "JSON",
1063
+ "headers": {},
1064
+ "responseObjects": [
1065
+ {
1066
+ "type": "default",
1067
+ "key": "",
1068
+ "mockFile": ""
1069
+ }
1070
+ ]
1071
+ },
1072
+ {
1073
+ "name": "getSigningPolicy",
1074
+ "protocol": "REST",
1075
+ "method": "GET",
1076
+ "entitypath": "{base_path}/{version}/api/v2/signingPolicies/{pathv1}?{query}",
1077
+ "requestSchema": "schema.json",
1078
+ "responseSchema": "schema.json",
1079
+ "timeout": 0,
1080
+ "sendEmpty": false,
1081
+ "sendGetBody": false,
1082
+ "requestDatatype": "JSON",
1083
+ "responseDatatype": "JSON",
1084
+ "headers": {},
1085
+ "responseObjects": [
1086
+ {
1087
+ "type": "default",
1088
+ "key": "",
1089
+ "mockFile": ""
1090
+ }
1091
+ ]
1092
+ },
1093
+ {
1094
+ "name": "putSigningPolicy",
1095
+ "protocol": "REST",
1096
+ "method": "PUT",
1097
+ "entitypath": "{base_path}/{version}/api/v2/signingPolicies/{pathv1}?{query}",
1098
+ "requestSchema": "schema.json",
1099
+ "responseSchema": "schema.json",
1100
+ "timeout": 0,
1101
+ "sendEmpty": false,
1102
+ "requestDatatype": "JSON",
1103
+ "responseDatatype": "JSON",
1104
+ "headers": {},
1105
+ "responseObjects": [
1106
+ {
1107
+ "type": "default",
1108
+ "key": "",
1109
+ "mockFile": ""
1110
+ }
1111
+ ]
1112
+ },
1113
+ {
1114
+ "name": "deleteSigningPolicy",
1115
+ "protocol": "REST",
1116
+ "method": "DELETE",
1117
+ "entitypath": "{base_path}/{version}/api/v2/signingPolicies/{pathv1}?{query}",
1118
+ "requestSchema": "schema.json",
1119
+ "responseSchema": "schema.json",
1120
+ "timeout": 0,
1121
+ "sendEmpty": false,
1122
+ "requestDatatype": "JSON",
1123
+ "responseDatatype": "JSON",
1124
+ "headers": {},
1125
+ "responseObjects": [
1126
+ {
1127
+ "type": "default",
1128
+ "key": "",
1129
+ "mockFile": ""
1130
+ }
1131
+ ]
1132
+ },
1133
+ {
1134
+ "name": "getTransactions",
1135
+ "protocol": "REST",
1136
+ "method": "GET",
1137
+ "entitypath": "{base_path}/{version}/api/v2/transactions?{query}",
1138
+ "requestSchema": "schema.json",
1139
+ "responseSchema": "schema.json",
1140
+ "timeout": 0,
1141
+ "sendEmpty": false,
1142
+ "sendGetBody": false,
1143
+ "requestDatatype": "JSON",
1144
+ "responseDatatype": "JSON",
1145
+ "headers": {},
1146
+ "responseObjects": [
1147
+ {
1148
+ "type": "default",
1149
+ "key": "",
1150
+ "mockFile": ""
1151
+ }
1152
+ ]
1153
+ },
1154
+ {
1155
+ "name": "postTransaction",
1156
+ "protocol": "REST",
1157
+ "method": "POST",
1158
+ "entitypath": "{base_path}/{version}/api/v2/transactions?{query}",
1159
+ "requestSchema": "schema.json",
1160
+ "responseSchema": "schema.json",
1161
+ "timeout": 0,
1162
+ "sendEmpty": false,
1163
+ "requestDatatype": "JSON",
1164
+ "responseDatatype": "JSON",
1165
+ "headers": {},
1166
+ "responseObjects": [
1167
+ {
1168
+ "type": "default",
1169
+ "key": "",
1170
+ "mockFile": ""
1171
+ }
1172
+ ]
1173
+ },
1174
+ {
1175
+ "name": "getTransaction",
1176
+ "protocol": "REST",
1177
+ "method": "GET",
1178
+ "entitypath": "{base_path}/{version}/api/v2/transactions/{pathv1}?{query}",
1179
+ "requestSchema": "schema.json",
1180
+ "responseSchema": "schema.json",
1181
+ "timeout": 0,
1182
+ "sendEmpty": false,
1183
+ "sendGetBody": false,
1184
+ "requestDatatype": "JSON",
1185
+ "responseDatatype": "JSON",
1186
+ "headers": {},
1187
+ "responseObjects": [
1188
+ {
1189
+ "type": "default",
1190
+ "key": "",
1191
+ "mockFile": ""
1192
+ }
1193
+ ]
1194
+ },
1195
+ {
1196
+ "name": "getCollectionTransactions",
1197
+ "protocol": "REST",
1198
+ "method": "GET",
1199
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/transactions?{query}",
1200
+ "requestSchema": "schema.json",
1201
+ "responseSchema": "schema.json",
1202
+ "timeout": 0,
1203
+ "sendEmpty": false,
1204
+ "sendGetBody": false,
1205
+ "requestDatatype": "JSON",
1206
+ "responseDatatype": "JSON",
1207
+ "headers": {},
1208
+ "responseObjects": [
1209
+ {
1210
+ "type": "default",
1211
+ "key": "",
1212
+ "mockFile": ""
1213
+ }
1214
+ ]
1215
+ },
1216
+ {
1217
+ "name": "getTrustRelationships",
1218
+ "protocol": "REST",
1219
+ "method": "GET",
1220
+ "entitypath": "{base_path}/{version}/api/v2/trustRelationships?{query}",
1221
+ "requestSchema": "schema.json",
1222
+ "responseSchema": "schema.json",
1223
+ "timeout": 0,
1224
+ "sendEmpty": false,
1225
+ "sendGetBody": false,
1226
+ "requestDatatype": "JSON",
1227
+ "responseDatatype": "JSON",
1228
+ "headers": {},
1229
+ "responseObjects": [
1230
+ {
1231
+ "type": "default",
1232
+ "key": "",
1233
+ "mockFile": ""
1234
+ }
1235
+ ]
1236
+ },
1237
+ {
1238
+ "name": "postTrustRelationship",
1239
+ "protocol": "REST",
1240
+ "method": "POST",
1241
+ "entitypath": "{base_path}/{version}/api/v2/trustRelationships?{query}",
1242
+ "requestSchema": "schema.json",
1243
+ "responseSchema": "schema.json",
1244
+ "timeout": 0,
1245
+ "sendEmpty": false,
1246
+ "requestDatatype": "JSON",
1247
+ "responseDatatype": "JSON",
1248
+ "headers": {},
1249
+ "responseObjects": [
1250
+ {
1251
+ "type": "default",
1252
+ "key": "",
1253
+ "mockFile": ""
1254
+ }
1255
+ ]
1256
+ },
1257
+ {
1258
+ "name": "getTrustRelationship",
1259
+ "protocol": "REST",
1260
+ "method": "GET",
1261
+ "entitypath": "{base_path}/{version}/api/v2/trustRelationships/{pathv1}?{query}",
1262
+ "requestSchema": "schema.json",
1263
+ "responseSchema": "schema.json",
1264
+ "timeout": 0,
1265
+ "sendEmpty": false,
1266
+ "sendGetBody": false,
1267
+ "requestDatatype": "JSON",
1268
+ "responseDatatype": "JSON",
1269
+ "headers": {},
1270
+ "responseObjects": [
1271
+ {
1272
+ "type": "default",
1273
+ "key": "",
1274
+ "mockFile": ""
1275
+ }
1276
+ ]
1277
+ },
1278
+ {
1279
+ "name": "deleteTrustRelationship",
1280
+ "protocol": "REST",
1281
+ "method": "DELETE",
1282
+ "entitypath": "{base_path}/{version}/api/v2/trustRelationships/{pathv1}?{query}",
1283
+ "requestSchema": "schema.json",
1284
+ "responseSchema": "schema.json",
1285
+ "timeout": 0,
1286
+ "sendEmpty": false,
1287
+ "requestDatatype": "JSON",
1288
+ "responseDatatype": "JSON",
1289
+ "headers": {},
1290
+ "responseObjects": [
1291
+ {
1292
+ "type": "default",
1293
+ "key": "",
1294
+ "mockFile": ""
1295
+ }
1296
+ ]
1297
+ },
1298
+ {
1299
+ "name": "patchTrustRelationship",
1300
+ "protocol": "REST",
1301
+ "method": "PATCH",
1302
+ "entitypath": "{base_path}/{version}/api/v2/trustRelationships/{pathv1}?{query}",
1303
+ "requestSchema": "schema.json",
1304
+ "responseSchema": "schema.json",
1305
+ "timeout": 0,
1306
+ "sendEmpty": false,
1307
+ "requestDatatype": "JSON",
1308
+ "responseDatatype": "JSON",
1309
+ "headers": {},
1310
+ "responseObjects": [
1311
+ {
1312
+ "type": "default",
1313
+ "key": "",
1314
+ "mockFile": ""
1315
+ }
1316
+ ]
1317
+ },
1318
+ {
1319
+ "name": "getUserDefinedFieldDefinitions",
1320
+ "protocol": "REST",
1321
+ "method": "GET",
1322
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedFieldDefinitions?{query}",
1323
+ "requestSchema": "schema.json",
1324
+ "responseSchema": "schema.json",
1325
+ "timeout": 0,
1326
+ "sendEmpty": false,
1327
+ "sendGetBody": false,
1328
+ "requestDatatype": "JSON",
1329
+ "responseDatatype": "JSON",
1330
+ "headers": {},
1331
+ "responseObjects": [
1332
+ {
1333
+ "type": "default",
1334
+ "key": "",
1335
+ "mockFile": ""
1336
+ }
1337
+ ]
1338
+ },
1339
+ {
1340
+ "name": "postUserDefinedFieldDefinition",
1341
+ "protocol": "REST",
1342
+ "method": "POST",
1343
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedFieldDefinitions?{query}",
1344
+ "requestSchema": "schema.json",
1345
+ "responseSchema": "schema.json",
1346
+ "timeout": 0,
1347
+ "sendEmpty": false,
1348
+ "requestDatatype": "JSON",
1349
+ "responseDatatype": "JSON",
1350
+ "headers": {},
1351
+ "responseObjects": [
1352
+ {
1353
+ "type": "default",
1354
+ "key": "",
1355
+ "mockFile": ""
1356
+ }
1357
+ ]
1358
+ },
1359
+ {
1360
+ "name": "getUserDefinedFieldDefinition",
1361
+ "protocol": "REST",
1362
+ "method": "GET",
1363
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedFieldDefinitions/{pathv1}?{query}",
1364
+ "requestSchema": "schema.json",
1365
+ "responseSchema": "schema.json",
1366
+ "timeout": 0,
1367
+ "sendEmpty": false,
1368
+ "sendGetBody": false,
1369
+ "requestDatatype": "JSON",
1370
+ "responseDatatype": "JSON",
1371
+ "headers": {},
1372
+ "responseObjects": [
1373
+ {
1374
+ "type": "default",
1375
+ "key": "",
1376
+ "mockFile": ""
1377
+ }
1378
+ ]
1379
+ },
1380
+ {
1381
+ "name": "putUserDefinedFieldDefinition",
1382
+ "protocol": "REST",
1383
+ "method": "PUT",
1384
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedFieldDefinitions/{pathv1}?{query}",
1385
+ "requestSchema": "schema.json",
1386
+ "responseSchema": "schema.json",
1387
+ "timeout": 0,
1388
+ "sendEmpty": false,
1389
+ "requestDatatype": "JSON",
1390
+ "responseDatatype": "JSON",
1391
+ "headers": {},
1392
+ "responseObjects": [
1393
+ {
1394
+ "type": "default",
1395
+ "key": "",
1396
+ "mockFile": ""
1397
+ }
1398
+ ]
1399
+ },
1400
+ {
1401
+ "name": "deleteUserDefinedFieldDefinition",
1402
+ "protocol": "REST",
1403
+ "method": "DELETE",
1404
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedFieldDefinitions/{pathv1}?{query}",
1405
+ "requestSchema": "schema.json",
1406
+ "responseSchema": "schema.json",
1407
+ "timeout": 0,
1408
+ "sendEmpty": false,
1409
+ "requestDatatype": "JSON",
1410
+ "responseDatatype": "JSON",
1411
+ "headers": {},
1412
+ "responseObjects": [
1413
+ {
1414
+ "type": "default",
1415
+ "key": "",
1416
+ "mockFile": ""
1417
+ }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "name": "getUserDefinedLinkDefinitions",
1422
+ "protocol": "REST",
1423
+ "method": "GET",
1424
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedLinkDefinitions?{query}",
1425
+ "requestSchema": "schema.json",
1426
+ "responseSchema": "schema.json",
1427
+ "timeout": 0,
1428
+ "sendEmpty": false,
1429
+ "sendGetBody": false,
1430
+ "requestDatatype": "JSON",
1431
+ "responseDatatype": "JSON",
1432
+ "headers": {},
1433
+ "responseObjects": [
1434
+ {
1435
+ "type": "default",
1436
+ "key": "",
1437
+ "mockFile": ""
1438
+ }
1439
+ ]
1440
+ },
1441
+ {
1442
+ "name": "postUserDefinedLinkDefinition",
1443
+ "protocol": "REST",
1444
+ "method": "POST",
1445
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedLinkDefinitions?{query}",
1446
+ "requestSchema": "schema.json",
1447
+ "responseSchema": "schema.json",
1448
+ "timeout": 0,
1449
+ "sendEmpty": false,
1450
+ "requestDatatype": "JSON",
1451
+ "responseDatatype": "JSON",
1452
+ "headers": {},
1453
+ "responseObjects": [
1454
+ {
1455
+ "type": "default",
1456
+ "key": "",
1457
+ "mockFile": ""
1458
+ }
1459
+ ]
1460
+ },
1461
+ {
1462
+ "name": "getUserDefinedLinkDefinition",
1463
+ "protocol": "REST",
1464
+ "method": "GET",
1465
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedLinkDefinitions/{pathv1}?{query}",
1466
+ "requestSchema": "schema.json",
1467
+ "responseSchema": "schema.json",
1468
+ "timeout": 0,
1469
+ "sendEmpty": false,
1470
+ "sendGetBody": false,
1471
+ "requestDatatype": "JSON",
1472
+ "responseDatatype": "JSON",
1473
+ "headers": {},
1474
+ "responseObjects": [
1475
+ {
1476
+ "type": "default",
1477
+ "key": "",
1478
+ "mockFile": ""
1479
+ }
1480
+ ]
1481
+ },
1482
+ {
1483
+ "name": "putUserDefinedLinkDefinition",
1484
+ "protocol": "REST",
1485
+ "method": "PUT",
1486
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedLinkDefinitions/{pathv1}?{query}",
1487
+ "requestSchema": "schema.json",
1488
+ "responseSchema": "schema.json",
1489
+ "timeout": 0,
1490
+ "sendEmpty": false,
1491
+ "requestDatatype": "JSON",
1492
+ "responseDatatype": "JSON",
1493
+ "headers": {},
1494
+ "responseObjects": [
1495
+ {
1496
+ "type": "default",
1497
+ "key": "",
1498
+ "mockFile": ""
1499
+ }
1500
+ ]
1501
+ },
1502
+ {
1503
+ "name": "deleteUserDefinedLinkDefinition",
1504
+ "protocol": "REST",
1505
+ "method": "DELETE",
1506
+ "entitypath": "{base_path}/{version}/api/v2/userDefinedLinkDefinitions/{pathv1}?{query}",
1507
+ "requestSchema": "schema.json",
1508
+ "responseSchema": "schema.json",
1509
+ "timeout": 0,
1510
+ "sendEmpty": false,
1511
+ "requestDatatype": "JSON",
1512
+ "responseDatatype": "JSON",
1513
+ "headers": {},
1514
+ "responseObjects": [
1515
+ {
1516
+ "type": "default",
1517
+ "key": "",
1518
+ "mockFile": ""
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "name": "getCollectionUserDefinedLinks",
1524
+ "protocol": "REST",
1525
+ "method": "GET",
1526
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/userDefinedLinks?{query}",
1527
+ "requestSchema": "schema.json",
1528
+ "responseSchema": "schema.json",
1529
+ "timeout": 0,
1530
+ "sendEmpty": false,
1531
+ "sendGetBody": false,
1532
+ "requestDatatype": "JSON",
1533
+ "responseDatatype": "JSON",
1534
+ "headers": {},
1535
+ "responseObjects": [
1536
+ {
1537
+ "type": "default",
1538
+ "key": "",
1539
+ "mockFile": ""
1540
+ }
1541
+ ]
1542
+ },
1543
+ {
1544
+ "name": "postCollectionUserDefinedLink",
1545
+ "protocol": "REST",
1546
+ "method": "POST",
1547
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/userDefinedLinks?{query}",
1548
+ "requestSchema": "schema.json",
1549
+ "responseSchema": "schema.json",
1550
+ "timeout": 0,
1551
+ "sendEmpty": false,
1552
+ "requestDatatype": "JSON",
1553
+ "responseDatatype": "JSON",
1554
+ "headers": {},
1555
+ "responseObjects": [
1556
+ {
1557
+ "type": "default",
1558
+ "key": "",
1559
+ "mockFile": ""
1560
+ }
1561
+ ]
1562
+ },
1563
+ {
1564
+ "name": "getCollectionUserDefinedLink",
1565
+ "protocol": "REST",
1566
+ "method": "GET",
1567
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/userDefinedLinks/{pathv3}?{query}",
1568
+ "requestSchema": "schema.json",
1569
+ "responseSchema": "schema.json",
1570
+ "timeout": 0,
1571
+ "sendEmpty": false,
1572
+ "sendGetBody": false,
1573
+ "requestDatatype": "JSON",
1574
+ "responseDatatype": "JSON",
1575
+ "headers": {},
1576
+ "responseObjects": [
1577
+ {
1578
+ "type": "default",
1579
+ "key": "",
1580
+ "mockFile": ""
1581
+ }
1582
+ ]
1583
+ },
1584
+ {
1585
+ "name": "deleteCollectionUserDefinedLink",
1586
+ "protocol": "REST",
1587
+ "method": "DELETE",
1588
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/userDefinedLinks/{pathv3}?{query}",
1589
+ "requestSchema": "schema.json",
1590
+ "responseSchema": "schema.json",
1591
+ "timeout": 0,
1592
+ "sendEmpty": false,
1593
+ "requestDatatype": "JSON",
1594
+ "responseDatatype": "JSON",
1595
+ "headers": {},
1596
+ "responseObjects": [
1597
+ {
1598
+ "type": "default",
1599
+ "key": "",
1600
+ "mockFile": ""
1601
+ }
1602
+ ]
1603
+ },
1604
+ {
1605
+ "name": "getUsers",
1606
+ "protocol": "REST",
1607
+ "method": "GET",
1608
+ "entitypath": "{base_path}/{version}/api/v2/users?{query}",
1609
+ "requestSchema": "schema.json",
1610
+ "responseSchema": "schema.json",
1611
+ "timeout": 0,
1612
+ "sendEmpty": false,
1613
+ "sendGetBody": false,
1614
+ "requestDatatype": "JSON",
1615
+ "responseDatatype": "JSON",
1616
+ "headers": {},
1617
+ "responseObjects": [
1618
+ {
1619
+ "type": "default",
1620
+ "key": "",
1621
+ "mockFile": ""
1622
+ }
1623
+ ]
1624
+ },
1625
+ {
1626
+ "name": "postUser",
1627
+ "protocol": "REST",
1628
+ "method": "POST",
1629
+ "entitypath": "{base_path}/{version}/api/v2/users?{query}",
1630
+ "requestSchema": "schema.json",
1631
+ "responseSchema": "schema.json",
1632
+ "timeout": 0,
1633
+ "sendEmpty": false,
1634
+ "requestDatatype": "JSON",
1635
+ "responseDatatype": "JSON",
1636
+ "headers": {},
1637
+ "responseObjects": [
1638
+ {
1639
+ "type": "default",
1640
+ "key": "",
1641
+ "mockFile": ""
1642
+ }
1643
+ ]
1644
+ },
1645
+ {
1646
+ "name": "getUser",
1647
+ "protocol": "REST",
1648
+ "method": "GET",
1649
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}?{query}",
1650
+ "requestSchema": "schema.json",
1651
+ "responseSchema": "schema.json",
1652
+ "timeout": 0,
1653
+ "sendEmpty": false,
1654
+ "sendGetBody": false,
1655
+ "requestDatatype": "JSON",
1656
+ "responseDatatype": "JSON",
1657
+ "headers": {},
1658
+ "responseObjects": [
1659
+ {
1660
+ "type": "default",
1661
+ "key": "",
1662
+ "mockFile": ""
1663
+ }
1664
+ ]
1665
+ },
1666
+ {
1667
+ "name": "putUser",
1668
+ "protocol": "REST",
1669
+ "method": "PUT",
1670
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}?{query}",
1671
+ "requestSchema": "schema.json",
1672
+ "responseSchema": "schema.json",
1673
+ "timeout": 0,
1674
+ "sendEmpty": false,
1675
+ "requestDatatype": "JSON",
1676
+ "responseDatatype": "JSON",
1677
+ "headers": {},
1678
+ "responseObjects": [
1679
+ {
1680
+ "type": "default",
1681
+ "key": "",
1682
+ "mockFile": ""
1683
+ }
1684
+ ]
1685
+ },
1686
+ {
1687
+ "name": "deleteUser",
1688
+ "protocol": "REST",
1689
+ "method": "DELETE",
1690
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}?{query}",
1691
+ "requestSchema": "schema.json",
1692
+ "responseSchema": "schema.json",
1693
+ "timeout": 0,
1694
+ "sendEmpty": false,
1695
+ "requestDatatype": "JSON",
1696
+ "responseDatatype": "JSON",
1697
+ "headers": {},
1698
+ "responseObjects": [
1699
+ {
1700
+ "type": "default",
1701
+ "key": "",
1702
+ "mockFile": ""
1703
+ }
1704
+ ]
1705
+ },
1706
+ {
1707
+ "name": "patchUser",
1708
+ "protocol": "REST",
1709
+ "method": "PATCH",
1710
+ "entitypath": "{base_path}/{version}/api/v2/users/{pathv1}?{query}",
1711
+ "requestSchema": "schema.json",
1712
+ "responseSchema": "schema.json",
1713
+ "timeout": 0,
1714
+ "sendEmpty": false,
1715
+ "requestDatatype": "JSON",
1716
+ "responseDatatype": "JSON",
1717
+ "headers": {},
1718
+ "responseObjects": [
1719
+ {
1720
+ "type": "default",
1721
+ "key": "",
1722
+ "mockFile": ""
1723
+ }
1724
+ ]
1725
+ },
1726
+ {
1727
+ "name": "getGroupUsers",
1728
+ "protocol": "REST",
1729
+ "method": "GET",
1730
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}/users?{query}",
1731
+ "requestSchema": "schema.json",
1732
+ "responseSchema": "schema.json",
1733
+ "timeout": 0,
1734
+ "sendEmpty": false,
1735
+ "sendGetBody": false,
1736
+ "requestDatatype": "JSON",
1737
+ "responseDatatype": "JSON",
1738
+ "headers": {},
1739
+ "responseObjects": [
1740
+ {
1741
+ "type": "default",
1742
+ "key": "",
1743
+ "mockFile": ""
1744
+ }
1745
+ ]
1746
+ },
1747
+ {
1748
+ "name": "postGroupUser",
1749
+ "protocol": "REST",
1750
+ "method": "POST",
1751
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}/users?{query}",
1752
+ "requestSchema": "schema.json",
1753
+ "responseSchema": "schema.json",
1754
+ "timeout": 0,
1755
+ "sendEmpty": false,
1756
+ "requestDatatype": "JSON",
1757
+ "responseDatatype": "JSON",
1758
+ "headers": {},
1759
+ "responseObjects": [
1760
+ {
1761
+ "type": "default",
1762
+ "key": "",
1763
+ "mockFile": ""
1764
+ }
1765
+ ]
1766
+ },
1767
+ {
1768
+ "name": "getGroupUser",
1769
+ "protocol": "REST",
1770
+ "method": "GET",
1771
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}/users/{pathv2}?{query}",
1772
+ "requestSchema": "schema.json",
1773
+ "responseSchema": "schema.json",
1774
+ "timeout": 0,
1775
+ "sendEmpty": false,
1776
+ "sendGetBody": false,
1777
+ "requestDatatype": "JSON",
1778
+ "responseDatatype": "JSON",
1779
+ "headers": {},
1780
+ "responseObjects": [
1781
+ {
1782
+ "type": "default",
1783
+ "key": "",
1784
+ "mockFile": ""
1785
+ }
1786
+ ]
1787
+ },
1788
+ {
1789
+ "name": "deleteGroupUser",
1790
+ "protocol": "REST",
1791
+ "method": "DELETE",
1792
+ "entitypath": "{base_path}/{version}/api/v2/groups/{pathv1}/users/{pathv2}?{query}",
1793
+ "requestSchema": "schema.json",
1794
+ "responseSchema": "schema.json",
1795
+ "timeout": 0,
1796
+ "sendEmpty": false,
1797
+ "requestDatatype": "JSON",
1798
+ "responseDatatype": "JSON",
1799
+ "headers": {},
1800
+ "responseObjects": [
1801
+ {
1802
+ "type": "default",
1803
+ "key": "",
1804
+ "mockFile": ""
1805
+ }
1806
+ ]
1807
+ },
1808
+ {
1809
+ "name": "getResources",
1810
+ "protocol": "REST",
1811
+ "method": "GET",
1812
+ "entitypath": "{base_path}/{version}/api/v2?{query}",
1813
+ "requestSchema": "schema.json",
1814
+ "responseSchema": "schema.json",
1815
+ "timeout": 0,
1816
+ "sendEmpty": false,
1817
+ "sendGetBody": false,
1818
+ "requestDatatype": "JSON",
1819
+ "responseDatatype": "JSON",
1820
+ "headers": {},
1821
+ "responseObjects": [
1822
+ {
1823
+ "type": "default",
1824
+ "key": "",
1825
+ "mockFile": ""
1826
+ }
1827
+ ]
1828
+ },
1829
+ {
1830
+ "name": "getRoot",
1831
+ "protocol": "REST",
1832
+ "method": "GET",
1833
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}?{query}",
1834
+ "requestSchema": "schema.json",
1835
+ "responseSchema": "schema.json",
1836
+ "timeout": 0,
1837
+ "sendEmpty": false,
1838
+ "sendGetBody": false,
1839
+ "requestDatatype": "JSON",
1840
+ "responseDatatype": "JSON",
1841
+ "headers": {},
1842
+ "responseObjects": [
1843
+ {
1844
+ "type": "default",
1845
+ "key": "",
1846
+ "mockFile": ""
1847
+ }
1848
+ ]
1849
+ },
1850
+ {
1851
+ "name": "getWorkflowRequests",
1852
+ "protocol": "REST",
1853
+ "method": "GET",
1854
+ "entitypath": "{base_path}/{version}/api/v2/workflowRequests?{query}",
1855
+ "requestSchema": "schema.json",
1856
+ "responseSchema": "schema.json",
1857
+ "timeout": 0,
1858
+ "sendEmpty": false,
1859
+ "sendGetBody": false,
1860
+ "requestDatatype": "JSON",
1861
+ "responseDatatype": "JSON",
1862
+ "headers": {},
1863
+ "responseObjects": [
1864
+ {
1865
+ "type": "default",
1866
+ "key": "",
1867
+ "mockFile": ""
1868
+ }
1869
+ ]
1870
+ },
1871
+ {
1872
+ "name": "getWorkflowRequest",
1873
+ "protocol": "REST",
1874
+ "method": "GET",
1875
+ "entitypath": "{base_path}/{version}/api/v2/workflowRequests/{pathv1}?{query}",
1876
+ "requestSchema": "schema.json",
1877
+ "responseSchema": "schema.json",
1878
+ "timeout": 0,
1879
+ "sendEmpty": false,
1880
+ "sendGetBody": false,
1881
+ "requestDatatype": "JSON",
1882
+ "responseDatatype": "JSON",
1883
+ "headers": {},
1884
+ "responseObjects": [
1885
+ {
1886
+ "type": "default",
1887
+ "key": "",
1888
+ "mockFile": ""
1889
+ }
1890
+ ]
1891
+ },
1892
+ {
1893
+ "name": "deleteWorkflowRequest",
1894
+ "protocol": "REST",
1895
+ "method": "DELETE",
1896
+ "entitypath": "{base_path}/{version}/api/v2/workflowRequests/{pathv1}?{query}",
1897
+ "requestSchema": "schema.json",
1898
+ "responseSchema": "schema.json",
1899
+ "timeout": 0,
1900
+ "sendEmpty": false,
1901
+ "requestDatatype": "JSON",
1902
+ "responseDatatype": "JSON",
1903
+ "headers": {},
1904
+ "responseObjects": [
1905
+ {
1906
+ "type": "default",
1907
+ "key": "",
1908
+ "mockFile": ""
1909
+ }
1910
+ ]
1911
+ },
1912
+ {
1913
+ "name": "patchWorkflowRequest",
1914
+ "protocol": "REST",
1915
+ "method": "PATCH",
1916
+ "entitypath": "{base_path}/{version}/api/v2/workflowRequests/{pathv1}?{query}",
1917
+ "requestSchema": "schema.json",
1918
+ "responseSchema": "schema.json",
1919
+ "timeout": 0,
1920
+ "sendEmpty": false,
1921
+ "requestDatatype": "JSON",
1922
+ "responseDatatype": "JSON",
1923
+ "headers": {},
1924
+ "responseObjects": [
1925
+ {
1926
+ "type": "default",
1927
+ "key": "",
1928
+ "mockFile": ""
1929
+ }
1930
+ ]
1931
+ },
1932
+ {
1933
+ "name": "getCollectionWorkflowRequests",
1934
+ "protocol": "REST",
1935
+ "method": "GET",
1936
+ "entitypath": "{base_path}/{version}/api/v2/{pathv1}/{pathv2}/workflowRequests?{query}",
1937
+ "requestSchema": "schema.json",
1938
+ "responseSchema": "schema.json",
1939
+ "timeout": 0,
1940
+ "sendEmpty": false,
1941
+ "sendGetBody": false,
1942
+ "requestDatatype": "JSON",
1943
+ "responseDatatype": "JSON",
1944
+ "headers": {},
1945
+ "responseObjects": [
1946
+ {
1947
+ "type": "default",
1948
+ "key": "",
1949
+ "mockFile": ""
1950
+ }
1951
+ ]
1952
+ }
1953
+ ]
1954
+ }