@itentialopensource/adapter-gitlab 0.8.1 → 0.10.0

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 (47) hide show
  1. package/AUTH.md +10 -16
  2. package/CALLS.md +3317 -22
  3. package/CHANGELOG.md +16 -0
  4. package/CONTRIBUTING.md +1 -160
  5. package/ENHANCE.md +2 -2
  6. package/README.md +32 -23
  7. package/SYSTEMINFO.md +10 -3
  8. package/adapter.js +178 -335
  9. package/adapterBase.js +549 -879
  10. package/changelogs/changelog.md +150 -0
  11. package/entities/application/mockdatafiles/getV4ApplicationSettings-default.json +2 -1
  12. package/metadata.json +144 -0
  13. package/package.json +25 -25
  14. package/pronghorn.json +1016 -633
  15. package/propertiesSchema.json +422 -31
  16. package/refs?service=git-upload-pack +0 -0
  17. package/report/adapter-openapi.json +22114 -0
  18. package/report/adapter-openapi.yaml +17482 -0
  19. package/report/adapterInfo.json +8 -8
  20. package/report/updateReport1691507765982.json +120 -0
  21. package/report/updateReport1692202758222.json +120 -0
  22. package/report/updateReport1694455459957.json +120 -0
  23. package/report/updateReport1694457800479.json +120 -0
  24. package/report/updateReport1694463250037.json +120 -0
  25. package/sampleProperties.json +63 -2
  26. package/test/integration/adapterTestBasicGet.js +2 -4
  27. package/test/integration/adapterTestConnectivity.js +91 -42
  28. package/test/integration/adapterTestIntegration.js +163 -2
  29. package/test/unit/adapterBaseTestUnit.js +388 -313
  30. package/test/unit/adapterTestUnit.js +369 -113
  31. package/utils/adapterInfo.js +1 -1
  32. package/utils/addAuth.js +1 -1
  33. package/utils/artifactize.js +1 -1
  34. package/utils/checkMigrate.js +1 -1
  35. package/utils/entitiesToDB.js +2 -2
  36. package/utils/findPath.js +1 -1
  37. package/utils/methodDocumentor.js +260 -0
  38. package/utils/modify.js +13 -15
  39. package/utils/packModificationScript.js +1 -1
  40. package/utils/pre-commit.sh +2 -0
  41. package/utils/taskMover.js +309 -0
  42. package/utils/tbScript.js +89 -34
  43. package/utils/tbUtils.js +41 -21
  44. package/utils/testRunner.js +1 -1
  45. package/utils/troubleshootingAdapter.js +9 -6
  46. package/workflows/Gitlab WF.json +0 -1
  47. package/workflows/README.md +0 -3
package/pronghorn.json CHANGED
@@ -10,647 +10,986 @@
10
10
  ],
11
11
  "methods": [
12
12
  {
13
- "name": "iapUpdateAdapterConfiguration",
14
- "summary": "Updates the adapter configuration",
15
- "description": "Updates the adapter configuration file with the provided changes",
16
- "input": [
17
- {
18
- "name": "configFile",
19
- "type": "string",
20
- "info": "The name of the file to change",
21
- "required": true,
22
- "schema": {
23
- "title": "configFile",
24
- "type": "string"
25
- }
26
- },
27
- {
28
- "name": "changes",
29
- "type": "object",
30
- "info": "JSON object containing the configuration changes",
31
- "required": true,
32
- "schema": {
33
- "title": "changes",
34
- "type": "object"
35
- }
36
- },
37
- {
38
- "name": "entity",
39
- "type": "string",
40
- "info": "The entity in which the changes are being made",
41
- "required": false,
42
- "schema": {
43
- "title": "entity",
44
- "type": "string"
45
- }
46
- },
47
- {
48
- "name": "type",
49
- "type": "string",
50
- "info": "The type of file to change - action, schema, or mock",
51
- "required": false,
52
- "schema": {
53
- "title": "type",
54
- "type": "string"
55
- }
56
- },
57
- {
58
- "name": "action",
59
- "type": "string",
60
- "info": "The action to be changed",
61
- "required": false,
62
- "schema": {
63
- "title": "action",
64
- "type": "string"
65
- }
66
- }
67
- ],
68
- "output": {
69
- "name": "result",
70
- "type": "object",
71
- "description": "A JSON Object containing status, code and the result",
72
- "schema": {
73
- "title": "result",
74
- "type": "object"
75
- }
76
- },
77
- "roles": [
78
- "admin"
79
- ],
80
- "route": {
81
- "verb": "POST",
82
- "path": "/iapUpdateAdapterConfiguration"
83
- },
84
- "task": true
85
- },
86
- {
87
- "name": "iapFindAdapterPath",
88
- "summary": "Provides the ability to see if a particular API path is supported by the adapter",
89
- "description": "Provides the ability to see if a particular API path is supported by the adapter",
90
- "input": [{
91
- "name": "apiPath",
92
- "type": "string",
93
- "info": "The API Path you want to check - make sure to not include base path and version",
94
- "description": "The API Path you want to check - make sure to not include base path and version",
95
- "schema": {
96
- "title": "apiPath",
97
- "type": "string"
98
- },
99
- "required": true
100
- }],
101
- "output": {
102
- "name": "result",
103
- "type": "object",
104
- "description": "A JSON Object containing the result",
105
- "schema": {
106
- "title": "result",
107
- "type": "object"
108
- }
109
- },
110
- "roles": [
111
- "admin"
112
- ],
113
- "route": {
114
- "verb": "POST",
115
- "path": "/iapFindAdapterPath"
116
- },
117
- "task": true
118
- },
119
- {
120
- "name": "iapSuspendAdapter",
121
- "summary": "Suspends the adapter",
122
- "description": "Suspends the adapter",
123
- "input": [{
124
- "name": "mode",
125
- "type": "enum",
126
- "enumerals": ["pause", "error"],
127
- "info": "How incoming requests are handled. Defaults to 'pause'",
128
- "description": "How incoming requests are handled. Defaults to 'pause'",
129
- "schema": {
130
- "title": "mode",
131
- "type": "string"
132
- },
133
- "required": false
134
- }],
135
- "output": {
136
- "name": "result",
137
- "type": "object",
138
- "description": "A JSON Object containing the adapter suspended status",
139
- "schema": {
140
- "title": "result",
141
- "type": "object"
142
- }
143
- },
144
- "roles": [
145
- "admin"
146
- ],
147
- "route": {
148
- "verb": "POST",
149
- "path": "/iapSuspendAdapter"
150
- },
151
- "task": true
152
- },
153
- {
154
- "name": "iapUnsuspendAdapter",
155
- "summary": "Unsuspends the adapter",
156
- "description": "Unsuspends the adapter",
157
- "input": [],
158
- "output": {
159
- "name": "result",
160
- "type": "object",
161
- "description": "A JSON Object containing the adapter suspended status",
162
- "schema": {
163
- "title": "result",
164
- "type": "object"
165
- }
166
- },
167
- "roles": [
168
- "admin"
169
- ],
170
- "route": {
171
- "verb": "POST",
172
- "path": "/iapUnsuspendAdapter"
173
- },
174
- "task": true
175
- },
176
- {
177
- "name": "iapGetAdapterQueue",
178
- "summary": "Return the requests that are waiting in the queue if throttling is enabled",
179
- "description": "Return the requests that are waiting in the queue if throttling is enabled",
180
- "input": [],
181
- "output": {
182
- "name": "result",
183
- "type": "object",
184
- "description": "A JSON Object containing the adapter queue",
185
- "schema": {
186
- "title": "result",
187
- "type": "object"
188
- }
189
- },
190
- "roles": [
191
- "admin"
192
- ],
193
- "route": {
194
- "verb": "POST",
195
- "path": "/iapGetAdapterQueue"
196
- },
197
- "task": true
198
- },
199
- {
200
- "name": "iapTroubleshootAdapter",
201
- "summary": "Runs troubleshoot script for adapter",
202
- "description": "Runs troubleshoot script for adapter",
203
- "input": [
204
- {
205
- "name": "props",
206
- "type": "object",
207
- "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
208
- "required": true,
209
- "schema": {
210
- "title": "props",
211
- "type": "object"
212
- }
213
- },
214
- {
215
- "name": "persistFlag",
216
- "type": "boolean",
217
- "info": "Whether the input properties should be saved",
218
- "required": true
219
- }
220
- ],
221
- "output": {
222
- "name": "result",
223
- "type": "object",
224
- "description": "A JSON Object containing the test results",
225
- "schema": {
226
- "title": "result",
227
- "type": "object"
228
- }
229
- },
230
- "roles": [
231
- "admin"
232
- ],
233
- "route": {
234
- "verb": "POST",
235
- "path": "/iapTroubleshootAdapter"
236
- },
237
- "task": true
238
- },
239
- {
240
- "name": "iapRunAdapterHealthcheck",
241
- "summary": "Runs healthcheck script for adapter",
242
- "description": "Runs healthcheck script for adapter",
243
- "input": [],
244
- "output": {
245
- "name": "result",
246
- "type": "boolean",
247
- "description": "Whether healthcheck passed or failed"
248
- },
249
- "roles": [
250
- "admin"
251
- ],
252
- "route": {
253
- "verb": "POST",
254
- "path": "/iapRunAdapterHealthcheck"
255
- },
256
- "task": true
257
- },
258
- {
259
- "name": "iapRunAdapterConnectivity",
260
- "summary": "Runs connectivity check script for adapter",
261
- "description": "Runs connectivity check script for adapter",
262
- "input": [],
263
- "output": {
264
- "name": "result",
265
- "type": "object",
266
- "description": "A JSON Object containing the test results",
267
- "schema": {
268
- "title": "result",
269
- "type": "object"
270
- }
271
- },
272
- "roles": [
273
- "admin"
274
- ],
275
- "route": {
276
- "verb": "POST",
277
- "path": "/iapRunAdapterConnectivity"
278
- },
279
- "task": true
280
- },
281
- {
282
- "name": "iapRunAdapterBasicGet",
283
- "summary": "Runs basicGet script for adapter",
284
- "description": "Runs basicGet script for adapter",
285
- "input": [],
286
- "output": {
287
- "name": "result",
288
- "type": "object",
289
- "description": "A JSON Object containing the test results",
290
- "schema": {
291
- "title": "result",
292
- "type": "object"
293
- }
294
- },
295
- "roles": [
296
- "admin"
297
- ],
298
- "route": {
299
- "verb": "POST",
300
- "path": "/iapRunAdapterBasicGet"
301
- },
302
- "task": true
303
- },
13
+ "name": "iapUpdateAdapterConfiguration",
14
+ "summary": "Updates the adapter configuration",
15
+ "description": "Updates the adapter configuration file with the provided changes",
16
+ "input": [
17
+ {
18
+ "name": "configFile",
19
+ "type": "string",
20
+ "info": "The name of the file to change",
21
+ "required": true,
22
+ "schema": {
23
+ "title": "configFile",
24
+ "type": "string"
25
+ }
26
+ },
27
+ {
28
+ "name": "changes",
29
+ "type": "object",
30
+ "info": "JSON object containing the configuration changes",
31
+ "required": true,
32
+ "schema": {
33
+ "title": "changes",
34
+ "type": "object"
35
+ }
36
+ },
37
+ {
38
+ "name": "entity",
39
+ "type": "string",
40
+ "info": "The entity in which the changes are being made",
41
+ "required": false,
42
+ "schema": {
43
+ "title": "entity",
44
+ "type": "string"
45
+ }
46
+ },
47
+ {
48
+ "name": "type",
49
+ "type": "string",
50
+ "info": "The type of file to change - action, schema, or mock",
51
+ "required": false,
52
+ "schema": {
53
+ "title": "type",
54
+ "type": "string"
55
+ }
56
+ },
57
+ {
58
+ "name": "action",
59
+ "type": "string",
60
+ "info": "The action to be changed",
61
+ "required": false,
62
+ "schema": {
63
+ "title": "action",
64
+ "type": "string"
65
+ }
66
+ },
67
+ {
68
+ "name": "replace",
69
+ "type": "boolean",
70
+ "info": "True to replace entire mock data, false to merge/append",
71
+ "required": false,
72
+ "schema": {
73
+ "title": "replace",
74
+ "type": "boolean"
75
+ }
76
+ }
77
+ ],
78
+ "output": {
79
+ "name": "result",
80
+ "type": "object",
81
+ "description": "A JSON Object containing status, code and the result",
82
+ "schema": {
83
+ "title": "result",
84
+ "type": "object"
85
+ }
86
+ },
87
+ "roles": [
88
+ "admin"
89
+ ],
90
+ "route": {
91
+ "verb": "POST",
92
+ "path": "/iapUpdateAdapterConfiguration"
93
+ },
94
+ "task": true
95
+ },
96
+ {
97
+ "name": "iapSuspendAdapter",
98
+ "summary": "Suspends the adapter",
99
+ "description": "Suspends the adapter",
100
+ "input": [
101
+ {
102
+ "name": "mode",
103
+ "type": "enum",
104
+ "enumerals": [
105
+ "pause",
106
+ "error"
107
+ ],
108
+ "info": "How incoming requests are handled. Defaults to 'pause'",
109
+ "description": "How incoming requests are handled. Defaults to 'pause'",
110
+ "schema": {
111
+ "title": "mode",
112
+ "type": "string"
113
+ },
114
+ "required": false
115
+ }
116
+ ],
117
+ "output": {
118
+ "name": "result",
119
+ "type": "object",
120
+ "description": "A JSON Object containing the adapter suspended status",
121
+ "schema": {
122
+ "title": "result",
123
+ "type": "object"
124
+ }
125
+ },
126
+ "roles": [
127
+ "admin"
128
+ ],
129
+ "route": {
130
+ "verb": "POST",
131
+ "path": "/iapSuspendAdapter"
132
+ },
133
+ "task": true
134
+ },
135
+ {
136
+ "name": "iapUnsuspendAdapter",
137
+ "summary": "Unsuspends the adapter",
138
+ "description": "Unsuspends the adapter",
139
+ "input": [],
140
+ "output": {
141
+ "name": "result",
142
+ "type": "object",
143
+ "description": "A JSON Object containing the adapter suspended status",
144
+ "schema": {
145
+ "title": "result",
146
+ "type": "object"
147
+ }
148
+ },
149
+ "roles": [
150
+ "admin"
151
+ ],
152
+ "route": {
153
+ "verb": "POST",
154
+ "path": "/iapUnsuspendAdapter"
155
+ },
156
+ "task": true
157
+ },
158
+ {
159
+ "name": "iapGetAdapterQueue",
160
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
161
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
162
+ "input": [],
163
+ "output": {
164
+ "name": "result",
165
+ "type": "object",
166
+ "description": "A JSON Object containing the adapter queue",
167
+ "schema": {
168
+ "title": "result",
169
+ "type": "object"
170
+ }
171
+ },
172
+ "roles": [
173
+ "admin"
174
+ ],
175
+ "route": {
176
+ "verb": "POST",
177
+ "path": "/iapGetAdapterQueue"
178
+ },
179
+ "task": true
180
+ },
304
181
  {
305
- "name": "iapMoveAdapterEntitiesToDB",
306
- "summary": "Moves entities from an adapter into the IAP database",
307
- "description": "Moves entities from an adapter into the IAP database",
308
- "input": [],
309
- "output": {
310
- "name": "res",
311
- "type": "object",
312
- "description": "A JSON Object containing status, code and the response from the mongo transaction",
313
- "schema": {
314
- "title": "res",
315
- "type": "object"
316
- }
317
- },
318
- "roles": [
319
- "admin"
320
- ],
321
- "route": {
322
- "verb": "POST",
323
- "path": "/iapMoveAdapterEntitiesToDB"
324
- },
325
- "task": true
326
- },
182
+ "name": "iapFindAdapterPath",
183
+ "summary": "Provides the ability to see if a particular API path is supported by the adapter",
184
+ "description": "Provides the ability to see if a particular API path is supported by the adapter",
185
+ "input": [
186
+ {
187
+ "name": "apiPath",
188
+ "type": "string",
189
+ "info": "The API Path you want to check - make sure to not include base path and version",
190
+ "description": "The API Path you want to check - make sure to not include base path and version",
191
+ "schema": {
192
+ "title": "apiPath",
193
+ "type": "string"
194
+ },
195
+ "required": true
196
+ }
197
+ ],
198
+ "output": {
199
+ "name": "result",
200
+ "type": "object",
201
+ "description": "A JSON Object containing the result",
202
+ "schema": {
203
+ "title": "result",
204
+ "type": "object"
205
+ }
206
+ },
207
+ "roles": [
208
+ "admin"
209
+ ],
210
+ "route": {
211
+ "verb": "POST",
212
+ "path": "/iapFindAdapterPath"
213
+ },
214
+ "task": true
215
+ },
327
216
  {
328
- "name": "genericAdapterRequest",
329
- "summary": "Makes the requested generic call",
330
- "description": "Makes the requested generic call",
331
- "input": [
332
- {
333
- "name": "uriPath",
334
- "type": "string",
335
- "info": "the path of the api call - do not include the host, port, base path or version",
336
- "description": "the path of the api call",
337
- "schema": {
338
- "title": "uriPath",
339
- "type": "string"
340
- },
341
- "required": true
342
- },
343
- {
344
- "name": "restMethod",
345
- "type": "string",
346
- "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
347
- "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
348
- "schema": {
349
- "title": "restMethod",
350
- "type": "string"
351
- },
352
- "required": true
353
- },
354
- {
355
- "name": "queryData",
356
- "type": "object",
357
- "info": "the query parameters to be put on the url (optional)",
358
- "description": "the query parameters to be put on the url (optional)",
359
- "schema": {
360
- "title": "queryData",
361
- "type": "object"
362
- },
363
- "required": false
364
- },
365
- {
366
- "name": "requestBody",
367
- "type": "object",
368
- "info": "the payload to be sent with the request (optional)",
369
- "description": "the payload to be sent with the request (optional)",
370
- "schema": {
371
- "title": "requestBody",
372
- "type": "object"
373
- },
374
- "required": false
375
- },
376
- {
377
- "name": "addlHeaders",
378
- "type": "object",
379
- "info": "additional headers to be put on the call (optional)",
380
- "description": "additional headers to be put on the call (optional)",
381
- "schema": {
382
- "title": "addlHeaders",
383
- "type": "object"
384
- },
385
- "required": false
386
- }
387
- ],
388
- "output": {
389
- "name": "result",
390
- "type": "object",
391
- "description": "A JSON Object containing status, code and the result",
392
- "schema": {
393
- "title": "result",
394
- "type": "object"
395
- }
396
- },
397
- "roles": [
398
- "admin"
399
- ],
400
- "route": {
401
- "verb": "POST",
402
- "path": "/genericAdapterRequest"
403
- },
404
- "task": true
405
- },
217
+ "name": "iapTroubleshootAdapter",
218
+ "summary": "Runs troubleshoot script for adapter",
219
+ "description": "Runs troubleshoot script for adapter",
220
+ "input": [
221
+ {
222
+ "name": "props",
223
+ "type": "object",
224
+ "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
225
+ "required": true,
226
+ "schema": {
227
+ "title": "props",
228
+ "type": "object"
229
+ }
230
+ },
231
+ {
232
+ "name": "persistFlag",
233
+ "type": "boolean",
234
+ "info": "Whether the input properties should be saved",
235
+ "required": true,
236
+ "schema": {
237
+ "title": "persistFlag",
238
+ "type": "boolean"
239
+ }
240
+ }
241
+ ],
242
+ "output": {
243
+ "name": "result",
244
+ "type": "object",
245
+ "description": "A JSON Object containing the test results",
246
+ "schema": {
247
+ "title": "result",
248
+ "type": "object"
249
+ }
250
+ },
251
+ "roles": [
252
+ "admin"
253
+ ],
254
+ "route": {
255
+ "verb": "POST",
256
+ "path": "/iapTroubleshootAdapter"
257
+ },
258
+ "task": true
259
+ },
406
260
  {
407
- "name": "genericAdapterRequestNoBasePath",
408
- "summary": "Makes the requested generic call with no base path or version",
409
- "description": "Makes the requested generic call with no base path or version",
410
- "input": [
411
- {
412
- "name": "uriPath",
413
- "type": "string",
414
- "info": "the path of the api call - do not include the host, port, base path or version",
415
- "description": "the path of the api call",
416
- "schema": {
417
- "title": "uriPath",
418
- "type": "string"
419
- },
420
- "required": true
421
- },
422
- {
423
- "name": "restMethod",
424
- "type": "string",
425
- "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
426
- "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
427
- "schema": {
428
- "title": "restMethod",
429
- "type": "string"
430
- },
431
- "required": true
432
- },
433
- {
434
- "name": "queryData",
435
- "type": "object",
436
- "info": "the query parameters to be put on the url (optional)",
437
- "description": "the query parameters to be put on the url (optional)",
438
- "schema": {
439
- "title": "queryData",
440
- "type": "object"
441
- },
442
- "required": false
443
- },
444
- {
445
- "name": "requestBody",
446
- "type": "object",
447
- "info": "the payload to be sent with the request (optional)",
448
- "description": "the payload to be sent with the request (optional)",
449
- "schema": {
450
- "title": "requestBody",
451
- "type": "object"
452
- },
453
- "required": false
454
- },
455
- {
456
- "name": "addlHeaders",
457
- "type": "object",
458
- "info": "additional headers to be put on the call (optional)",
459
- "description": "additional headers to be put on the call (optional)",
460
- "schema": {
461
- "title": "addlHeaders",
462
- "type": "object"
463
- },
464
- "required": false
465
- }
466
- ],
467
- "output": {
468
- "name": "result",
469
- "type": "object",
470
- "description": "A JSON Object containing status, code and the result",
471
- "schema": {
472
- "title": "result",
473
- "type": "object"
474
- }
475
- },
476
- "roles": [
477
- "admin"
478
- ],
479
- "route": {
480
- "verb": "POST",
481
- "path": "/genericAdapterRequestNoBasePath"
482
- },
483
- "task": true
484
- },
261
+ "name": "iapRunAdapterHealthcheck",
262
+ "summary": "Runs healthcheck script for adapter",
263
+ "description": "Runs healthcheck script for adapter",
264
+ "input": [],
265
+ "output": {
266
+ "name": "result",
267
+ "type": "boolean",
268
+ "description": "Whether healthcheck passed or failed",
269
+ "schema": {
270
+ "title": "result",
271
+ "type": "boolean"
272
+ }
273
+ },
274
+ "roles": [
275
+ "admin"
276
+ ],
277
+ "route": {
278
+ "verb": "POST",
279
+ "path": "/iapRunAdapterHealthcheck"
280
+ },
281
+ "task": true
282
+ },
485
283
  {
486
- "name": "getDevice",
487
- "summary": "Get the Appliance",
488
- "description": "Get the Appliance",
489
- "input": [
490
- {
491
- "name": "deviceName",
492
- "type": "string",
493
- "info": "An Appliance Device Name",
494
- "required": true,
495
- "schema": {
496
- "title": "deviceName",
497
- "type": "string"
498
- }
499
- }
500
- ],
501
- "output": {
502
- "name": "result",
503
- "type": "object",
504
- "description": "A JSON Object containing status, code and the result",
505
- "schema": {
506
- "title": "result",
507
- "type": "object"
508
- }
509
- },
510
- "roles": [
511
- "admin"
512
- ],
513
- "route": {
514
- "verb": "POST",
515
- "path": "/getDevice"
516
- },
517
- "task": false
518
- },
284
+ "name": "iapRunAdapterConnectivity",
285
+ "summary": "Runs connectivity check script for adapter",
286
+ "description": "Runs connectivity check script for adapter",
287
+ "input": [],
288
+ "output": {
289
+ "name": "result",
290
+ "type": "object",
291
+ "description": "A JSON Object containing the test results",
292
+ "schema": {
293
+ "title": "result",
294
+ "type": "object"
295
+ }
296
+ },
297
+ "roles": [
298
+ "admin"
299
+ ],
300
+ "route": {
301
+ "verb": "POST",
302
+ "path": "/iapRunAdapterConnectivity"
303
+ },
304
+ "task": true
305
+ },
519
306
  {
520
- "name": "getDevicesFiltered",
521
- "summary": "Get Appliances that match the filter",
522
- "description": "Get Appliances that match the filter",
523
- "input": [
524
- {
525
- "name": "options",
526
- "type": "object",
527
- "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
528
- "required": true,
529
- "schema": {
530
- "title": "options",
531
- "type": "object"
532
- }
533
- }
534
- ],
535
- "output": {
536
- "name": "result",
537
- "type": "array",
538
- "description": "A JSON Object containing status, code and the result",
539
- "schema": {
540
- "title": "result",
541
- "type": "array"
542
- }
543
- },
544
- "roles": [
545
- "admin"
546
- ],
547
- "route": {
548
- "verb": "POST",
549
- "path": "/getDevicesFiltered"
550
- },
551
- "task": false
552
- },
307
+ "name": "iapRunAdapterBasicGet",
308
+ "summary": "Runs basicGet script for adapter",
309
+ "description": "Runs basicGet script for adapter",
310
+ "input": [],
311
+ "output": {
312
+ "name": "result",
313
+ "type": "object",
314
+ "description": "A JSON Object containing the test results",
315
+ "schema": {
316
+ "title": "result",
317
+ "type": "object"
318
+ }
319
+ },
320
+ "roles": [
321
+ "admin"
322
+ ],
323
+ "route": {
324
+ "verb": "POST",
325
+ "path": "/iapRunAdapterBasicGet"
326
+ },
327
+ "task": true
328
+ },
553
329
  {
554
- "name": "isAlive",
555
- "summary": "Checks the status for the provided Appliance",
556
- "description": "Checks the status for the provided Appliance",
557
- "input": [
558
- {
559
- "name": "deviceName",
560
- "type": "string",
561
- "info": "An Appliance Device Name",
562
- "required": true,
563
- "schema": {
564
- "title": "deviceName",
565
- "type": "string"
566
- }
567
- }
568
- ],
569
- "output": {
570
- "name": "result",
571
- "type": "boolean",
572
- "description": "A JSON Object containing status, code and the result",
573
- "schema": {
574
- "title": "result",
575
- "type": "boolean"
576
- }
577
- },
578
- "roles": [
579
- "admin"
580
- ],
581
- "route": {
582
- "verb": "POST",
583
- "path": "/isAlive"
584
- },
585
- "task": false
586
- },
330
+ "name": "iapMoveAdapterEntitiesToDB",
331
+ "summary": "Moves entities from an adapter into the IAP database",
332
+ "description": "Moves entities from an adapter into the IAP database",
333
+ "input": [],
334
+ "output": {
335
+ "name": "res",
336
+ "type": "object",
337
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
338
+ "schema": {
339
+ "title": "res",
340
+ "type": "object"
341
+ }
342
+ },
343
+ "roles": [
344
+ "admin"
345
+ ],
346
+ "route": {
347
+ "verb": "POST",
348
+ "path": "/iapMoveAdapterEntitiesToDB"
349
+ },
350
+ "task": true
351
+ },
352
+ {
353
+ "name": "iapDeactivateTasks",
354
+ "summary": "Deactivate the inputted tasks",
355
+ "description": "Deactivate the inputted tasks",
356
+ "input": [
357
+ {
358
+ "name": "tasks",
359
+ "type": "array",
360
+ "description": "Tasks to deactivate",
361
+ "schema": {
362
+ "title": "tasks",
363
+ "type": "array"
364
+ }
365
+ }
366
+ ],
367
+ "output": {
368
+ "name": "result",
369
+ "type": "object",
370
+ "description": "A JSON Object containing success status",
371
+ "schema": {
372
+ "title": "result",
373
+ "type": "object"
374
+ }
375
+ },
376
+ "roles": [
377
+ "admin"
378
+ ],
379
+ "route": {
380
+ "verb": "POST",
381
+ "path": "/iapDeactivateTasks"
382
+ },
383
+ "task": true
384
+ },
385
+ {
386
+ "name": "iapActivateTasks",
387
+ "summary": "Activate the inputted tasks",
388
+ "description": "activate the inputted tasks",
389
+ "input": [
390
+ {
391
+ "name": "tasks",
392
+ "type": "array",
393
+ "description": "Tasks to activate",
394
+ "schema": {
395
+ "title": "tasks",
396
+ "type": "array"
397
+ }
398
+ }
399
+ ],
400
+ "output": {
401
+ "name": "result",
402
+ "type": "object",
403
+ "description": "A JSON Object containing success status",
404
+ "schema": {
405
+ "title": "result",
406
+ "type": "object"
407
+ }
408
+ },
409
+ "roles": [
410
+ "admin"
411
+ ],
412
+ "route": {
413
+ "verb": "POST",
414
+ "path": "/iapActivateTasks"
415
+ },
416
+ "task": true
417
+ },
418
+ {
419
+ "name": "iapPopulateEntityCache",
420
+ "summary": "Populate the cache for the given entities",
421
+ "description": "Populate the cache for the given entities",
422
+ "input": [
423
+ {
424
+ "name": "entityTypes",
425
+ "type": "array",
426
+ "info": "the entity type(s) to populate",
427
+ "required": true,
428
+ "schema": {
429
+ "title": "entityTypes",
430
+ "type": "array"
431
+ }
432
+ }
433
+ ],
434
+ "output": {
435
+ "name": "result",
436
+ "type": "object",
437
+ "description": "A JSON Object containing status, code and the result",
438
+ "schema": {
439
+ "title": "result",
440
+ "type": "object"
441
+ }
442
+ },
443
+ "roles": [
444
+ "admin"
445
+ ],
446
+ "route": {
447
+ "verb": "POST",
448
+ "path": "/iapPopulateEntityCache"
449
+ },
450
+ "task": true
451
+ },
452
+ {
453
+ "name": "iapRetrieveEntitiesCache",
454
+ "summary": "Retrieves data from cache for specified entity type",
455
+ "description": "Retrieves data from cache for specified entity type",
456
+ "input": [
457
+ {
458
+ "name": "entityType",
459
+ "type": "string",
460
+ "info": "entity of which to retrieve",
461
+ "required": true,
462
+ "schema": {
463
+ "title": "entityType",
464
+ "type": "string"
465
+ }
466
+ },
467
+ {
468
+ "name": "options",
469
+ "type": "object",
470
+ "info": "settings of which data to return and how to return it",
471
+ "required": false,
472
+ "schema": {
473
+ "title": "options",
474
+ "type": "object"
475
+ }
476
+ }
477
+ ],
478
+ "output": {
479
+ "name": "result",
480
+ "type": "object",
481
+ "description": "A JSON Object containing status, code and the result",
482
+ "schema": {
483
+ "title": "result",
484
+ "type": "object"
485
+ }
486
+ },
487
+ "roles": [
488
+ "admin"
489
+ ],
490
+ "route": {
491
+ "verb": "POST",
492
+ "path": "/iapRetrieveEntitiesCache"
493
+ },
494
+ "task": true
495
+ },
496
+ {
497
+ "name": "getDevice",
498
+ "summary": "Get the Appliance",
499
+ "description": "Get the Appliance",
500
+ "input": [
501
+ {
502
+ "name": "deviceName",
503
+ "type": "string",
504
+ "info": "An Appliance Device Name",
505
+ "required": true,
506
+ "schema": {
507
+ "title": "deviceName",
508
+ "type": "string"
509
+ }
510
+ }
511
+ ],
512
+ "output": {
513
+ "name": "result",
514
+ "type": "object",
515
+ "description": "A JSON Object containing status, code and the result",
516
+ "schema": {
517
+ "title": "result",
518
+ "type": "object"
519
+ }
520
+ },
521
+ "roles": [
522
+ "admin"
523
+ ],
524
+ "route": {
525
+ "verb": "POST",
526
+ "path": "/getDevice"
527
+ },
528
+ "task": false
529
+ },
530
+ {
531
+ "name": "getDevicesFiltered",
532
+ "summary": "Get Appliances that match the filter",
533
+ "description": "Get Appliances that match the filter",
534
+ "input": [
535
+ {
536
+ "name": "options",
537
+ "type": "object",
538
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
539
+ "required": true,
540
+ "schema": {
541
+ "title": "options",
542
+ "type": "object"
543
+ }
544
+ }
545
+ ],
546
+ "output": {
547
+ "name": "result",
548
+ "type": "array",
549
+ "description": "A JSON Object containing status, code and the result",
550
+ "schema": {
551
+ "title": "result",
552
+ "type": "array"
553
+ }
554
+ },
555
+ "roles": [
556
+ "admin"
557
+ ],
558
+ "route": {
559
+ "verb": "POST",
560
+ "path": "/getDevicesFiltered"
561
+ },
562
+ "task": false
563
+ },
564
+ {
565
+ "name": "isAlive",
566
+ "summary": "Checks the status for the provided Appliance",
567
+ "description": "Checks the status for the provided Appliance",
568
+ "input": [
569
+ {
570
+ "name": "deviceName",
571
+ "type": "string",
572
+ "info": "An Appliance Device Name",
573
+ "required": true,
574
+ "schema": {
575
+ "title": "deviceName",
576
+ "type": "string"
577
+ }
578
+ }
579
+ ],
580
+ "output": {
581
+ "name": "result",
582
+ "type": "boolean",
583
+ "description": "A JSON Object containing status, code and the result",
584
+ "schema": {
585
+ "title": "result",
586
+ "type": "boolean"
587
+ }
588
+ },
589
+ "roles": [
590
+ "admin"
591
+ ],
592
+ "route": {
593
+ "verb": "POST",
594
+ "path": "/isAlive"
595
+ },
596
+ "task": false
597
+ },
598
+ {
599
+ "name": "getConfig",
600
+ "summary": "Gets a config for the provided Appliance",
601
+ "description": "Gets a config for the provided Appliance",
602
+ "input": [
603
+ {
604
+ "name": "deviceName",
605
+ "type": "string",
606
+ "info": "An Appliance Device Name",
607
+ "required": true,
608
+ "schema": {
609
+ "title": "deviceName",
610
+ "type": "string"
611
+ }
612
+ },
613
+ {
614
+ "name": "format",
615
+ "type": "string",
616
+ "info": "The format to be returned - this is ignored as we always return json",
617
+ "required": false,
618
+ "schema": {
619
+ "title": "format",
620
+ "type": "string"
621
+ }
622
+ }
623
+ ],
624
+ "output": {
625
+ "name": "result",
626
+ "type": "object",
627
+ "description": "A JSON Object containing status, code and the result",
628
+ "schema": {
629
+ "title": "result",
630
+ "type": "object"
631
+ }
632
+ },
633
+ "roles": [
634
+ "admin"
635
+ ],
636
+ "route": {
637
+ "verb": "POST",
638
+ "path": "/getConfig"
639
+ },
640
+ "task": false
641
+ },
642
+ {
643
+ "name": "iapGetDeviceCount",
644
+ "summary": "Gets a device count from the system",
645
+ "description": "Gets a device count from the system",
646
+ "input": [],
647
+ "output": {
648
+ "name": "result",
649
+ "type": "object",
650
+ "description": "A JSON Object containing status, code and the result",
651
+ "schema": {
652
+ "title": "result",
653
+ "type": "object"
654
+ }
655
+ },
656
+ "roles": [
657
+ "admin"
658
+ ],
659
+ "route": {
660
+ "verb": "POST",
661
+ "path": "/iapGetDeviceCount"
662
+ },
663
+ "task": false
664
+ },
665
+ {
666
+ "name": "iapExpandedGenericAdapterRequest",
667
+ "summary": "Makes the requested generic call with additional options",
668
+ "description": "Makes the requested generic call with additional options via metadata",
669
+ "input": [
670
+ {
671
+ "name": "metadata",
672
+ "type": "object",
673
+ "info": "metadata for the call (optional)",
674
+ "description": "metadata for the call - allows for many enhancements (optional)",
675
+ "schema": {
676
+ "title": "metadata",
677
+ "type": "object"
678
+ },
679
+ "required": false
680
+ },
681
+ {
682
+ "name": "uriPath",
683
+ "type": "string",
684
+ "info": "the path of the api call - do not include the host, port, base path or version",
685
+ "description": "the path of the api call",
686
+ "schema": {
687
+ "title": "uriPath",
688
+ "type": "string"
689
+ },
690
+ "required": false
691
+ },
692
+ {
693
+ "name": "restMethod",
694
+ "type": "string",
695
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
697
+ "schema": {
698
+ "title": "restMethod",
699
+ "type": "string"
700
+ },
701
+ "required": false
702
+ },
703
+ {
704
+ "name": "pathVars",
705
+ "type": "object",
706
+ "info": "the parameters to be put within the url path (optional)",
707
+ "description": "the parameters to be put within the url path (optional)",
708
+ "schema": {
709
+ "title": "pathVars",
710
+ "type": "object"
711
+ },
712
+ "required": false
713
+ },
714
+ {
715
+ "name": "queryData",
716
+ "type": "object",
717
+ "info": "the query parameters to be put on the url (optional)",
718
+ "description": "the query parameters to be put on the url (optional)",
719
+ "schema": {
720
+ "title": "queryData",
721
+ "type": "object"
722
+ },
723
+ "required": false
724
+ },
725
+ {
726
+ "name": "requestBody",
727
+ "type": "object",
728
+ "info": "the payload to be sent with the request (optional)",
729
+ "description": "the payload to be sent with the request (optional)",
730
+ "schema": {
731
+ "title": "requestBody",
732
+ "type": "object"
733
+ },
734
+ "required": false
735
+ },
736
+ {
737
+ "name": "addlHeaders",
738
+ "type": "object",
739
+ "info": "additional headers to be put on the call (optional)",
740
+ "description": "additional headers to be put on the call (optional)",
741
+ "schema": {
742
+ "title": "addlHeaders",
743
+ "type": "object"
744
+ },
745
+ "required": false
746
+ }
747
+ ],
748
+ "output": {
749
+ "name": "result",
750
+ "type": "object",
751
+ "description": "A JSON Object containing status, code and the result",
752
+ "schema": {
753
+ "title": "result",
754
+ "type": "object"
755
+ }
756
+ },
757
+ "roles": [
758
+ "admin"
759
+ ],
760
+ "route": {
761
+ "verb": "POST",
762
+ "path": "/iapExpandedGenericAdapterRequest"
763
+ },
764
+ "task": true
765
+ },
587
766
  {
588
- "name": "getConfig",
589
- "summary": "Gets a config for the provided Appliance",
590
- "description": "Gets a config for the provided Appliance",
591
- "input": [
592
- {
593
- "name": "deviceName",
594
- "type": "string",
595
- "info": "An Appliance Device Name",
596
- "required": true,
597
- "schema": {
598
- "title": "deviceName",
599
- "type": "string"
600
- }
601
- },
602
- {
603
- "name": "format",
604
- "type": "string",
605
- "info": "The format to be returned - this is ignored as we always return json",
606
- "required": false,
607
- "schema": {
608
- "title": "format",
609
- "type": "string"
610
- }
611
- }
612
- ],
613
- "output": {
614
- "name": "result",
615
- "type": "object",
616
- "description": "A JSON Object containing status, code and the result",
617
- "schema": {
618
- "title": "result",
619
- "type": "object"
620
- }
621
- },
622
- "roles": [
623
- "admin"
624
- ],
625
- "route": {
626
- "verb": "POST",
627
- "path": "/getConfig"
628
- },
629
- "task": false
630
- },
767
+ "name": "genericAdapterRequest",
768
+ "summary": "Makes the requested generic call",
769
+ "description": "Makes the requested generic call",
770
+ "input": [
771
+ {
772
+ "name": "uriPath",
773
+ "type": "string",
774
+ "info": "the path of the api call - do not include the host, port, base path or version",
775
+ "description": "the path of the api call",
776
+ "schema": {
777
+ "title": "uriPath",
778
+ "type": "string"
779
+ },
780
+ "required": true
781
+ },
782
+ {
783
+ "name": "restMethod",
784
+ "type": "string",
785
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
787
+ "schema": {
788
+ "title": "restMethod",
789
+ "type": "string"
790
+ },
791
+ "required": true
792
+ },
793
+ {
794
+ "name": "queryData",
795
+ "type": "object",
796
+ "info": "the query parameters to be put on the url (optional)",
797
+ "description": "the query parameters to be put on the url (optional)",
798
+ "schema": {
799
+ "title": "queryData",
800
+ "type": "object"
801
+ },
802
+ "required": false
803
+ },
804
+ {
805
+ "name": "requestBody",
806
+ "type": "object",
807
+ "info": "the payload to be sent with the request (optional)",
808
+ "description": "the payload to be sent with the request (optional)",
809
+ "schema": {
810
+ "title": "requestBody",
811
+ "type": "object"
812
+ },
813
+ "required": false
814
+ },
815
+ {
816
+ "name": "addlHeaders",
817
+ "type": "object",
818
+ "info": "additional headers to be put on the call (optional)",
819
+ "description": "additional headers to be put on the call (optional)",
820
+ "schema": {
821
+ "title": "addlHeaders",
822
+ "type": "object"
823
+ },
824
+ "required": false
825
+ }
826
+ ],
827
+ "output": {
828
+ "name": "result",
829
+ "type": "object",
830
+ "description": "A JSON Object containing status, code and the result",
831
+ "schema": {
832
+ "title": "result",
833
+ "type": "object"
834
+ }
835
+ },
836
+ "roles": [
837
+ "admin"
838
+ ],
839
+ "route": {
840
+ "verb": "POST",
841
+ "path": "/genericAdapterRequest"
842
+ },
843
+ "task": true
844
+ },
631
845
  {
632
- "name": "iapGetDeviceCount",
633
- "summary": "Gets a device count from the system",
634
- "description": "Gets a device count from the system",
635
- "input": [],
636
- "output": {
637
- "name": "result",
638
- "type": "object",
639
- "description": "A JSON Object containing status, code and the result",
640
- "schema": {
641
- "title": "result",
642
- "type": "object"
643
- }
644
- },
645
- "roles": [
646
- "admin"
647
- ],
648
- "route": {
649
- "verb": "POST",
650
- "path": "/iapGetDeviceCount"
651
- },
652
- "task": false
653
- },
846
+ "name": "genericAdapterRequestNoBasePath",
847
+ "summary": "Makes the requested generic call",
848
+ "description": "Makes the requested generic call",
849
+ "input": [
850
+ {
851
+ "name": "uriPath",
852
+ "type": "string",
853
+ "info": "the path of the api call - do not include the host, port, base path or version",
854
+ "description": "the path of the api call",
855
+ "schema": {
856
+ "title": "uriPath",
857
+ "type": "string"
858
+ },
859
+ "required": true
860
+ },
861
+ {
862
+ "name": "restMethod",
863
+ "type": "string",
864
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
865
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
866
+ "schema": {
867
+ "title": "restMethod",
868
+ "type": "string"
869
+ },
870
+ "required": true
871
+ },
872
+ {
873
+ "name": "queryData",
874
+ "type": "object",
875
+ "info": "the query parameters to be put on the url (optional)",
876
+ "description": "the query parameters to be put on the url (optional)",
877
+ "schema": {
878
+ "title": "queryData",
879
+ "type": "object"
880
+ },
881
+ "required": false
882
+ },
883
+ {
884
+ "name": "requestBody",
885
+ "type": "object",
886
+ "info": "the payload to be sent with the request (optional)",
887
+ "description": "the payload to be sent with the request (optional)",
888
+ "schema": {
889
+ "title": "requestBody",
890
+ "type": "object"
891
+ },
892
+ "required": false
893
+ },
894
+ {
895
+ "name": "addlHeaders",
896
+ "type": "object",
897
+ "info": "additional headers to be put on the call (optional)",
898
+ "description": "additional headers to be put on the call (optional)",
899
+ "schema": {
900
+ "title": "addlHeaders",
901
+ "type": "object"
902
+ },
903
+ "required": false
904
+ }
905
+ ],
906
+ "output": {
907
+ "name": "result",
908
+ "type": "object",
909
+ "description": "A JSON Object containing status, code and the result",
910
+ "schema": {
911
+ "title": "result",
912
+ "type": "object"
913
+ }
914
+ },
915
+ "roles": [
916
+ "admin"
917
+ ],
918
+ "route": {
919
+ "verb": "POST",
920
+ "path": "/genericAdapterRequestNoBasePath"
921
+ },
922
+ "task": true
923
+ },
924
+ {
925
+ "name": "iapRunAdapterLint",
926
+ "summary": "Run the adapter lint script to return the results",
927
+ "description": "Run the adapter lint script to return the results",
928
+ "input": [],
929
+ "output": {
930
+ "name": "result",
931
+ "type": "string",
932
+ "description": "A string containing the run results",
933
+ "schema": {
934
+ "title": "result",
935
+ "type": "string"
936
+ }
937
+ },
938
+ "roles": [
939
+ "admin"
940
+ ],
941
+ "route": {
942
+ "verb": "GET",
943
+ "path": "/iapRunAdapterLint"
944
+ },
945
+ "task": true
946
+ },
947
+ {
948
+ "name": "iapRunAdapterTests",
949
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
951
+ "input": [],
952
+ "output": {
953
+ "name": "result",
954
+ "type": "object",
955
+ "description": "A JSON Object containing status, code and the result",
956
+ "schema": {
957
+ "title": "result",
958
+ "type": "object"
959
+ }
960
+ },
961
+ "roles": [
962
+ "admin"
963
+ ],
964
+ "route": {
965
+ "verb": "GET",
966
+ "path": "/iapRunAdapterTests"
967
+ },
968
+ "task": true
969
+ },
970
+ {
971
+ "name": "iapGetAdapterInventory",
972
+ "summary": "Provide inventory information abbout the adapter",
973
+ "description": "Provide inventory information abbout the adapter",
974
+ "input": [],
975
+ "output": {
976
+ "name": "result",
977
+ "type": "object",
978
+ "description": "A JSON Object containing status, code and the result",
979
+ "schema": {
980
+ "title": "result",
981
+ "type": "object"
982
+ }
983
+ },
984
+ "roles": [
985
+ "admin"
986
+ ],
987
+ "route": {
988
+ "verb": "GET",
989
+ "path": "/iapGetAdapterInventory"
990
+ },
991
+ "task": true
992
+ },
654
993
  {
655
994
  "name": "getV4ApplicationSettings",
656
995
  "summary": "Get the current application settings",
@@ -9056,6 +9395,50 @@
9056
9395
  },
9057
9396
  "task": true
9058
9397
  },
9398
+ {
9399
+ "name": "getV4ProjectsIdRepositoryTreeWithOptions",
9400
+ "summary": "Get a project repository tree",
9401
+ "description": "Get a project repository tree",
9402
+ "input": [
9403
+ {
9404
+ "name": "id",
9405
+ "type": "string",
9406
+ "info": "The ID of a project",
9407
+ "required": true,
9408
+ "schema": {
9409
+ "title": "id",
9410
+ "type": "string"
9411
+ }
9412
+ },
9413
+ {
9414
+ "name": "queryData",
9415
+ "type": "object",
9416
+ "info": "Contains properties: id, ref, pathParam, recursive, perPage, page",
9417
+ "required": false,
9418
+ "schema": {
9419
+ "title": "queryData",
9420
+ "type": "object"
9421
+ }
9422
+ }
9423
+ ],
9424
+ "output": {
9425
+ "name": "result",
9426
+ "type": "object",
9427
+ "description": "A JSON Object containing status, code and the result",
9428
+ "schema": {
9429
+ "title": "result",
9430
+ "type": "object"
9431
+ }
9432
+ },
9433
+ "roles": [
9434
+ "admin"
9435
+ ],
9436
+ "route": {
9437
+ "verb": "POST",
9438
+ "path": "/getV4ProjectsIdRepositoryTree"
9439
+ },
9440
+ "task": true
9441
+ },
9059
9442
  {
9060
9443
  "name": "getV4ProjectsIdRunners",
9061
9444
  "summary": "Get runners available for project",