@itentialopensource/adapter-beyond_trust 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 (122) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +1004 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +13 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +346 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TAB1.md +5 -0
  22. package/TAB2.md +2226 -0
  23. package/TROUBLESHOOT.md +47 -0
  24. package/adapter.js +12401 -0
  25. package/adapterBase.js +1452 -0
  26. package/entities/.generic/action.json +214 -0
  27. package/entities/.generic/schema.json +28 -0
  28. package/entities/.system/action.json +50 -0
  29. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  30. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  31. package/entities/.system/schema.json +19 -0
  32. package/entities/.system/schemaTokenReq.json +53 -0
  33. package/entities/.system/schemaTokenResp.json +53 -0
  34. package/entities/GroupPolicy/action.json +495 -0
  35. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyIndex-default.json +18 -0
  36. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyJumpGroupIndex-default.json +12 -0
  37. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyJumpointsIndex-default.json +8 -0
  38. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyMemberIndex-default.json +26 -0
  39. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyTeamIndex-default.json +10 -0
  40. package/entities/GroupPolicy/mockdatafiles/apiConfigGroupPolicyVaultAccountIndex-default.json +7 -0
  41. package/entities/GroupPolicy/schema.json +119 -0
  42. package/entities/JumpClient/action.json +147 -0
  43. package/entities/JumpClient/mockdatafiles/apiConfigJumpClientIndex-default.json +29 -0
  44. package/entities/JumpClient/schema.json +124 -0
  45. package/entities/JumpGroup/action.json +208 -0
  46. package/entities/JumpGroup/mockdatafiles/apiConfigJumpGroupIndex-default.json +30 -0
  47. package/entities/JumpGroup/mockdatafiles/apiConfigJumpGroupUserIndex-default.json +7 -0
  48. package/entities/JumpGroup/schema.json +72 -0
  49. package/entities/JumpItem/action.json +370 -0
  50. package/entities/JumpItem/mockdatafiles/apiConfigJumpItemRemoteRdpIndex-default.json +52 -0
  51. package/entities/JumpItem/mockdatafiles/apiConfigJumpItemShellJumpIndex-default.json +70 -0
  52. package/entities/JumpItem/mockdatafiles/apiConfigJumpItemWebJumpIndex-default.json +38 -0
  53. package/entities/JumpItem/schema.json +91 -0
  54. package/entities/JumpItemRole/action.json +46 -0
  55. package/entities/JumpItemRole/mockdatafiles/apiConfigJumpItemRoleIndex-default.json +34 -0
  56. package/entities/JumpItemRole/schema.json +42 -0
  57. package/entities/JumpPolicy/action.json +127 -0
  58. package/entities/JumpPolicy/mockdatafiles/apiConfigJumpPolicyIndex-default.json +86 -0
  59. package/entities/JumpPolicy/schema.json +57 -0
  60. package/entities/Jumpoint/action.json +230 -0
  61. package/entities/Jumpoint/mockdatafiles/apiConfigJumpointIndex-default.json +50 -0
  62. package/entities/Jumpoint/schema.json +95 -0
  63. package/entities/OpenapiYaml/action.json +25 -0
  64. package/entities/OpenapiYaml/schema.json +19 -0
  65. package/entities/SecurityProvider/action.json +25 -0
  66. package/entities/SecurityProvider/mockdatafiles/apiConfigSecurityProviderIndex-default.json +26 -0
  67. package/entities/SecurityProvider/schema.json +41 -0
  68. package/entities/SessionPolicy/action.json +25 -0
  69. package/entities/SessionPolicy/mockdatafiles/apiConfigSessionPolicyIndex-default.json +20 -0
  70. package/entities/SessionPolicy/schema.json +41 -0
  71. package/entities/Team/action.json +208 -0
  72. package/entities/Team/mockdatafiles/apiConfigTeamIndex-default.json +14 -0
  73. package/entities/Team/mockdatafiles/apiConfigTeamUserIndex-default.json +7 -0
  74. package/entities/Team/schema.json +72 -0
  75. package/entities/User/action.json +106 -0
  76. package/entities/User/mockdatafiles/apiConfigUserIndex-default.json +18 -0
  77. package/entities/User/schema.json +67 -0
  78. package/entities/Vault/action.json +676 -0
  79. package/entities/Vault/mockdatafiles/apiConfigVaultAccountGroupAccountIndex-default.json +18 -0
  80. package/entities/Vault/mockdatafiles/apiConfigVaultAccountGroupUserIndex-default.json +22 -0
  81. package/entities/Vault/mockdatafiles/apiConfigVaultAccountIndex-default.json +22 -0
  82. package/entities/Vault/mockdatafiles/apiConfigVaultAccountUserIndex-default.json +6 -0
  83. package/entities/Vault/schema.json +128 -0
  84. package/entities/Vendor/action.json +208 -0
  85. package/entities/Vendor/mockdatafiles/apiConfigVendorIndex-default.json +32 -0
  86. package/entities/Vendor/mockdatafiles/apiConfigVendorUserIndex-default.json +17 -0
  87. package/entities/Vendor/schema.json +61 -0
  88. package/error.json +190 -0
  89. package/metadata.json +50 -0
  90. package/package.json +83 -0
  91. package/pronghorn.json +9958 -0
  92. package/propertiesDecorators.json +14 -0
  93. package/propertiesSchema.json +1569 -0
  94. package/refs?service=git-upload-pack +0 -0
  95. package/report/adapterInfo.json +10 -0
  96. package/report/bt-pra-configuration.openapi.yaml-OpenApi3.json +13155 -0
  97. package/report/creationReport.json +970 -0
  98. package/sampleProperties.json +256 -0
  99. package/test/integration/adapterTestBasicGet.js +83 -0
  100. package/test/integration/adapterTestConnectivity.js +142 -0
  101. package/test/integration/adapterTestIntegration.js +4162 -0
  102. package/test/unit/adapterBaseTestUnit.js +1024 -0
  103. package/test/unit/adapterTestUnit.js +6145 -0
  104. package/utils/adapterInfo.js +206 -0
  105. package/utils/addAuth.js +94 -0
  106. package/utils/artifactize.js +146 -0
  107. package/utils/basicGet.js +50 -0
  108. package/utils/checkMigrate.js +63 -0
  109. package/utils/entitiesToDB.js +179 -0
  110. package/utils/findPath.js +74 -0
  111. package/utils/methodDocumentor.js +273 -0
  112. package/utils/modify.js +152 -0
  113. package/utils/packModificationScript.js +35 -0
  114. package/utils/patches2bundledDeps.js +90 -0
  115. package/utils/pre-commit.sh +32 -0
  116. package/utils/removeHooks.js +20 -0
  117. package/utils/setup.js +33 -0
  118. package/utils/taskMover.js +309 -0
  119. package/utils/tbScript.js +239 -0
  120. package/utils/tbUtils.js +489 -0
  121. package/utils/testRunner.js +298 -0
  122. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,676 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "apiConfigVaultAccountIndex",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/vault/account?{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": "mockdatafiles/apiConfigVaultAccountIndex-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "apiConfigVaultAccountStore",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/vault/account?{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": "apiConfigVaultAccountShow",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/vault/account/{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": "apiConfigVaultAccountUpdate",
67
+ "protocol": "REST",
68
+ "method": "PATCH",
69
+ "entitypath": "{base_path}/{version}/vault/account/{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": "apiConfigVaultAccountDestroy",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/vault/account/{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": "apiConfigVaultAccountCheckOut",
107
+ "protocol": "REST",
108
+ "method": "POST",
109
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/check-out?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "requestDatatype": "JSON",
115
+ "responseDatatype": "JSON",
116
+ "headers": {},
117
+ "responseObjects": [
118
+ {
119
+ "type": "default",
120
+ "key": "",
121
+ "mockFile": ""
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "name": "apiConfigVaultAccountCheckIn",
127
+ "protocol": "REST",
128
+ "method": "POST",
129
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/check-in?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "requestDatatype": "JSON",
135
+ "responseDatatype": "JSON",
136
+ "headers": {},
137
+ "responseObjects": [
138
+ {
139
+ "type": "default",
140
+ "key": "",
141
+ "mockFile": ""
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "name": "apiConfigVaultAccountForceCheckIn",
147
+ "protocol": "REST",
148
+ "method": "POST",
149
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/force-check-in?{query}",
150
+ "requestSchema": "schema.json",
151
+ "responseSchema": "schema.json",
152
+ "timeout": 0,
153
+ "sendEmpty": false,
154
+ "requestDatatype": "JSON",
155
+ "responseDatatype": "JSON",
156
+ "headers": {},
157
+ "responseObjects": [
158
+ {
159
+ "type": "default",
160
+ "key": "",
161
+ "mockFile": ""
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "name": "apiConfigVaultAccountRotate",
167
+ "protocol": "REST",
168
+ "method": "POST",
169
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/rotate?{query}",
170
+ "requestSchema": "schema.json",
171
+ "responseSchema": "schema.json",
172
+ "timeout": 0,
173
+ "sendEmpty": false,
174
+ "requestDatatype": "JSON",
175
+ "responseDatatype": "JSON",
176
+ "headers": {},
177
+ "responseObjects": [
178
+ {
179
+ "type": "default",
180
+ "key": "",
181
+ "mockFile": ""
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "name": "apiConfigVaultAccountUserIndex",
187
+ "protocol": "REST",
188
+ "method": "GET",
189
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/user?{query}",
190
+ "requestSchema": "schema.json",
191
+ "responseSchema": "schema.json",
192
+ "timeout": 0,
193
+ "sendEmpty": false,
194
+ "sendGetBody": false,
195
+ "requestDatatype": "JSON",
196
+ "responseDatatype": "JSON",
197
+ "headers": {},
198
+ "responseObjects": [
199
+ {
200
+ "type": "default",
201
+ "key": "",
202
+ "mockFile": "mockdatafiles/apiConfigVaultAccountUserIndex-default.json"
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "name": "apiConfigVaultAccountUserStore",
208
+ "protocol": "REST",
209
+ "method": "POST",
210
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/user?{query}",
211
+ "requestSchema": "schema.json",
212
+ "responseSchema": "schema.json",
213
+ "timeout": 0,
214
+ "sendEmpty": false,
215
+ "requestDatatype": "JSON",
216
+ "responseDatatype": "JSON",
217
+ "headers": {},
218
+ "responseObjects": [
219
+ {
220
+ "type": "default",
221
+ "key": "",
222
+ "mockFile": ""
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "name": "apiConfigVaultAccountUserShow",
228
+ "protocol": "REST",
229
+ "method": "GET",
230
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/user/{pathv2}?{query}",
231
+ "requestSchema": "schema.json",
232
+ "responseSchema": "schema.json",
233
+ "timeout": 0,
234
+ "sendEmpty": false,
235
+ "sendGetBody": false,
236
+ "requestDatatype": "JSON",
237
+ "responseDatatype": "JSON",
238
+ "headers": {},
239
+ "responseObjects": [
240
+ {
241
+ "type": "default",
242
+ "key": "",
243
+ "mockFile": ""
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "name": "apiConfigVaultAccountUserUpdate",
249
+ "protocol": "REST",
250
+ "method": "PATCH",
251
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/user/{pathv2}?{query}",
252
+ "requestSchema": "schema.json",
253
+ "responseSchema": "schema.json",
254
+ "timeout": 0,
255
+ "sendEmpty": false,
256
+ "requestDatatype": "JSON",
257
+ "responseDatatype": "JSON",
258
+ "headers": {},
259
+ "responseObjects": [
260
+ {
261
+ "type": "default",
262
+ "key": "",
263
+ "mockFile": ""
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "name": "apiConfigVaultAccountUserDestroy",
269
+ "protocol": "REST",
270
+ "method": "DELETE",
271
+ "entitypath": "{base_path}/{version}/vault/account/{pathv1}/user/{pathv2}?{query}",
272
+ "requestSchema": "schema.json",
273
+ "responseSchema": "schema.json",
274
+ "timeout": 0,
275
+ "sendEmpty": false,
276
+ "requestDatatype": "JSON",
277
+ "responseDatatype": "JSON",
278
+ "headers": {},
279
+ "responseObjects": [
280
+ {
281
+ "type": "default",
282
+ "key": "",
283
+ "mockFile": ""
284
+ }
285
+ ]
286
+ },
287
+ {
288
+ "name": "apiConfigVaultAccountGroupIndex",
289
+ "protocol": "REST",
290
+ "method": "GET",
291
+ "entitypath": "{base_path}/{version}/vault/account-group?{query}",
292
+ "requestSchema": "schema.json",
293
+ "responseSchema": "schema.json",
294
+ "timeout": 0,
295
+ "sendEmpty": false,
296
+ "sendGetBody": false,
297
+ "requestDatatype": "JSON",
298
+ "responseDatatype": "JSON",
299
+ "headers": {},
300
+ "responseObjects": [
301
+ {
302
+ "type": "default",
303
+ "key": "",
304
+ "mockFile": ""
305
+ }
306
+ ]
307
+ },
308
+ {
309
+ "name": "apiConfigVaultAccountGroupStore",
310
+ "protocol": "REST",
311
+ "method": "POST",
312
+ "entitypath": "{base_path}/{version}/vault/account-group?{query}",
313
+ "requestSchema": "schema.json",
314
+ "responseSchema": "schema.json",
315
+ "timeout": 0,
316
+ "sendEmpty": false,
317
+ "requestDatatype": "JSON",
318
+ "responseDatatype": "JSON",
319
+ "headers": {},
320
+ "responseObjects": [
321
+ {
322
+ "type": "default",
323
+ "key": "",
324
+ "mockFile": ""
325
+ }
326
+ ]
327
+ },
328
+ {
329
+ "name": "apiConfigVaultAccountGroupShow",
330
+ "protocol": "REST",
331
+ "method": "GET",
332
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}?{query}",
333
+ "requestSchema": "schema.json",
334
+ "responseSchema": "schema.json",
335
+ "timeout": 0,
336
+ "sendEmpty": false,
337
+ "sendGetBody": false,
338
+ "requestDatatype": "JSON",
339
+ "responseDatatype": "JSON",
340
+ "headers": {},
341
+ "responseObjects": [
342
+ {
343
+ "type": "default",
344
+ "key": "",
345
+ "mockFile": ""
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "name": "apiConfigVaultAccountGroupDestroy",
351
+ "protocol": "REST",
352
+ "method": "DELETE",
353
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}?{query}",
354
+ "requestSchema": "schema.json",
355
+ "responseSchema": "schema.json",
356
+ "timeout": 0,
357
+ "sendEmpty": false,
358
+ "requestDatatype": "JSON",
359
+ "responseDatatype": "JSON",
360
+ "headers": {},
361
+ "responseObjects": [
362
+ {
363
+ "type": "default",
364
+ "key": "",
365
+ "mockFile": ""
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "name": "apiConfigVaultAccountGroupUpdate",
371
+ "protocol": "REST",
372
+ "method": "PATCH",
373
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}?{query}",
374
+ "requestSchema": "schema.json",
375
+ "responseSchema": "schema.json",
376
+ "timeout": 0,
377
+ "sendEmpty": false,
378
+ "requestDatatype": "JSON",
379
+ "responseDatatype": "JSON",
380
+ "headers": {},
381
+ "responseObjects": [
382
+ {
383
+ "type": "default",
384
+ "key": "",
385
+ "mockFile": ""
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "name": "apiConfigVaultAccountGroupUserIndex",
391
+ "protocol": "REST",
392
+ "method": "GET",
393
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/user?{query}",
394
+ "requestSchema": "schema.json",
395
+ "responseSchema": "schema.json",
396
+ "timeout": 0,
397
+ "sendEmpty": false,
398
+ "sendGetBody": false,
399
+ "requestDatatype": "JSON",
400
+ "responseDatatype": "JSON",
401
+ "headers": {},
402
+ "responseObjects": [
403
+ {
404
+ "type": "default",
405
+ "key": "",
406
+ "mockFile": "mockdatafiles/apiConfigVaultAccountGroupUserIndex-default.json"
407
+ }
408
+ ]
409
+ },
410
+ {
411
+ "name": "apiConfigVaultAccountGroupUserStore",
412
+ "protocol": "REST",
413
+ "method": "POST",
414
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/user?{query}",
415
+ "requestSchema": "schema.json",
416
+ "responseSchema": "schema.json",
417
+ "timeout": 0,
418
+ "sendEmpty": false,
419
+ "requestDatatype": "JSON",
420
+ "responseDatatype": "JSON",
421
+ "headers": {},
422
+ "responseObjects": [
423
+ {
424
+ "type": "default",
425
+ "key": "",
426
+ "mockFile": ""
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "name": "apiConfigVaultAccountGroupUserShow",
432
+ "protocol": "REST",
433
+ "method": "GET",
434
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/user/{pathv2}?{query}",
435
+ "requestSchema": "schema.json",
436
+ "responseSchema": "schema.json",
437
+ "timeout": 0,
438
+ "sendEmpty": false,
439
+ "sendGetBody": false,
440
+ "requestDatatype": "JSON",
441
+ "responseDatatype": "JSON",
442
+ "headers": {},
443
+ "responseObjects": [
444
+ {
445
+ "type": "default",
446
+ "key": "",
447
+ "mockFile": ""
448
+ }
449
+ ]
450
+ },
451
+ {
452
+ "name": "apiConfigVaultAccountGroupUserDestroy",
453
+ "protocol": "REST",
454
+ "method": "DELETE",
455
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/user/{pathv2}?{query}",
456
+ "requestSchema": "schema.json",
457
+ "responseSchema": "schema.json",
458
+ "timeout": 0,
459
+ "sendEmpty": false,
460
+ "requestDatatype": "JSON",
461
+ "responseDatatype": "JSON",
462
+ "headers": {},
463
+ "responseObjects": [
464
+ {
465
+ "type": "default",
466
+ "key": "",
467
+ "mockFile": ""
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "name": "apiConfigVaultAccountGroupUserUpdate",
473
+ "protocol": "REST",
474
+ "method": "PATCH",
475
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/user/{pathv2}?{query}",
476
+ "requestSchema": "schema.json",
477
+ "responseSchema": "schema.json",
478
+ "timeout": 0,
479
+ "sendEmpty": false,
480
+ "requestDatatype": "JSON",
481
+ "responseDatatype": "JSON",
482
+ "headers": {},
483
+ "responseObjects": [
484
+ {
485
+ "type": "default",
486
+ "key": "",
487
+ "mockFile": ""
488
+ }
489
+ ]
490
+ },
491
+ {
492
+ "name": "apiConfigVaultAccountGroupAccountIndex",
493
+ "protocol": "REST",
494
+ "method": "GET",
495
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/account?{query}",
496
+ "requestSchema": "schema.json",
497
+ "responseSchema": "schema.json",
498
+ "timeout": 0,
499
+ "sendEmpty": false,
500
+ "sendGetBody": false,
501
+ "requestDatatype": "JSON",
502
+ "responseDatatype": "JSON",
503
+ "headers": {},
504
+ "responseObjects": [
505
+ {
506
+ "type": "default",
507
+ "key": "",
508
+ "mockFile": "mockdatafiles/apiConfigVaultAccountGroupAccountIndex-default.json"
509
+ }
510
+ ]
511
+ },
512
+ {
513
+ "name": "apiConfigVaultAccountGroupAccountStore",
514
+ "protocol": "REST",
515
+ "method": "POST",
516
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/account?{query}",
517
+ "requestSchema": "schema.json",
518
+ "responseSchema": "schema.json",
519
+ "timeout": 0,
520
+ "sendEmpty": false,
521
+ "requestDatatype": "JSON",
522
+ "responseDatatype": "JSON",
523
+ "headers": {},
524
+ "responseObjects": [
525
+ {
526
+ "type": "default",
527
+ "key": "",
528
+ "mockFile": ""
529
+ }
530
+ ]
531
+ },
532
+ {
533
+ "name": "apiConfigVaultAccountGroupAccountShow",
534
+ "protocol": "REST",
535
+ "method": "GET",
536
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/account/{pathv2}?{query}",
537
+ "requestSchema": "schema.json",
538
+ "responseSchema": "schema.json",
539
+ "timeout": 0,
540
+ "sendEmpty": false,
541
+ "sendGetBody": false,
542
+ "requestDatatype": "JSON",
543
+ "responseDatatype": "JSON",
544
+ "headers": {},
545
+ "responseObjects": [
546
+ {
547
+ "type": "default",
548
+ "key": "",
549
+ "mockFile": ""
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "name": "apiConfigVaultAccountGroupAccountDestroy",
555
+ "protocol": "REST",
556
+ "method": "DELETE",
557
+ "entitypath": "{base_path}/{version}/vault/account-group/{pathv1}/account/{pathv2}?{query}",
558
+ "requestSchema": "schema.json",
559
+ "responseSchema": "schema.json",
560
+ "timeout": 0,
561
+ "sendEmpty": false,
562
+ "requestDatatype": "JSON",
563
+ "responseDatatype": "JSON",
564
+ "headers": {},
565
+ "responseObjects": [
566
+ {
567
+ "type": "default",
568
+ "key": "",
569
+ "mockFile": ""
570
+ }
571
+ ]
572
+ },
573
+ {
574
+ "name": "apiConfigVaultAccountPolicyIndex",
575
+ "protocol": "REST",
576
+ "method": "GET",
577
+ "entitypath": "{base_path}/{version}/vault/account-policy?{query}",
578
+ "requestSchema": "schema.json",
579
+ "responseSchema": "schema.json",
580
+ "timeout": 0,
581
+ "sendEmpty": false,
582
+ "sendGetBody": false,
583
+ "requestDatatype": "JSON",
584
+ "responseDatatype": "JSON",
585
+ "headers": {},
586
+ "responseObjects": [
587
+ {
588
+ "type": "default",
589
+ "key": "",
590
+ "mockFile": ""
591
+ }
592
+ ]
593
+ },
594
+ {
595
+ "name": "apiConfigVaultAccountPolicyStore",
596
+ "protocol": "REST",
597
+ "method": "POST",
598
+ "entitypath": "{base_path}/{version}/vault/account-policy?{query}",
599
+ "requestSchema": "schema.json",
600
+ "responseSchema": "schema.json",
601
+ "timeout": 0,
602
+ "sendEmpty": false,
603
+ "requestDatatype": "JSON",
604
+ "responseDatatype": "JSON",
605
+ "headers": {},
606
+ "responseObjects": [
607
+ {
608
+ "type": "default",
609
+ "key": "",
610
+ "mockFile": ""
611
+ }
612
+ ]
613
+ },
614
+ {
615
+ "name": "apiConfigVaultAccountPolicyShow",
616
+ "protocol": "REST",
617
+ "method": "GET",
618
+ "entitypath": "{base_path}/{version}/vault/account-policy/{pathv1}?{query}",
619
+ "requestSchema": "schema.json",
620
+ "responseSchema": "schema.json",
621
+ "timeout": 0,
622
+ "sendEmpty": false,
623
+ "sendGetBody": false,
624
+ "requestDatatype": "JSON",
625
+ "responseDatatype": "JSON",
626
+ "headers": {},
627
+ "responseObjects": [
628
+ {
629
+ "type": "default",
630
+ "key": "",
631
+ "mockFile": ""
632
+ }
633
+ ]
634
+ },
635
+ {
636
+ "name": "apiConfigVaultAccountPolicyDestroy",
637
+ "protocol": "REST",
638
+ "method": "DELETE",
639
+ "entitypath": "{base_path}/{version}/vault/account-policy/{pathv1}?{query}",
640
+ "requestSchema": "schema.json",
641
+ "responseSchema": "schema.json",
642
+ "timeout": 0,
643
+ "sendEmpty": false,
644
+ "requestDatatype": "JSON",
645
+ "responseDatatype": "JSON",
646
+ "headers": {},
647
+ "responseObjects": [
648
+ {
649
+ "type": "default",
650
+ "key": "",
651
+ "mockFile": ""
652
+ }
653
+ ]
654
+ },
655
+ {
656
+ "name": "apiConfigVaultAccountPolicyUpdate",
657
+ "protocol": "REST",
658
+ "method": "PATCH",
659
+ "entitypath": "{base_path}/{version}/vault/account-policy/{pathv1}?{query}",
660
+ "requestSchema": "schema.json",
661
+ "responseSchema": "schema.json",
662
+ "timeout": 0,
663
+ "sendEmpty": false,
664
+ "requestDatatype": "JSON",
665
+ "responseDatatype": "JSON",
666
+ "headers": {},
667
+ "responseObjects": [
668
+ {
669
+ "type": "default",
670
+ "key": "",
671
+ "mockFile": ""
672
+ }
673
+ ]
674
+ }
675
+ ]
676
+ }
@@ -0,0 +1,18 @@
1
+ [
2
+ {
3
+ "account_id": 2,
4
+ "account_group_id": 4
5
+ },
6
+ {
7
+ "account_id": 10,
8
+ "account_group_id": 8
9
+ },
10
+ {
11
+ "account_id": 9,
12
+ "account_group_id": 7
13
+ },
14
+ {
15
+ "account_id": 1,
16
+ "account_group_id": 7
17
+ }
18
+ ]