@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,495 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "apiConfigGroupPolicyIndex",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/group-policy?{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/apiConfigGroupPolicyIndex-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "apiConfigGroupPolicyDestroy",
26
+ "protocol": "REST",
27
+ "method": "DELETE",
28
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}?{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": "apiConfigVaultGroupPolicyCopy",
46
+ "protocol": "REST",
47
+ "method": "POST",
48
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/copy?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "apiConfigGroupPolicyJumpointsIndex",
66
+ "protocol": "REST",
67
+ "method": "GET",
68
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jumpoint?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "sendGetBody": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": "mockdatafiles/apiConfigGroupPolicyJumpointsIndex-default.json"
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "apiConfigGroupPolicyJumpointsStore",
87
+ "protocol": "REST",
88
+ "method": "POST",
89
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jumpoint?{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": "apiConfigGroupPolicyProvision",
107
+ "protocol": "REST",
108
+ "method": "POST",
109
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/provision?{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": "apiConfigGroupPolicyJumpointsShow",
127
+ "protocol": "REST",
128
+ "method": "GET",
129
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jumpoint/{pathv2}?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "sendGetBody": false,
135
+ "requestDatatype": "JSON",
136
+ "responseDatatype": "JSON",
137
+ "headers": {},
138
+ "responseObjects": [
139
+ {
140
+ "type": "default",
141
+ "key": "",
142
+ "mockFile": ""
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "apiConfigGroupPolicyJumpointsDestroy",
148
+ "protocol": "REST",
149
+ "method": "DELETE",
150
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jumpoint/{pathv2}?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "requestDatatype": "JSON",
156
+ "responseDatatype": "JSON",
157
+ "headers": {},
158
+ "responseObjects": [
159
+ {
160
+ "type": "default",
161
+ "key": "",
162
+ "mockFile": ""
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "name": "apiConfigGroupPolicyMemberIndex",
168
+ "protocol": "REST",
169
+ "method": "GET",
170
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/member?{query}",
171
+ "requestSchema": "schema.json",
172
+ "responseSchema": "schema.json",
173
+ "timeout": 0,
174
+ "sendEmpty": false,
175
+ "sendGetBody": false,
176
+ "requestDatatype": "JSON",
177
+ "responseDatatype": "JSON",
178
+ "headers": {},
179
+ "responseObjects": [
180
+ {
181
+ "type": "default",
182
+ "key": "",
183
+ "mockFile": "mockdatafiles/apiConfigGroupPolicyMemberIndex-default.json"
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "name": "apiConfigGroupPolicyMemberStore",
189
+ "protocol": "REST",
190
+ "method": "POST",
191
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/member?{query}",
192
+ "requestSchema": "schema.json",
193
+ "responseSchema": "schema.json",
194
+ "timeout": 0,
195
+ "sendEmpty": false,
196
+ "requestDatatype": "JSON",
197
+ "responseDatatype": "JSON",
198
+ "headers": {},
199
+ "responseObjects": [
200
+ {
201
+ "type": "default",
202
+ "key": "",
203
+ "mockFile": ""
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "name": "apiConfigGroupPolicyMemberShow",
209
+ "protocol": "REST",
210
+ "method": "GET",
211
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/member/{pathv2}?{query}",
212
+ "requestSchema": "schema.json",
213
+ "responseSchema": "schema.json",
214
+ "timeout": 0,
215
+ "sendEmpty": false,
216
+ "sendGetBody": 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": "apiConfigGroupPolicyMemberDestroy",
230
+ "protocol": "REST",
231
+ "method": "DELETE",
232
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/member/{pathv2}?{query}",
233
+ "requestSchema": "schema.json",
234
+ "responseSchema": "schema.json",
235
+ "timeout": 0,
236
+ "sendEmpty": false,
237
+ "requestDatatype": "JSON",
238
+ "responseDatatype": "JSON",
239
+ "headers": {},
240
+ "responseObjects": [
241
+ {
242
+ "type": "default",
243
+ "key": "",
244
+ "mockFile": ""
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "name": "apiConfigGroupPolicyJumpGroupIndex",
250
+ "protocol": "REST",
251
+ "method": "GET",
252
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jump-group?{query}",
253
+ "requestSchema": "schema.json",
254
+ "responseSchema": "schema.json",
255
+ "timeout": 0,
256
+ "sendEmpty": false,
257
+ "sendGetBody": false,
258
+ "requestDatatype": "JSON",
259
+ "responseDatatype": "JSON",
260
+ "headers": {},
261
+ "responseObjects": [
262
+ {
263
+ "type": "default",
264
+ "key": "",
265
+ "mockFile": "mockdatafiles/apiConfigGroupPolicyJumpGroupIndex-default.json"
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "name": "apiConfigGroupPolicyJumpGroupStore",
271
+ "protocol": "REST",
272
+ "method": "POST",
273
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jump-group?{query}",
274
+ "requestSchema": "schema.json",
275
+ "responseSchema": "schema.json",
276
+ "timeout": 0,
277
+ "sendEmpty": false,
278
+ "requestDatatype": "JSON",
279
+ "responseDatatype": "JSON",
280
+ "headers": {},
281
+ "responseObjects": [
282
+ {
283
+ "type": "default",
284
+ "key": "",
285
+ "mockFile": ""
286
+ }
287
+ ]
288
+ },
289
+ {
290
+ "name": "apiConfigGroupPolicyJumpGroupShow",
291
+ "protocol": "REST",
292
+ "method": "GET",
293
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jump-group/{pathv2}?{query}",
294
+ "requestSchema": "schema.json",
295
+ "responseSchema": "schema.json",
296
+ "timeout": 0,
297
+ "sendEmpty": false,
298
+ "sendGetBody": 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": "apiConfigGroupPolicyJumpGroupDestroy",
312
+ "protocol": "REST",
313
+ "method": "DELETE",
314
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/jump-group/{pathv2}?{query}",
315
+ "requestSchema": "schema.json",
316
+ "responseSchema": "schema.json",
317
+ "timeout": 0,
318
+ "sendEmpty": false,
319
+ "requestDatatype": "JSON",
320
+ "responseDatatype": "JSON",
321
+ "headers": {},
322
+ "responseObjects": [
323
+ {
324
+ "type": "default",
325
+ "key": "",
326
+ "mockFile": ""
327
+ }
328
+ ]
329
+ },
330
+ {
331
+ "name": "apiConfigGroupPolicyVaultAccountIndex",
332
+ "protocol": "REST",
333
+ "method": "GET",
334
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/vault-account?{query}",
335
+ "requestSchema": "schema.json",
336
+ "responseSchema": "schema.json",
337
+ "timeout": 0,
338
+ "sendEmpty": false,
339
+ "sendGetBody": false,
340
+ "requestDatatype": "JSON",
341
+ "responseDatatype": "JSON",
342
+ "headers": {},
343
+ "responseObjects": [
344
+ {
345
+ "type": "default",
346
+ "key": "",
347
+ "mockFile": "mockdatafiles/apiConfigGroupPolicyVaultAccountIndex-default.json"
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "name": "apiConfigGroupPolicyVaultAccountStore",
353
+ "protocol": "REST",
354
+ "method": "POST",
355
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/vault-account?{query}",
356
+ "requestSchema": "schema.json",
357
+ "responseSchema": "schema.json",
358
+ "timeout": 0,
359
+ "sendEmpty": false,
360
+ "requestDatatype": "JSON",
361
+ "responseDatatype": "JSON",
362
+ "headers": {},
363
+ "responseObjects": [
364
+ {
365
+ "type": "default",
366
+ "key": "",
367
+ "mockFile": ""
368
+ }
369
+ ]
370
+ },
371
+ {
372
+ "name": "apiConfigGroupPolicyVaultAccountShow",
373
+ "protocol": "REST",
374
+ "method": "GET",
375
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/vault-account/{pathv2}?{query}",
376
+ "requestSchema": "schema.json",
377
+ "responseSchema": "schema.json",
378
+ "timeout": 0,
379
+ "sendEmpty": false,
380
+ "sendGetBody": false,
381
+ "requestDatatype": "JSON",
382
+ "responseDatatype": "JSON",
383
+ "headers": {},
384
+ "responseObjects": [
385
+ {
386
+ "type": "default",
387
+ "key": "",
388
+ "mockFile": ""
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "name": "apiConfigGroupPolicyVaultAccountDestroy",
394
+ "protocol": "REST",
395
+ "method": "DELETE",
396
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/vault-account/{pathv2}?{query}",
397
+ "requestSchema": "schema.json",
398
+ "responseSchema": "schema.json",
399
+ "timeout": 0,
400
+ "sendEmpty": false,
401
+ "requestDatatype": "JSON",
402
+ "responseDatatype": "JSON",
403
+ "headers": {},
404
+ "responseObjects": [
405
+ {
406
+ "type": "default",
407
+ "key": "",
408
+ "mockFile": ""
409
+ }
410
+ ]
411
+ },
412
+ {
413
+ "name": "apiConfigGroupPolicyTeamIndex",
414
+ "protocol": "REST",
415
+ "method": "GET",
416
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/team?{query}",
417
+ "requestSchema": "schema.json",
418
+ "responseSchema": "schema.json",
419
+ "timeout": 0,
420
+ "sendEmpty": false,
421
+ "sendGetBody": false,
422
+ "requestDatatype": "JSON",
423
+ "responseDatatype": "JSON",
424
+ "headers": {},
425
+ "responseObjects": [
426
+ {
427
+ "type": "default",
428
+ "key": "",
429
+ "mockFile": "mockdatafiles/apiConfigGroupPolicyTeamIndex-default.json"
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "name": "apiConfigGroupPolicyTeamStore",
435
+ "protocol": "REST",
436
+ "method": "POST",
437
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/team?{query}",
438
+ "requestSchema": "schema.json",
439
+ "responseSchema": "schema.json",
440
+ "timeout": 0,
441
+ "sendEmpty": false,
442
+ "requestDatatype": "JSON",
443
+ "responseDatatype": "JSON",
444
+ "headers": {},
445
+ "responseObjects": [
446
+ {
447
+ "type": "default",
448
+ "key": "",
449
+ "mockFile": ""
450
+ }
451
+ ]
452
+ },
453
+ {
454
+ "name": "apiConfigGroupPolicyTeamShow",
455
+ "protocol": "REST",
456
+ "method": "GET",
457
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/team/{pathv2}?{query}",
458
+ "requestSchema": "schema.json",
459
+ "responseSchema": "schema.json",
460
+ "timeout": 0,
461
+ "sendEmpty": false,
462
+ "sendGetBody": false,
463
+ "requestDatatype": "JSON",
464
+ "responseDatatype": "JSON",
465
+ "headers": {},
466
+ "responseObjects": [
467
+ {
468
+ "type": "default",
469
+ "key": "",
470
+ "mockFile": ""
471
+ }
472
+ ]
473
+ },
474
+ {
475
+ "name": "apiConfigGroupPolicyTeamDestroy",
476
+ "protocol": "REST",
477
+ "method": "DELETE",
478
+ "entitypath": "{base_path}/{version}/group-policy/{pathv1}/team/{pathv2}?{query}",
479
+ "requestSchema": "schema.json",
480
+ "responseSchema": "schema.json",
481
+ "timeout": 0,
482
+ "sendEmpty": false,
483
+ "requestDatatype": "JSON",
484
+ "responseDatatype": "JSON",
485
+ "headers": {},
486
+ "responseObjects": [
487
+ {
488
+ "type": "default",
489
+ "key": "",
490
+ "mockFile": ""
491
+ }
492
+ ]
493
+ }
494
+ ]
495
+ }
@@ -0,0 +1,18 @@
1
+ [
2
+ {
3
+ "id": 4,
4
+ "name": "string"
5
+ },
6
+ {
7
+ "id": 5,
8
+ "name": "string"
9
+ },
10
+ {
11
+ "id": 8,
12
+ "name": "string"
13
+ },
14
+ {
15
+ "id": 3,
16
+ "name": "string"
17
+ }
18
+ ]
@@ -0,0 +1,12 @@
1
+ [
2
+ {
3
+ "jump_group_id": 4,
4
+ "jump_item_role_id": 5,
5
+ "jump_policy_id": 2
6
+ },
7
+ {
8
+ "jump_group_id": 1,
9
+ "jump_item_role_id": 6,
10
+ "jump_policy_id": 3
11
+ }
12
+ ]
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "jumpoint_id": 3
4
+ },
5
+ {
6
+ "jumpoint_id": 6
7
+ }
8
+ ]
@@ -0,0 +1,26 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "security_provider_id": 10,
5
+ "distinguished_name": "string",
6
+ "group_name": "string"
7
+ },
8
+ {
9
+ "id": 5,
10
+ "security_provider_id": 4,
11
+ "distinguished_name": "string",
12
+ "group_name": "string"
13
+ },
14
+ {
15
+ "id": 6,
16
+ "security_provider_id": 2,
17
+ "distinguished_name": "string",
18
+ "group_name": "string"
19
+ },
20
+ {
21
+ "id": 6,
22
+ "security_provider_id": 7,
23
+ "distinguished_name": "string",
24
+ "group_name": "string"
25
+ }
26
+ ]
@@ -0,0 +1,10 @@
1
+ [
2
+ {
3
+ "team_id": 1,
4
+ "role": null
5
+ },
6
+ {
7
+ "team_id": 4,
8
+ "role": null
9
+ }
10
+ ]
@@ -0,0 +1,7 @@
1
+ [
2
+ {
3
+ "group_policy_id": 3,
4
+ "account_id": 8,
5
+ "role": null
6
+ }
7
+ ]