@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,72 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": true,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "apiConfigJumpGroupIndex",
12
+ "enum": [
13
+ "apiConfigJumpGroupIndex",
14
+ "apiConfigJumpGroupStore",
15
+ "apiConfigJumpGroupShow",
16
+ "apiConfigJumpGroupUpdate",
17
+ "apiConfigJumpGroupDestroy",
18
+ "apiConfigJumpGroupUserIndex",
19
+ "apiConfigJumpGroupUserStore",
20
+ "apiConfigJumpGroupUserUpdate",
21
+ "apiConfigJumpGroupUserDestroy",
22
+ "apiConfigJumpGroupUserShow"
23
+ ],
24
+ "external_name": "ph_request_type"
25
+ },
26
+ "perPage": {
27
+ "type": "number",
28
+ "description": "The number of items to include a paginated response.",
29
+ "parse": false,
30
+ "encode": false,
31
+ "encrypt": {
32
+ "type": "AES",
33
+ "key": ""
34
+ },
35
+ "external_name": "per_page"
36
+ },
37
+ "currentPage": {
38
+ "type": "number",
39
+ "description": "The 1-based index of the desired page.",
40
+ "parse": false,
41
+ "encode": false,
42
+ "encrypt": {
43
+ "type": "AES",
44
+ "key": ""
45
+ },
46
+ "external_name": "current_page"
47
+ },
48
+ "codeName": {
49
+ "type": "string",
50
+ "description": "Filters a response to include only resources with the given code name.",
51
+ "parse": false,
52
+ "encode": false,
53
+ "encrypt": {
54
+ "type": "AES",
55
+ "key": ""
56
+ },
57
+ "external_name": "code_name"
58
+ },
59
+ "userId": {
60
+ "type": "number",
61
+ "description": "The unique id of the user.",
62
+ "parse": false,
63
+ "encode": false,
64
+ "encrypt": {
65
+ "type": "AES",
66
+ "key": ""
67
+ },
68
+ "external_name": "user_id"
69
+ }
70
+ },
71
+ "definitions": {}
72
+ }
@@ -0,0 +1,370 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "apiConfigJumpItemRemoteRdpIndex",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp?{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/apiConfigJumpItemRemoteRdpIndex-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "apiConfigJumpItemRemoteRdpStore",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp?{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": "apiConfigJumpItemRemoteRdpShow",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp/{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": "apiConfigJumpItemRemoteRdpUpdate",
67
+ "protocol": "REST",
68
+ "method": "PATCH",
69
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp/{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": "apiConfigJumpItemRemoteRdpDestroy",
87
+ "protocol": "REST",
88
+ "method": "DELETE",
89
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp/{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": "apiConfigJumpItemRemoteRdpCopy",
107
+ "protocol": "REST",
108
+ "method": "POST",
109
+ "entitypath": "{base_path}/{version}/jump-item/remote-rdp/{pathv1}/copy?{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": "apiConfigJumpItemShellJumpIndex",
127
+ "protocol": "REST",
128
+ "method": "GET",
129
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump?{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": "mockdatafiles/apiConfigJumpItemShellJumpIndex-default.json"
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "apiConfigJumpItemShellJumpStore",
148
+ "protocol": "REST",
149
+ "method": "POST",
150
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump?{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": "apiConfigJumpItemShellJumpShow",
168
+ "protocol": "REST",
169
+ "method": "GET",
170
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump/{pathv1}?{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": ""
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "name": "apiConfigJumpItemShellJumpUpdate",
189
+ "protocol": "REST",
190
+ "method": "PATCH",
191
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump/{pathv1}?{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": "apiConfigJumpItemShellJumpDestroy",
209
+ "protocol": "REST",
210
+ "method": "DELETE",
211
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump/{pathv1}?{query}",
212
+ "requestSchema": "schema.json",
213
+ "responseSchema": "schema.json",
214
+ "timeout": 0,
215
+ "sendEmpty": false,
216
+ "requestDatatype": "JSON",
217
+ "responseDatatype": "JSON",
218
+ "headers": {},
219
+ "responseObjects": [
220
+ {
221
+ "type": "default",
222
+ "key": "",
223
+ "mockFile": ""
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "name": "apiConfigJumpItemShellJumpCopy",
229
+ "protocol": "REST",
230
+ "method": "POST",
231
+ "entitypath": "{base_path}/{version}/jump-item/shell-jump/{pathv1}/copy?{query}",
232
+ "requestSchema": "schema.json",
233
+ "responseSchema": "schema.json",
234
+ "timeout": 0,
235
+ "sendEmpty": 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": "apiConfigJumpItemWebJumpIndex",
249
+ "protocol": "REST",
250
+ "method": "GET",
251
+ "entitypath": "{base_path}/{version}/jump-item/web-jump?{query}",
252
+ "requestSchema": "schema.json",
253
+ "responseSchema": "schema.json",
254
+ "timeout": 0,
255
+ "sendEmpty": false,
256
+ "sendGetBody": false,
257
+ "requestDatatype": "JSON",
258
+ "responseDatatype": "JSON",
259
+ "headers": {},
260
+ "responseObjects": [
261
+ {
262
+ "type": "default",
263
+ "key": "",
264
+ "mockFile": "mockdatafiles/apiConfigJumpItemWebJumpIndex-default.json"
265
+ }
266
+ ]
267
+ },
268
+ {
269
+ "name": "apiConfigJumpItemWebJumpStore",
270
+ "protocol": "REST",
271
+ "method": "POST",
272
+ "entitypath": "{base_path}/{version}/jump-item/web-jump?{query}",
273
+ "requestSchema": "schema.json",
274
+ "responseSchema": "schema.json",
275
+ "timeout": 0,
276
+ "sendEmpty": false,
277
+ "requestDatatype": "JSON",
278
+ "responseDatatype": "JSON",
279
+ "headers": {},
280
+ "responseObjects": [
281
+ {
282
+ "type": "default",
283
+ "key": "",
284
+ "mockFile": ""
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "name": "apiConfigJumpItemWebJumpShow",
290
+ "protocol": "REST",
291
+ "method": "GET",
292
+ "entitypath": "{base_path}/{version}/jump-item/web-jump/{pathv1}?{query}",
293
+ "requestSchema": "schema.json",
294
+ "responseSchema": "schema.json",
295
+ "timeout": 0,
296
+ "sendEmpty": false,
297
+ "sendGetBody": false,
298
+ "requestDatatype": "JSON",
299
+ "responseDatatype": "JSON",
300
+ "headers": {},
301
+ "responseObjects": [
302
+ {
303
+ "type": "default",
304
+ "key": "",
305
+ "mockFile": ""
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "name": "apiConfigJumpItemWebJumpDestroy",
311
+ "protocol": "REST",
312
+ "method": "DELETE",
313
+ "entitypath": "{base_path}/{version}/jump-item/web-jump/{pathv1}?{query}",
314
+ "requestSchema": "schema.json",
315
+ "responseSchema": "schema.json",
316
+ "timeout": 0,
317
+ "sendEmpty": false,
318
+ "requestDatatype": "JSON",
319
+ "responseDatatype": "JSON",
320
+ "headers": {},
321
+ "responseObjects": [
322
+ {
323
+ "type": "default",
324
+ "key": "",
325
+ "mockFile": ""
326
+ }
327
+ ]
328
+ },
329
+ {
330
+ "name": "apiConfigJumpItemWebJumpUpdate",
331
+ "protocol": "REST",
332
+ "method": "PATCH",
333
+ "entitypath": "{base_path}/{version}/jump-item/web-jump/{pathv1}?{query}",
334
+ "requestSchema": "schema.json",
335
+ "responseSchema": "schema.json",
336
+ "timeout": 0,
337
+ "sendEmpty": 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": "apiConfigJumpItemWebJumpCopy",
351
+ "protocol": "REST",
352
+ "method": "POST",
353
+ "entitypath": "{base_path}/{version}/jump-item/web-jump/{pathv1}/copy?{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
+ }
@@ -0,0 +1,52 @@
1
+ [
2
+ {
3
+ "id": 8,
4
+ "name": "string",
5
+ "jumpoint_id": 8,
6
+ "hostname": "string",
7
+ "jump_group_id": 3,
8
+ "jump_group_type": null,
9
+ "quality": null,
10
+ "console": false,
11
+ "ignore_untrusted": true,
12
+ "tag": "string",
13
+ "comments": "string",
14
+ "rdp_username": "string",
15
+ "domain": "string",
16
+ "jump_policy_id": 9,
17
+ "session_forensics": true,
18
+ "session_policy_id": 8,
19
+ "secure_app_type": null,
20
+ "remote_app_name": "string",
21
+ "remote_app_params": "string",
22
+ "remote_exe_path": "string",
23
+ "remote_exe_params": "string",
24
+ "target_system": "string",
25
+ "credential_type": "string"
26
+ },
27
+ {
28
+ "id": 9,
29
+ "name": "string",
30
+ "jumpoint_id": 5,
31
+ "hostname": "string",
32
+ "jump_group_id": 7,
33
+ "jump_group_type": null,
34
+ "quality": null,
35
+ "console": false,
36
+ "ignore_untrusted": false,
37
+ "tag": "string",
38
+ "comments": "string",
39
+ "rdp_username": "string",
40
+ "domain": "string",
41
+ "jump_policy_id": 5,
42
+ "session_forensics": true,
43
+ "session_policy_id": 6,
44
+ "secure_app_type": null,
45
+ "remote_app_name": "string",
46
+ "remote_app_params": "string",
47
+ "remote_exe_path": "string",
48
+ "remote_exe_params": "string",
49
+ "target_system": "string",
50
+ "credential_type": "string"
51
+ }
52
+ ]
@@ -0,0 +1,70 @@
1
+ [
2
+ {
3
+ "id": 5,
4
+ "name": "string",
5
+ "jumpoint_id": 7,
6
+ "hostname": "string",
7
+ "protocol": "ssh",
8
+ "port": 2,
9
+ "jump_group_id": 4,
10
+ "jump_group_type": null,
11
+ "terminal": null,
12
+ "keep_alive": 8,
13
+ "tag": "string",
14
+ "comments": "string",
15
+ "jump_policy_id": 6,
16
+ "username": "string",
17
+ "session_policy_id": 6
18
+ },
19
+ {
20
+ "id": 9,
21
+ "name": "string",
22
+ "jumpoint_id": 3,
23
+ "hostname": "string",
24
+ "protocol": "telnet",
25
+ "port": 1,
26
+ "jump_group_id": 5,
27
+ "jump_group_type": null,
28
+ "terminal": null,
29
+ "keep_alive": 9,
30
+ "tag": "string",
31
+ "comments": "string",
32
+ "jump_policy_id": 7,
33
+ "username": "string",
34
+ "session_policy_id": 1
35
+ },
36
+ {
37
+ "id": 3,
38
+ "name": "string",
39
+ "jumpoint_id": 9,
40
+ "hostname": "string",
41
+ "protocol": "telnet",
42
+ "port": 1,
43
+ "jump_group_id": 2,
44
+ "jump_group_type": null,
45
+ "terminal": null,
46
+ "keep_alive": 2,
47
+ "tag": "string",
48
+ "comments": "string",
49
+ "jump_policy_id": 4,
50
+ "username": "string",
51
+ "session_policy_id": 7
52
+ },
53
+ {
54
+ "id": 7,
55
+ "name": "string",
56
+ "jumpoint_id": 9,
57
+ "hostname": "string",
58
+ "protocol": "telnet",
59
+ "port": 1,
60
+ "jump_group_id": 2,
61
+ "jump_group_type": null,
62
+ "terminal": null,
63
+ "keep_alive": 3,
64
+ "tag": "string",
65
+ "comments": "string",
66
+ "jump_policy_id": 8,
67
+ "username": "string",
68
+ "session_policy_id": 3
69
+ }
70
+ ]
@@ -0,0 +1,38 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "name": "string",
5
+ "jumpoint_id": 7,
6
+ "url": "string",
7
+ "username_format": null,
8
+ "verify_certificate": true,
9
+ "jump_group_id": 8,
10
+ "jump_group_type": null,
11
+ "authentication_timeout": 1,
12
+ "tag": "string",
13
+ "comments": "string",
14
+ "jump_policy_id": 7,
15
+ "username_field": "string",
16
+ "password_field": "string",
17
+ "submit_field": "string",
18
+ "session_policy_id": 6
19
+ },
20
+ {
21
+ "id": 3,
22
+ "name": "string",
23
+ "jumpoint_id": 7,
24
+ "url": "string",
25
+ "username_format": null,
26
+ "verify_certificate": true,
27
+ "jump_group_id": 10,
28
+ "jump_group_type": null,
29
+ "authentication_timeout": 3,
30
+ "tag": "string",
31
+ "comments": "string",
32
+ "jump_policy_id": 2,
33
+ "username_field": "string",
34
+ "password_field": "string",
35
+ "submit_field": "string",
36
+ "session_policy_id": 1
37
+ }
38
+ ]
@@ -0,0 +1,91 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": true,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "apiConfigJumpItemRemoteRdpIndex",
12
+ "enum": [
13
+ "apiConfigJumpItemRemoteRdpIndex",
14
+ "apiConfigJumpItemRemoteRdpStore",
15
+ "apiConfigJumpItemRemoteRdpShow",
16
+ "apiConfigJumpItemRemoteRdpUpdate",
17
+ "apiConfigJumpItemRemoteRdpDestroy",
18
+ "apiConfigJumpItemRemoteRdpCopy",
19
+ "apiConfigJumpItemShellJumpIndex",
20
+ "apiConfigJumpItemShellJumpStore",
21
+ "apiConfigJumpItemShellJumpShow",
22
+ "apiConfigJumpItemShellJumpUpdate",
23
+ "apiConfigJumpItemShellJumpDestroy",
24
+ "apiConfigJumpItemShellJumpCopy",
25
+ "apiConfigJumpItemWebJumpIndex",
26
+ "apiConfigJumpItemWebJumpStore",
27
+ "apiConfigJumpItemWebJumpShow",
28
+ "apiConfigJumpItemWebJumpDestroy",
29
+ "apiConfigJumpItemWebJumpUpdate",
30
+ "apiConfigJumpItemWebJumpCopy"
31
+ ],
32
+ "external_name": "ph_request_type"
33
+ },
34
+ "perPage": {
35
+ "type": "number",
36
+ "description": "The number of items to include a paginated response.",
37
+ "parse": false,
38
+ "encode": false,
39
+ "encrypt": {
40
+ "type": "AES",
41
+ "key": ""
42
+ },
43
+ "external_name": "per_page"
44
+ },
45
+ "currentPage": {
46
+ "type": "number",
47
+ "description": "The 1-based index of the desired page.",
48
+ "parse": false,
49
+ "encode": false,
50
+ "encrypt": {
51
+ "type": "AES",
52
+ "key": ""
53
+ },
54
+ "external_name": "current_page"
55
+ },
56
+ "jumpGroupId": {
57
+ "type": "number",
58
+ "description": "Filters results to include only the web jump items with the given Jump Group id.",
59
+ "parse": false,
60
+ "encode": false,
61
+ "encrypt": {
62
+ "type": "AES",
63
+ "key": ""
64
+ },
65
+ "external_name": "jump_group_id"
66
+ },
67
+ "jumpGroupType": {
68
+ "type": "string",
69
+ "description": "Filters results to include only the web jump items with the given Jump Group type.",
70
+ "parse": false,
71
+ "encode": false,
72
+ "encrypt": {
73
+ "type": "AES",
74
+ "key": ""
75
+ },
76
+ "external_name": "jump_group_type"
77
+ },
78
+ "jumpointId": {
79
+ "type": "number",
80
+ "description": "Filters results to include only the web jump items with the given Jumpoint id.",
81
+ "parse": false,
82
+ "encode": false,
83
+ "encrypt": {
84
+ "type": "AES",
85
+ "key": ""
86
+ },
87
+ "external_name": "jumpoint_id"
88
+ }
89
+ },
90
+ "definitions": {}
91
+ }