@itentialopensource/adapter-rundeck 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 (178) 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 +1442 -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/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +18610 -0
  23. package/adapterBase.js +1452 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/Acls/action.json +85 -0
  33. package/entities/Acls/mockdatafiles/apiSystemAcls-default.json +3 -0
  34. package/entities/Acls/mockdatafiles/apiSystemAclsPUTDocs-default.json +3 -0
  35. package/entities/Acls/schema.json +33 -0
  36. package/entities/Adhoc/action.json +64 -0
  37. package/entities/Adhoc/schema.json +21 -0
  38. package/entities/Authorization/action.json +25 -0
  39. package/entities/Authorization/schema.json +19 -0
  40. package/entities/Calendars/action.json +126 -0
  41. package/entities/Calendars/mockdatafiles/apiLoadProjectCalendars-default.json +38 -0
  42. package/entities/Calendars/mockdatafiles/apiLoadSystemCalendars-default.json +40 -0
  43. package/entities/Calendars/mockdatafiles/apiProjectCalendars-default.json +3 -0
  44. package/entities/Calendars/mockdatafiles/apiSystemCalendars-default.json +6 -0
  45. package/entities/Calendars/schema.json +24 -0
  46. package/entities/Cluster/action.json +64 -0
  47. package/entities/Cluster/schema.json +21 -0
  48. package/entities/Configuration/action.json +209 -0
  49. package/entities/Configuration/mockdatafiles/configGet-default.json +5 -0
  50. package/entities/Configuration/mockdatafiles/configGetCategories-default.json +43 -0
  51. package/entities/Configuration/mockdatafiles/configList-default.json +9 -0
  52. package/entities/Configuration/mockdatafiles/configMetaList-default.json +32 -0
  53. package/entities/Configuration/mockdatafiles/configSave-default.json +10 -0
  54. package/entities/Configuration/mockdatafiles/refresh-default.json +3 -0
  55. package/entities/Configuration/mockdatafiles/restart-default.json +4 -0
  56. package/entities/Configuration/mockdatafiles/storageConfigList-default.json +24 -0
  57. package/entities/Configuration/mockdatafiles/storageConfigSave-default.json +13 -0
  58. package/entities/Configuration/schema.json +28 -0
  59. package/entities/Enterprise/action.json +1199 -0
  60. package/entities/Enterprise/mockdatafiles/apiGetUserRoles-default.json +12 -0
  61. package/entities/Enterprise/mockdatafiles/apiList-default.json +12 -0
  62. package/entities/Enterprise/mockdatafiles/apiList1-default.json +4 -0
  63. package/entities/Enterprise/mockdatafiles/apiListAllJobsInProject-default.json +6 -0
  64. package/entities/Enterprise/mockdatafiles/apiNodeHealthAll-default.json +5 -0
  65. package/entities/Enterprise/mockdatafiles/apiRundeckEndpoints-default.json +4 -0
  66. package/entities/Enterprise/mockdatafiles/apiStoreLicense-default.json +3 -0
  67. package/entities/Enterprise/mockdatafiles/getDataset-default.json +195 -0
  68. package/entities/Enterprise/mockdatafiles/getDebugEvents-default.json +2722 -0
  69. package/entities/Enterprise/mockdatafiles/listDatasets-default.json +14 -0
  70. package/entities/Enterprise/mockdatafiles/listRunnerTags-default.json +6 -0
  71. package/entities/Enterprise/mockdatafiles/searchTags-default.json +4 -0
  72. package/entities/Enterprise/mockdatafiles/verify-default.json +118 -0
  73. package/entities/Enterprise/schema.json +98 -0
  74. package/entities/Execution/action.json +357 -0
  75. package/entities/Execution/mockdatafiles/apiExecution-default.json +40 -0
  76. package/entities/Execution/mockdatafiles/apiExecutionAbort-default.json +11 -0
  77. package/entities/Execution/mockdatafiles/apiExecutionDeleteBulk-default.json +20 -0
  78. package/entities/Execution/mockdatafiles/apiExecutionInputFiles-default.json +22 -0
  79. package/entities/Execution/mockdatafiles/apiExecutionMetricsDocs-default.json +8 -0
  80. package/entities/Execution/mockdatafiles/apiExecutionsQueryv14Docs-default.json +47 -0
  81. package/entities/Execution/mockdatafiles/apiJobExecutions-default.json +5 -0
  82. package/entities/Execution/schema.json +35 -0
  83. package/entities/General/action.json +25 -0
  84. package/entities/General/schema.json +19 -0
  85. package/entities/History/action.json +25 -0
  86. package/entities/History/schema.json +19 -0
  87. package/entities/Jobs/action.json +678 -0
  88. package/entities/Jobs/mockdatafiles/apiJobActionPerform-default.json +6 -0
  89. package/entities/Jobs/mockdatafiles/apiJobDeleteBulk-default.json +20 -0
  90. package/entities/Jobs/mockdatafiles/apiJobDeleteBulkDocs2-default.json +20 -0
  91. package/entities/Jobs/mockdatafiles/apiJobDiff-default.json +8 -0
  92. package/entities/Jobs/mockdatafiles/apiJobFileInfo-default.json +14 -0
  93. package/entities/Jobs/mockdatafiles/apiJobMeta-default.json +10 -0
  94. package/entities/Jobs/mockdatafiles/apiJobRetry-default.json +40 -0
  95. package/entities/Jobs/mockdatafiles/apiJobRun-default.json +40 -0
  96. package/entities/Jobs/mockdatafiles/apiJobRun1-default.json +40 -0
  97. package/entities/Jobs/mockdatafiles/apiJobsImportv14-default.json +26 -0
  98. package/entities/Jobs/mockdatafiles/apiJobsListv2-default.json +22 -0
  99. package/entities/Jobs/mockdatafiles/apiSchedulerListJobs-default.json +81 -0
  100. package/entities/Jobs/mockdatafiles/apiSchedulerListJobsCurrentDocs-default.json +52 -0
  101. package/entities/Jobs/schema.json +94 -0
  102. package/entities/KeyStorage/action.json +85 -0
  103. package/entities/KeyStorage/schema.json +44 -0
  104. package/entities/Logstorage/action.json +66 -0
  105. package/entities/Logstorage/schema.json +21 -0
  106. package/entities/Nodes/action.json +129 -0
  107. package/entities/Nodes/mockdatafiles/apiSourceGet-default.json +12 -0
  108. package/entities/Nodes/mockdatafiles/apiSourcesList-default.json +32 -0
  109. package/entities/Nodes/schema.json +24 -0
  110. package/entities/Plugins/action.json +230 -0
  111. package/entities/Plugins/mockdatafiles/listPlugins-default.json +28 -0
  112. package/entities/Plugins/schema.json +29 -0
  113. package/entities/Project/action.json +455 -0
  114. package/entities/Project/mockdatafiles/apiProjectAclsGetDocs-default.json +3 -0
  115. package/entities/Project/mockdatafiles/apiProjectAclsPutDocs-default.json +3 -0
  116. package/entities/Project/mockdatafiles/apiProjectList-default.json +3 -0
  117. package/entities/Project/mockdatafiles/apiProjectMeta-default.json +18 -0
  118. package/entities/Project/schema.json +117 -0
  119. package/entities/ProjectExecutionMode/action.json +44 -0
  120. package/entities/ProjectExecutionMode/mockdatafiles/apiProjectDisableLater-default.json +4 -0
  121. package/entities/ProjectExecutionMode/mockdatafiles/apiProjectEnableLater-default.json +4 -0
  122. package/entities/ProjectExecutionMode/schema.json +20 -0
  123. package/entities/ROI/action.json +46 -0
  124. package/entities/ROI/schema.json +20 -0
  125. package/entities/System/action.json +149 -0
  126. package/entities/System/mockdatafiles/apiExecutionModeStatus-default.json +3 -0
  127. package/entities/System/mockdatafiles/apiMetrics-default.json +3 -0
  128. package/entities/System/mockdatafiles/apiSystemInfo-default.json +81 -0
  129. package/entities/System/mockdatafiles/getFeature-default.json +18 -0
  130. package/entities/System/schema.json +25 -0
  131. package/entities/SystemExecutionMode/action.json +44 -0
  132. package/entities/SystemExecutionMode/mockdatafiles/apiExecutionModeLaterActive-default.json +4 -0
  133. package/entities/SystemExecutionMode/mockdatafiles/apiExecutionModeLaterPassive-default.json +4 -0
  134. package/entities/SystemExecutionMode/schema.json +20 -0
  135. package/entities/Tokens/action.json +106 -0
  136. package/entities/Tokens/mockdatafiles/apiTokenList-default.json +39 -0
  137. package/entities/Tokens/schema.json +23 -0
  138. package/entities/User/action.json +107 -0
  139. package/entities/User/mockdatafiles/apiUserList-default.json +6 -0
  140. package/entities/User/schema.json +23 -0
  141. package/entities/Webhook/action.json +126 -0
  142. package/entities/Webhook/mockdatafiles/list-default.json +3 -0
  143. package/entities/Webhook/schema.json +24 -0
  144. package/error.json +190 -0
  145. package/metadata.json +43 -0
  146. package/package.json +83 -0
  147. package/pronghorn.json +15424 -0
  148. package/propertiesDecorators.json +14 -0
  149. package/propertiesSchema.json +1569 -0
  150. package/refs?service=git-upload-pack +0 -0
  151. package/report/adapterInfo.json +10 -0
  152. package/report/creationReport.json +1293 -0
  153. package/report/openapi (1).json-OpenApi3Json (1).json +22287 -0
  154. package/sampleProperties.json +256 -0
  155. package/test/integration/adapterTestBasicGet.js +83 -0
  156. package/test/integration/adapterTestConnectivity.js +142 -0
  157. package/test/integration/adapterTestIntegration.js +6120 -0
  158. package/test/unit/adapterBaseTestUnit.js +1024 -0
  159. package/test/unit/adapterTestUnit.js +8058 -0
  160. package/utils/adapterInfo.js +206 -0
  161. package/utils/addAuth.js +94 -0
  162. package/utils/artifactize.js +146 -0
  163. package/utils/basicGet.js +50 -0
  164. package/utils/checkMigrate.js +63 -0
  165. package/utils/entitiesToDB.js +179 -0
  166. package/utils/findPath.js +74 -0
  167. package/utils/methodDocumentor.js +273 -0
  168. package/utils/modify.js +152 -0
  169. package/utils/packModificationScript.js +35 -0
  170. package/utils/patches2bundledDeps.js +90 -0
  171. package/utils/pre-commit.sh +32 -0
  172. package/utils/removeHooks.js +20 -0
  173. package/utils/setup.js +33 -0
  174. package/utils/taskMover.js +309 -0
  175. package/utils/tbScript.js +239 -0
  176. package/utils/tbUtils.js +489 -0
  177. package/utils/testRunner.js +298 -0
  178. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,1293 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 17
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 6
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 22
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^5.3.0"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 77
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 18611
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 212
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 212
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 347
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 642
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 200
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 171
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 11
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 8059
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 516
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 6121
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 221
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for General entity",
117
+ "value": 1
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for Configuration entity",
122
+ "value": 10
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for Cluster entity",
127
+ "value": 3
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for Enterprise entity",
132
+ "value": 58
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for ROI entity",
137
+ "value": 2
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for Calendars entity",
142
+ "value": 6
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for System entity",
147
+ "value": 7
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for Logstorage entity",
152
+ "value": 3
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for Plugins entity",
157
+ "value": 11
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for Jobs entity",
162
+ "value": 33
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for Webhook entity",
167
+ "value": 6
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for Nodes entity",
172
+ "value": 6
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for Execution entity",
177
+ "value": 17
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for Project entity",
182
+ "value": 22
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for ProjectExecutionMode entity",
187
+ "value": 2
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for History entity",
192
+ "value": 1
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for Adhoc entity",
197
+ "value": 3
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for KeyStorage entity",
202
+ "value": 4
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for Acls entity",
207
+ "value": 4
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for SystemExecutionMode entity",
212
+ "value": 2
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for Tokens entity",
217
+ "value": 5
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for User entity",
222
+ "value": 5
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for Authorization entity",
227
+ "value": 1
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Total number of actions",
232
+ "value": 212
233
+ },
234
+ {
235
+ "owner": "actionJson",
236
+ "description": "Total number of entities",
237
+ "value": 23
238
+ },
239
+ {
240
+ "owner": "schemaJson",
241
+ "description": "Number of schemas for General entity",
242
+ "value": 1
243
+ },
244
+ {
245
+ "owner": "schemaJson",
246
+ "description": "Number of schemas for Configuration entity",
247
+ "value": 1
248
+ },
249
+ {
250
+ "owner": "schemaJson",
251
+ "description": "Number of schemas for Cluster entity",
252
+ "value": 1
253
+ },
254
+ {
255
+ "owner": "schemaJson",
256
+ "description": "Number of schemas for Enterprise entity",
257
+ "value": 1
258
+ },
259
+ {
260
+ "owner": "schemaJson",
261
+ "description": "Number of schemas for ROI entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "schemaJson",
266
+ "description": "Number of schemas for Calendars entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "schemaJson",
271
+ "description": "Number of schemas for System entity",
272
+ "value": 1
273
+ },
274
+ {
275
+ "owner": "schemaJson",
276
+ "description": "Number of schemas for Logstorage entity",
277
+ "value": 1
278
+ },
279
+ {
280
+ "owner": "schemaJson",
281
+ "description": "Number of schemas for Plugins entity",
282
+ "value": 1
283
+ },
284
+ {
285
+ "owner": "schemaJson",
286
+ "description": "Number of schemas for Jobs entity",
287
+ "value": 1
288
+ },
289
+ {
290
+ "owner": "schemaJson",
291
+ "description": "Number of schemas for Webhook entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "schemaJson",
296
+ "description": "Number of schemas for Nodes entity",
297
+ "value": 1
298
+ },
299
+ {
300
+ "owner": "schemaJson",
301
+ "description": "Number of schemas for Execution entity",
302
+ "value": 1
303
+ },
304
+ {
305
+ "owner": "schemaJson",
306
+ "description": "Number of schemas for Project entity",
307
+ "value": 1
308
+ },
309
+ {
310
+ "owner": "schemaJson",
311
+ "description": "Number of schemas for ProjectExecutionMode entity",
312
+ "value": 1
313
+ },
314
+ {
315
+ "owner": "schemaJson",
316
+ "description": "Number of schemas for History entity",
317
+ "value": 1
318
+ },
319
+ {
320
+ "owner": "schemaJson",
321
+ "description": "Number of schemas for Adhoc entity",
322
+ "value": 1
323
+ },
324
+ {
325
+ "owner": "schemaJson",
326
+ "description": "Number of schemas for KeyStorage entity",
327
+ "value": 1
328
+ },
329
+ {
330
+ "owner": "schemaJson",
331
+ "description": "Number of schemas for Acls entity",
332
+ "value": 1
333
+ },
334
+ {
335
+ "owner": "schemaJson",
336
+ "description": "Number of schemas for SystemExecutionMode entity",
337
+ "value": 1
338
+ },
339
+ {
340
+ "owner": "schemaJson",
341
+ "description": "Number of schemas for Tokens entity",
342
+ "value": 1
343
+ },
344
+ {
345
+ "owner": "schemaJson",
346
+ "description": "Number of schemas for User entity",
347
+ "value": 1
348
+ },
349
+ {
350
+ "owner": "schemaJson",
351
+ "description": "Number of schemas for Authorization entity",
352
+ "value": 1
353
+ },
354
+ {
355
+ "owner": "schemaJson",
356
+ "description": "Total number of schemas",
357
+ "value": 23
358
+ },
359
+ {
360
+ "owner": "mockdata",
361
+ "description": "Number of mock data files for General entity",
362
+ "value": 0
363
+ },
364
+ {
365
+ "owner": "mockdata",
366
+ "description": "Number of mock data files for Configuration entity",
367
+ "value": 9
368
+ },
369
+ {
370
+ "owner": "mockdata",
371
+ "description": "Number of mock data files for Cluster entity",
372
+ "value": 0
373
+ },
374
+ {
375
+ "owner": "mockdata",
376
+ "description": "Number of mock data files for Enterprise entity",
377
+ "value": 13
378
+ },
379
+ {
380
+ "owner": "mockdata",
381
+ "description": "Number of mock data files for ROI entity",
382
+ "value": 0
383
+ },
384
+ {
385
+ "owner": "mockdata",
386
+ "description": "Number of mock data files for Calendars entity",
387
+ "value": 4
388
+ },
389
+ {
390
+ "owner": "mockdata",
391
+ "description": "Number of mock data files for System entity",
392
+ "value": 4
393
+ },
394
+ {
395
+ "owner": "mockdata",
396
+ "description": "Number of mock data files for Logstorage entity",
397
+ "value": 0
398
+ },
399
+ {
400
+ "owner": "mockdata",
401
+ "description": "Number of mock data files for Plugins entity",
402
+ "value": 1
403
+ },
404
+ {
405
+ "owner": "mockdata",
406
+ "description": "Number of mock data files for Jobs entity",
407
+ "value": 13
408
+ },
409
+ {
410
+ "owner": "mockdata",
411
+ "description": "Number of mock data files for Webhook entity",
412
+ "value": 1
413
+ },
414
+ {
415
+ "owner": "mockdata",
416
+ "description": "Number of mock data files for Nodes entity",
417
+ "value": 2
418
+ },
419
+ {
420
+ "owner": "mockdata",
421
+ "description": "Number of mock data files for Execution entity",
422
+ "value": 7
423
+ },
424
+ {
425
+ "owner": "mockdata",
426
+ "description": "Number of mock data files for Project entity",
427
+ "value": 4
428
+ },
429
+ {
430
+ "owner": "mockdata",
431
+ "description": "Number of mock data files for ProjectExecutionMode entity",
432
+ "value": 2
433
+ },
434
+ {
435
+ "owner": "mockdata",
436
+ "description": "Number of mock data files for History entity",
437
+ "value": 0
438
+ },
439
+ {
440
+ "owner": "mockdata",
441
+ "description": "Number of mock data files for Adhoc entity",
442
+ "value": 0
443
+ },
444
+ {
445
+ "owner": "mockdata",
446
+ "description": "Number of mock data files for KeyStorage entity",
447
+ "value": 0
448
+ },
449
+ {
450
+ "owner": "mockdata",
451
+ "description": "Number of mock data files for Acls entity",
452
+ "value": 2
453
+ },
454
+ {
455
+ "owner": "mockdata",
456
+ "description": "Number of mock data files for SystemExecutionMode entity",
457
+ "value": 2
458
+ },
459
+ {
460
+ "owner": "mockdata",
461
+ "description": "Number of mock data files for Tokens entity",
462
+ "value": 1
463
+ },
464
+ {
465
+ "owner": "mockdata",
466
+ "description": "Number of mock data files for User entity",
467
+ "value": 1
468
+ },
469
+ {
470
+ "owner": "mockdata",
471
+ "description": "Number of mock data files for Authorization entity",
472
+ "value": 0
473
+ },
474
+ {
475
+ "owner": "mockdata",
476
+ "description": "Total number of mock data files",
477
+ "value": 66
478
+ },
479
+ {
480
+ "owner": "actionJson",
481
+ "description": "Number of actions for .system entity",
482
+ "value": 2
483
+ },
484
+ {
485
+ "owner": "schemaJson",
486
+ "description": "Number of schemas for .system entity",
487
+ "value": 3
488
+ },
489
+ {
490
+ "owner": "mockdata",
491
+ "description": "Number of mock data files for .system entity",
492
+ "value": 2
493
+ },
494
+ {
495
+ "owner": "System",
496
+ "description": "System entity files",
497
+ "value": 6
498
+ },
499
+ {
500
+ "owner": "usecases",
501
+ "description": "Number of workflows",
502
+ "value": 0
503
+ },
504
+ {
505
+ "owner": "staticFile",
506
+ "description": "Number of lines of code in adapterBase.js",
507
+ "value": 1453
508
+ },
509
+ {
510
+ "owner": "staticFile",
511
+ "description": "Number of static files added",
512
+ "value": 37
513
+ },
514
+ {
515
+ "owner": "Overall",
516
+ "description": "Total lines of Code",
517
+ "value": 34244
518
+ },
519
+ {
520
+ "owner": "Overall",
521
+ "description": "Total Tests",
522
+ "value": 737
523
+ },
524
+ {
525
+ "owner": "Overall",
526
+ "description": "Total Files",
527
+ "value": 164
528
+ }
529
+ ],
530
+ "warnings": [],
531
+ "apiParsingReport": {
532
+ "no_mockdata": [
533
+ {
534
+ "fnName": "get",
535
+ "method": "get",
536
+ "path": "/"
537
+ },
538
+ {
539
+ "fnName": "configDelete",
540
+ "method": "post",
541
+ "path": "/config/delete"
542
+ },
543
+ {
544
+ "fnName": "apiToggle",
545
+ "method": "post",
546
+ "path": "/enterprise/cluster/executions/disable"
547
+ },
548
+ {
549
+ "fnName": "apiToggle1",
550
+ "method": "post",
551
+ "path": "/enterprise/cluster/executions/enable"
552
+ },
553
+ {
554
+ "fnName": "apiExecutionDataExport",
555
+ "method": "get",
556
+ "path": "/execution/{id}/result/data"
557
+ },
558
+ {
559
+ "fnName": "apiExecutionDataAvailable",
560
+ "method": "get",
561
+ "path": "/execution/{id}/result/dataAvailable"
562
+ },
563
+ {
564
+ "fnName": "apiProjectHasHealthStatusEnhancer",
565
+ "method": "get",
566
+ "path": "/project/{project}/healthcheck/enhancer"
567
+ },
568
+ {
569
+ "fnName": "apiRefreshHealthCheck",
570
+ "method": "post",
571
+ "path": "/project/{project}/healthcheck/refresh"
572
+ },
573
+ {
574
+ "fnName": "apiRefreshHealthCheckAll",
575
+ "method": "post",
576
+ "path": "/project/{project}/healthcheck/refresh/all"
577
+ },
578
+ {
579
+ "fnName": "apiNodeHealth",
580
+ "method": "get",
581
+ "path": "/project/{project}/healthcheck/status"
582
+ },
583
+ {
584
+ "fnName": "apiProjectImportTour",
585
+ "method": "post",
586
+ "path": "/project/{project}/tour/import/{tourFolder}/{manifestFileName}"
587
+ },
588
+ {
589
+ "fnName": "apiProjectList1",
590
+ "method": "get",
591
+ "path": "/project/{project}/tours"
592
+ },
593
+ {
594
+ "fnName": "apiGetProjectResource",
595
+ "method": "get",
596
+ "path": "/project/{project}/tours/resource/{path}"
597
+ },
598
+ {
599
+ "fnName": "apiProjectLoadResource",
600
+ "method": "post",
601
+ "path": "/project/{project}/tours/{path}"
602
+ },
603
+ {
604
+ "fnName": "checkPing",
605
+ "method": "get",
606
+ "path": "/runnerManagement/checkPing/{token}"
607
+ },
608
+ {
609
+ "fnName": "downloadRunner",
610
+ "method": "get",
611
+ "path": "/runnerManagement/download/{token}"
612
+ },
613
+ {
614
+ "fnName": "getRunnerKey",
615
+ "method": "get",
616
+ "path": "/runnerManagement/runner/{id}/keys"
617
+ },
618
+ {
619
+ "fnName": "pingRunner",
620
+ "method": "post",
621
+ "path": "/runnerManagement/runner/{id}/ping"
622
+ },
623
+ {
624
+ "fnName": "regenerateRunnerCreds",
625
+ "method": "post",
626
+ "path": "/runnerManagement/runner/{id}/regenerateCreds"
627
+ },
628
+ {
629
+ "fnName": "runnerInfo",
630
+ "method": "get",
631
+ "path": "/runnerManagement/runner/{runnerId}"
632
+ },
633
+ {
634
+ "fnName": "saveRunner",
635
+ "method": "post",
636
+ "path": "/runnerManagement/runner/{runnerId}"
637
+ },
638
+ {
639
+ "fnName": "deleteRunner",
640
+ "method": "delete",
641
+ "path": "/runnerManagement/runner/{runnerId}"
642
+ },
643
+ {
644
+ "fnName": "listRunners",
645
+ "method": "get",
646
+ "path": "/runnerManagement/runners"
647
+ },
648
+ {
649
+ "fnName": "createRunner",
650
+ "method": "post",
651
+ "path": "/runnerManagement/runners"
652
+ },
653
+ {
654
+ "fnName": "listProjectAssociatedTags",
655
+ "method": "get",
656
+ "path": "/runnerManagement/tags"
657
+ },
658
+ {
659
+ "fnName": "ui",
660
+ "method": "get",
661
+ "path": "/runnerManagement/ui"
662
+ },
663
+ {
664
+ "fnName": "apiSendPasswordReset",
665
+ "method": "post",
666
+ "path": "/secure/generatepasswordreset/{username}"
667
+ },
668
+ {
669
+ "fnName": "apiGet",
670
+ "method": "get",
671
+ "path": "/secure/role/{id}"
672
+ },
673
+ {
674
+ "fnName": "apiEdit",
675
+ "method": "post",
676
+ "path": "/secure/role/{id}"
677
+ },
678
+ {
679
+ "fnName": "apiDelete",
680
+ "method": "delete",
681
+ "path": "/secure/role/{id}"
682
+ },
683
+ {
684
+ "fnName": "apiUpdateMembers",
685
+ "method": "post",
686
+ "path": "/secure/role/{id}/updateMembers"
687
+ },
688
+ {
689
+ "fnName": "apiCreate",
690
+ "method": "put",
691
+ "path": "/secure/roles/create"
692
+ },
693
+ {
694
+ "fnName": "apiGet1",
695
+ "method": "get",
696
+ "path": "/secure/user/{id}"
697
+ },
698
+ {
699
+ "fnName": "apiEdit1",
700
+ "method": "post",
701
+ "path": "/secure/user/{id}"
702
+ },
703
+ {
704
+ "fnName": "apiDelete1",
705
+ "method": "delete",
706
+ "path": "/secure/user/{id}"
707
+ },
708
+ {
709
+ "fnName": "apiCreate1",
710
+ "method": "put",
711
+ "path": "/secure/users/create"
712
+ },
713
+ {
714
+ "fnName": "apiSystemImportTour",
715
+ "method": "post",
716
+ "path": "/system/tour/import/{tourFolder}/{manifestFileName}"
717
+ },
718
+ {
719
+ "fnName": "apiSystemList",
720
+ "method": "get",
721
+ "path": "/system/tours"
722
+ },
723
+ {
724
+ "fnName": "apiGetSystemResource",
725
+ "method": "get",
726
+ "path": "/system/tours/resource/{path}"
727
+ },
728
+ {
729
+ "fnName": "apiSystemLoadResource",
730
+ "method": "post",
731
+ "path": "/system/tours/{path}"
732
+ },
733
+ {
734
+ "fnName": "getUserClassAllocations",
735
+ "method": "get",
736
+ "path": "/userclass/allocations"
737
+ },
738
+ {
739
+ "fnName": "getUserClassesAvailable",
740
+ "method": "get",
741
+ "path": "/userclass/available"
742
+ },
743
+ {
744
+ "fnName": "getEnabled",
745
+ "method": "get",
746
+ "path": "/userclass/enabled"
747
+ },
748
+ {
749
+ "fnName": "getUserClassSelf",
750
+ "method": "get",
751
+ "path": "/userclass/self"
752
+ },
753
+ {
754
+ "fnName": "getUserClassAllocationsState",
755
+ "method": "get",
756
+ "path": "/userclass/state"
757
+ },
758
+ {
759
+ "fnName": "storeUserClasses",
760
+ "method": "post",
761
+ "path": "/userclass/update"
762
+ },
763
+ {
764
+ "fnName": "getUserClass",
765
+ "method": "get",
766
+ "path": "/userclass/user/{username}"
767
+ },
768
+ {
769
+ "fnName": "setUserClass",
770
+ "method": "post",
771
+ "path": "/userclass/user/{username}"
772
+ },
773
+ {
774
+ "fnName": "removeUserClass",
775
+ "method": "delete",
776
+ "path": "/userclass/user/{username}"
777
+ },
778
+ {
779
+ "fnName": "getRoiMetricsDataAvailability",
780
+ "method": "get",
781
+ "path": "/execution/{id}/roimetrics/available"
782
+ },
783
+ {
784
+ "fnName": "getRoiMetricsDataApi",
785
+ "method": "get",
786
+ "path": "/execution/{id}/roimetrics/data"
787
+ },
788
+ {
789
+ "fnName": "apiDeleteProjectCalendar",
790
+ "method": "delete",
791
+ "path": "/project/{project}/calendars/{id}"
792
+ },
793
+ {
794
+ "fnName": "apiDeleteSystemCalendar",
795
+ "method": "delete",
796
+ "path": "/system/calendars/{id}"
797
+ },
798
+ {
799
+ "fnName": "getFeatureFeatureName",
800
+ "method": "get",
801
+ "path": "/feature/{featureName}"
802
+ },
803
+ {
804
+ "fnName": "apiExecutionModePassive",
805
+ "method": "post",
806
+ "path": "/system/executions/disable"
807
+ },
808
+ {
809
+ "fnName": "apiExecutionModeActive",
810
+ "method": "post",
811
+ "path": "/system/executions/enable"
812
+ },
813
+ {
814
+ "fnName": "apiLogstorageInfo",
815
+ "method": "get",
816
+ "path": "/system/logstorage"
817
+ },
818
+ {
819
+ "fnName": "apiLogstorageListIncompleteExecutions",
820
+ "method": "get",
821
+ "path": "/system/logstorage/incomplete"
822
+ },
823
+ {
824
+ "fnName": "apiResumeIncompleteLogstorage",
825
+ "method": "post",
826
+ "path": "/system/logstorage/incomplete/resume"
827
+ },
828
+ {
829
+ "fnName": "apiProjectToggleSCM",
830
+ "method": "post",
831
+ "path": "/project/{project}/scm/toggle"
832
+ },
833
+ {
834
+ "fnName": "apiProjectActionPerform",
835
+ "method": "post",
836
+ "path": "/project/{project}/scm/{integration}/action/{actionId}"
837
+ },
838
+ {
839
+ "fnName": "apiProjectActionInput",
840
+ "method": "get",
841
+ "path": "/project/{project}/scm/{integration}/action/{actionId}/input"
842
+ },
843
+ {
844
+ "fnName": "apiProjectConfig",
845
+ "method": "get",
846
+ "path": "/project/{project}/scm/{integration}/config"
847
+ },
848
+ {
849
+ "fnName": "apiProjectDisable",
850
+ "method": "post",
851
+ "path": "/project/{project}/scm/{integration}/plugin/{type}/disable"
852
+ },
853
+ {
854
+ "fnName": "apiProjectEnable",
855
+ "method": "post",
856
+ "path": "/project/{project}/scm/{integration}/plugin/{type}/enable"
857
+ },
858
+ {
859
+ "fnName": "apiPluginInput",
860
+ "method": "get",
861
+ "path": "/project/{project}/scm/{integration}/plugin/{type}/input"
862
+ },
863
+ {
864
+ "fnName": "apiProjectSetup",
865
+ "method": "post",
866
+ "path": "/project/{project}/scm/{integration}/plugin/{type}/setup"
867
+ },
868
+ {
869
+ "fnName": "apiPlugins",
870
+ "method": "get",
871
+ "path": "/project/{project}/scm/{integration}/plugins"
872
+ },
873
+ {
874
+ "fnName": "apiProjectStatus",
875
+ "method": "get",
876
+ "path": "/project/{project}/scm/{integration}/status"
877
+ },
878
+ {
879
+ "fnName": "apiJobClusterTakeoverSchedule",
880
+ "method": "put",
881
+ "path": "/scheduler/takeover"
882
+ },
883
+ {
884
+ "fnName": "createWebhookDocs",
885
+ "method": "post",
886
+ "path": "/project/{project}/webhook"
887
+ },
888
+ {
889
+ "fnName": "getProjectProjectWebhookId",
890
+ "method": "get",
891
+ "path": "/project/{project}/webhook/{id}"
892
+ },
893
+ {
894
+ "fnName": "save",
895
+ "method": "post",
896
+ "path": "/project/{project}/webhook/{id}"
897
+ },
898
+ {
899
+ "fnName": "remove",
900
+ "method": "delete",
901
+ "path": "/project/{project}/webhook/{id}"
902
+ },
903
+ {
904
+ "fnName": "post",
905
+ "method": "post",
906
+ "path": "/webhook/{authtoken}"
907
+ },
908
+ {
909
+ "fnName": "apiResourcev14",
910
+ "method": "get",
911
+ "path": "/project/{project}/resource/{name}"
912
+ },
913
+ {
914
+ "fnName": "apiResourcesv2",
915
+ "method": "get",
916
+ "path": "/project/{project}/resources"
917
+ },
918
+ {
919
+ "fnName": "apiSourceGetContent",
920
+ "method": "get",
921
+ "path": "/project/{project}/source/{index}/resources"
922
+ },
923
+ {
924
+ "fnName": "apiSourceWriteContent",
925
+ "method": "post",
926
+ "path": "/project/{project}/source/{index}/resources"
927
+ },
928
+ {
929
+ "fnName": "apiJobExecutionsDelete",
930
+ "method": "delete",
931
+ "path": "/job/{id}/executions"
932
+ },
933
+ {
934
+ "fnName": "apiJobExport",
935
+ "method": "get",
936
+ "path": "/job/{id}"
937
+ },
938
+ {
939
+ "fnName": "apiJobDelete",
940
+ "method": "delete",
941
+ "path": "/job/{id}"
942
+ },
943
+ {
944
+ "fnName": "apiFlipExecutionDisabled",
945
+ "method": "post",
946
+ "path": "/job/{id}/execution/disable"
947
+ },
948
+ {
949
+ "fnName": "apiFlipExecutionEnabled",
950
+ "method": "post",
951
+ "path": "/job/{id}/execution/enable"
952
+ },
953
+ {
954
+ "fnName": "apiJobForecast",
955
+ "method": "get",
956
+ "path": "/job/{id}/forecast"
957
+ },
958
+ {
959
+ "fnName": "apiJobDetail",
960
+ "method": "get",
961
+ "path": "/job/{id}/info"
962
+ },
963
+ {
964
+ "fnName": "apiJobFileMultiUpload",
965
+ "method": "post",
966
+ "path": "/job/{id}/input/file"
967
+ },
968
+ {
969
+ "fnName": "apiJobFileUpload",
970
+ "method": "post",
971
+ "path": "/job/{id}/input/file/{optionName}"
972
+ },
973
+ {
974
+ "fnName": "apiFlipScheduleDisabled",
975
+ "method": "post",
976
+ "path": "/job/{id}/schedule/disable"
977
+ },
978
+ {
979
+ "fnName": "apiFlipScheduleEnabled",
980
+ "method": "post",
981
+ "path": "/job/{id}/schedule/enable"
982
+ },
983
+ {
984
+ "fnName": "apiJobActionInput",
985
+ "method": "get",
986
+ "path": "/job/{id}/scm/{integration}/action/{actionId}/input"
987
+ },
988
+ {
989
+ "fnName": "apiJobStatus",
990
+ "method": "get",
991
+ "path": "/job/{id}/scm/{integration}/status"
992
+ },
993
+ {
994
+ "fnName": "apiJobWorkflow",
995
+ "method": "get",
996
+ "path": "/job/{id}/workflow"
997
+ },
998
+ {
999
+ "fnName": "apiFlipExecutionDisabledBulk",
1000
+ "method": "post",
1001
+ "path": "/jobs/execution/disable"
1002
+ },
1003
+ {
1004
+ "fnName": "apiFlipExecutionEnabledBulk",
1005
+ "method": "post",
1006
+ "path": "/jobs/execution/enable"
1007
+ },
1008
+ {
1009
+ "fnName": "apiFlipScheduleDisabledBulk",
1010
+ "method": "post",
1011
+ "path": "/jobs/schedule/disable"
1012
+ },
1013
+ {
1014
+ "fnName": "apiFlipScheduleEnabledBulk",
1015
+ "method": "post",
1016
+ "path": "/jobs/schedule/enable"
1017
+ },
1018
+ {
1019
+ "fnName": "apiJobBrowseGetDocs",
1020
+ "method": "get",
1021
+ "path": "/project/{project}/jobs/browse"
1022
+ },
1023
+ {
1024
+ "fnName": "apiJobBrowse",
1025
+ "method": "post",
1026
+ "path": "/project/{project}/jobs/browse"
1027
+ },
1028
+ {
1029
+ "fnName": "apiJobsExportv14",
1030
+ "method": "get",
1031
+ "path": "/project/{project}/jobs/export"
1032
+ },
1033
+ {
1034
+ "fnName": "apiExecutionDelete",
1035
+ "method": "delete",
1036
+ "path": "/execution/{id}"
1037
+ },
1038
+ {
1039
+ "fnName": "apiExecutionOutput",
1040
+ "method": "get",
1041
+ "path": "/execution/{id}/output"
1042
+ },
1043
+ {
1044
+ "fnName": "apiExecutionOutputNodeFilter",
1045
+ "method": "get",
1046
+ "path": "/execution/{id}/output/node/{nodename}"
1047
+ },
1048
+ {
1049
+ "fnName": "apiExecutionOutputNodeStepFilter",
1050
+ "method": "get",
1051
+ "path": "/execution/{id}/output/node/{nodename}/step/{stepctx}"
1052
+ },
1053
+ {
1054
+ "fnName": "apiExecutionStateOutput",
1055
+ "method": "get",
1056
+ "path": "/execution/{id}/output/state"
1057
+ },
1058
+ {
1059
+ "fnName": "apiExecutionOutputStepFilter",
1060
+ "method": "get",
1061
+ "path": "/execution/{id}/output/step/{stepctx}"
1062
+ },
1063
+ {
1064
+ "fnName": "apiExecutionState",
1065
+ "method": "get",
1066
+ "path": "/execution/{id}/state"
1067
+ },
1068
+ {
1069
+ "fnName": "apiExecutionMetricsProjectDocs",
1070
+ "method": "get",
1071
+ "path": "/project/{project}/executions/metrics"
1072
+ },
1073
+ {
1074
+ "fnName": "apiExecutionsRunningv14",
1075
+ "method": "get",
1076
+ "path": "/project/{project}/executions/running"
1077
+ },
1078
+ {
1079
+ "fnName": "apiProjectCreate",
1080
+ "method": "post",
1081
+ "path": "/project/projects"
1082
+ },
1083
+ {
1084
+ "fnName": "apiProjectGet",
1085
+ "method": "get",
1086
+ "path": "/project/{project}"
1087
+ },
1088
+ {
1089
+ "fnName": "apiProjectDelete",
1090
+ "method": "delete",
1091
+ "path": "/project/{project}"
1092
+ },
1093
+ {
1094
+ "fnName": "apiProjectAclsPostDocs",
1095
+ "method": "post",
1096
+ "path": "/project/{project}/acl/{path}"
1097
+ },
1098
+ {
1099
+ "fnName": "apiProjectAclsDeleteDocs",
1100
+ "method": "delete",
1101
+ "path": "/project/{project}/acl/{path}"
1102
+ },
1103
+ {
1104
+ "fnName": "apiProjectConfigGet",
1105
+ "method": "get",
1106
+ "path": "/project/{project}/config"
1107
+ },
1108
+ {
1109
+ "fnName": "apiProjectConfigPut",
1110
+ "method": "put",
1111
+ "path": "/project/{project}/config"
1112
+ },
1113
+ {
1114
+ "fnName": "apiProjectConfigKeyGet",
1115
+ "method": "get",
1116
+ "path": "/project/{project}/config/{keypath}"
1117
+ },
1118
+ {
1119
+ "fnName": "apiProjectConfigKeyPut",
1120
+ "method": "put",
1121
+ "path": "/project/{project}/config/{keypath}"
1122
+ },
1123
+ {
1124
+ "fnName": "apiProjectConfigKeyDelete",
1125
+ "method": "delete",
1126
+ "path": "/project/{project}/config/{keypath}"
1127
+ },
1128
+ {
1129
+ "fnName": "apiProjectExport",
1130
+ "method": "get",
1131
+ "path": "/project/{project}/export"
1132
+ },
1133
+ {
1134
+ "fnName": "apiProjectExportAsyncDocs",
1135
+ "method": "get",
1136
+ "path": "/project/{project}/export/async"
1137
+ },
1138
+ {
1139
+ "fnName": "apiProjectExportAsyncDownload",
1140
+ "method": "get",
1141
+ "path": "/project/{project}/export/download/{token}"
1142
+ },
1143
+ {
1144
+ "fnName": "apiProjectExportAsyncStatus",
1145
+ "method": "get",
1146
+ "path": "/project/{project}/export/status/{token}"
1147
+ },
1148
+ {
1149
+ "fnName": "apiProjectImport",
1150
+ "method": "put",
1151
+ "path": "/project/{project}/import"
1152
+ },
1153
+ {
1154
+ "fnName": "apiProjectFileGet",
1155
+ "method": "get",
1156
+ "path": "/project/{project}/{filename}"
1157
+ },
1158
+ {
1159
+ "fnName": "apiProjectFilePut",
1160
+ "method": "put",
1161
+ "path": "/project/{project}/{filename}"
1162
+ },
1163
+ {
1164
+ "fnName": "apiProjectFileDelete",
1165
+ "method": "delete",
1166
+ "path": "/project/{project}/{filename}"
1167
+ },
1168
+ {
1169
+ "fnName": "apiHistoryv14",
1170
+ "method": "get",
1171
+ "path": "/project/{project}/history"
1172
+ },
1173
+ {
1174
+ "fnName": "apiRunCommandv14",
1175
+ "method": "post",
1176
+ "path": "/project/{project}/run/command"
1177
+ },
1178
+ {
1179
+ "fnName": "apiRunScriptv14",
1180
+ "method": "post",
1181
+ "path": "/project/{project}/run/script"
1182
+ },
1183
+ {
1184
+ "fnName": "apiRunScriptUrlv14",
1185
+ "method": "post",
1186
+ "path": "/project/{project}/run/url"
1187
+ },
1188
+ {
1189
+ "fnName": "apiGetResource",
1190
+ "method": "get",
1191
+ "path": "/storage/keys/{path}"
1192
+ },
1193
+ {
1194
+ "fnName": "apiPutResource",
1195
+ "method": "put",
1196
+ "path": "/storage/keys/{path}"
1197
+ },
1198
+ {
1199
+ "fnName": "apiPostResource",
1200
+ "method": "post",
1201
+ "path": "/storage/keys/{path}"
1202
+ },
1203
+ {
1204
+ "fnName": "apiDeleteResource",
1205
+ "method": "delete",
1206
+ "path": "/storage/keys/{path}"
1207
+ },
1208
+ {
1209
+ "fnName": "apiSystemAclsPOSTDocs",
1210
+ "method": "post",
1211
+ "path": "/system/acl/{path}"
1212
+ },
1213
+ {
1214
+ "fnName": "apiSystemAclsDELETEDocs",
1215
+ "method": "delete",
1216
+ "path": "/system/acl/{path}"
1217
+ },
1218
+ {
1219
+ "fnName": "apiTokenGet",
1220
+ "method": "get",
1221
+ "path": "/token/{tokenid}"
1222
+ },
1223
+ {
1224
+ "fnName": "apiTokenDelete",
1225
+ "method": "delete",
1226
+ "path": "/token/{tokenid}"
1227
+ },
1228
+ {
1229
+ "fnName": "apiTokenCreate",
1230
+ "method": "post",
1231
+ "path": "/tokens/{user}"
1232
+ },
1233
+ {
1234
+ "fnName": "apiTokenRemoveExpired",
1235
+ "method": "post",
1236
+ "path": "/tokens/{user}/removeExpired"
1237
+ },
1238
+ {
1239
+ "fnName": "apiUserDataDocs",
1240
+ "method": "get",
1241
+ "path": "/user/info"
1242
+ },
1243
+ {
1244
+ "fnName": "apiUserDataPostDocs",
1245
+ "method": "post",
1246
+ "path": "/user/info"
1247
+ },
1248
+ {
1249
+ "fnName": "apiUserData",
1250
+ "method": "get",
1251
+ "path": "/user/info/{username}"
1252
+ },
1253
+ {
1254
+ "fnName": "apiOtherUserDataPostDocs",
1255
+ "method": "post",
1256
+ "path": "/user/info/{username}"
1257
+ },
1258
+ {
1259
+ "fnName": "apiListRoles",
1260
+ "method": "get",
1261
+ "path": "/user/roles"
1262
+ }
1263
+ ],
1264
+ "errors": [],
1265
+ "warnings": [
1266
+ "Method get in path /project/{project}/tours/resource/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1267
+ "Method post in path /project/{project}/tours/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1268
+ "Method get in path /runnerManagement/runner/{id}/keys has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1269
+ "Method get in path /system/tours/resource/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1270
+ "Method post in path /system/tours/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1271
+ "Method post in path /job/{id}/input/file/{optionName} has 2 parameters with the same name. Parameter name changed to bodyFormData to avoid errors.",
1272
+ "Method get in path /project/{project}/jobs/browse has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1273
+ "Method post in path /project/{project}/jobs/browse has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1274
+ "Method get in path /project/{project}/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1275
+ "Method put in path /project/{project}/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1276
+ "Method post in path /project/{project}/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1277
+ "Method delete in path /project/{project}/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1278
+ "Method get in path /storage/keys/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1279
+ "Method put in path /storage/keys/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1280
+ "Method put in path /storage/keys/{path} has 2 parameters with the same name. Parameter name changed to bodyFormData to avoid errors.",
1281
+ "Method post in path /storage/keys/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1282
+ "Method post in path /storage/keys/{path} has 2 parameters with the same name. Parameter name changed to bodyFormData to avoid errors.",
1283
+ "Method delete in path /storage/keys/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1284
+ "Method get in path /system/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1285
+ "Method put in path /system/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1286
+ "Method post in path /system/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors.",
1287
+ "Method delete in path /system/acl/{path} has parameter with the name of an adapter keyword. Parameter name changed from path to pathParam to avoid errors."
1288
+ ],
1289
+ "callsTotal": 212,
1290
+ "callsConverted": 212,
1291
+ "no_mockdata_num": 146
1292
+ }
1293
+ }