@itentialopensource/adapter-calix_smx 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 (86) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +42 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +207 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +676 -0
  12. package/README.md +344 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +35 -0
  15. package/TROUBLESHOOT.md +56 -0
  16. package/UTILITIES.md +473 -0
  17. package/adapter.js +189915 -0
  18. package/adapterBase.js +1526 -0
  19. package/entities/.generic/action.json +214 -0
  20. package/entities/.generic/schema.json +28 -0
  21. package/entities/.system/action.json +50 -0
  22. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  23. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  24. package/entities/.system/schema.json +19 -0
  25. package/entities/.system/schemaTokenReq.json +53 -0
  26. package/entities/.system/schemaTokenResp.json +53 -0
  27. package/entities/Config/action.json +861 -0
  28. package/entities/Config/schema.json +136 -0
  29. package/entities/ConfigDevice/action.json +12813 -0
  30. package/entities/ConfigDevice/schema.json +1281 -0
  31. package/entities/ConfigProfile/action.json +2608 -0
  32. package/entities/ConfigProfile/schema.json +164 -0
  33. package/entities/ConfigTemplate/action.json +841 -0
  34. package/entities/ConfigTemplate/schema.json +147 -0
  35. package/entities/EMS/action.json +1565 -0
  36. package/entities/EMS/schema.json +182 -0
  37. package/entities/EMSProfile/action.json +14871 -0
  38. package/entities/EMSProfile/schema.json +1001 -0
  39. package/entities/EMSRegion/action.json +127 -0
  40. package/entities/EMSRegion/schema.json +24 -0
  41. package/entities/EMSService/action.json +855 -0
  42. package/entities/EMSService/schema.json +269 -0
  43. package/entities/EMSSubscriber/action.json +190 -0
  44. package/entities/EMSSubscriber/schema.json +104 -0
  45. package/entities/Fault/action.json +209 -0
  46. package/entities/Fault/schema.json +61 -0
  47. package/entities/Log/action.json +25 -0
  48. package/entities/Log/schema.json +19 -0
  49. package/entities/PerformanceMonitoring/action.json +1114 -0
  50. package/entities/PerformanceMonitoring/schema.json +302 -0
  51. package/entities/Port/action.json +24 -0
  52. package/entities/Port/schema.json +30 -0
  53. package/error.json +190 -0
  54. package/metadata.json +81 -0
  55. package/package.json +76 -0
  56. package/pronghorn.json +119022 -0
  57. package/propertiesDecorators.json +18 -0
  58. package/propertiesSchema.json +1765 -0
  59. package/report/creationReport.json +9189 -0
  60. package/report/smx_modified_rename.json +97860 -0
  61. package/report/updateReport1766175812348.json +120 -0
  62. package/sampleProperties.json +263 -0
  63. package/test/integration/adapterTestBasicGet.js +117 -0
  64. package/test/integration/adapterTestConnectivity.js +117 -0
  65. package/test/integration/adapterTestIntegration.js +45491 -0
  66. package/test/unit/adapterBaseTestUnit.js +1628 -0
  67. package/test/unit/adapterTestUnit.js +66088 -0
  68. package/utils/adapterInfo.js +156 -0
  69. package/utils/argParser.js +44 -0
  70. package/utils/checkMigrate.js +102 -0
  71. package/utils/entitiesToDB.js +190 -0
  72. package/utils/findPath.js +74 -0
  73. package/utils/logger.js +26 -0
  74. package/utils/methodDocumentor.js +273 -0
  75. package/utils/modify.js +153 -0
  76. package/utils/mongoDbConnection.js +79 -0
  77. package/utils/mongoUtils.js +162 -0
  78. package/utils/pre-commit.sh +32 -0
  79. package/utils/removeHooks.js +20 -0
  80. package/utils/setup.js +33 -0
  81. package/utils/taskMover.js +308 -0
  82. package/utils/tbScript.js +103 -0
  83. package/utils/tbUtils.js +347 -0
  84. package/utils/testRunner.js +298 -0
  85. package/utils/troubleshootingAdapter.js +177 -0
  86. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,1565 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getAllActivate",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/activate?{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": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getAllDeviceGroup",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/activate/deviceGroup?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "createDeviceGroup",
47
+ "protocol": "REST",
48
+ "method": "POST",
49
+ "entitypath": "{base_path}/{version}/activate/deviceGroup?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": 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": "getDeviceGroupByName",
67
+ "protocol": "REST",
68
+ "method": "GET",
69
+ "entitypath": "{base_path}/{version}/activate/deviceGroup/{pathv1}?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "sendGetBody": false,
75
+ "requestDatatype": "JSON",
76
+ "responseDatatype": "JSON",
77
+ "headers": {},
78
+ "responseObjects": [
79
+ {
80
+ "type": "default",
81
+ "key": "",
82
+ "mockFile": ""
83
+ }
84
+ ]
85
+ },
86
+ {
87
+ "name": "updateDeviceGroupByName",
88
+ "protocol": "REST",
89
+ "method": "PUT",
90
+ "entitypath": "{base_path}/{version}/activate/deviceGroup/{pathv1}?{query}",
91
+ "requestSchema": "schema.json",
92
+ "responseSchema": "schema.json",
93
+ "timeout": 0,
94
+ "sendEmpty": false,
95
+ "requestDatatype": "JSON",
96
+ "responseDatatype": "JSON",
97
+ "headers": {},
98
+ "responseObjects": [
99
+ {
100
+ "type": "default",
101
+ "key": "",
102
+ "mockFile": ""
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "name": "deleteDeviceGroupByName",
108
+ "protocol": "REST",
109
+ "method": "DELETE",
110
+ "entitypath": "{base_path}/{version}/activate/deviceGroup/{pathv1}?{query}",
111
+ "requestSchema": "schema.json",
112
+ "responseSchema": "schema.json",
113
+ "timeout": 0,
114
+ "sendEmpty": false,
115
+ "requestDatatype": "JSON",
116
+ "responseDatatype": "JSON",
117
+ "headers": {},
118
+ "responseObjects": [
119
+ {
120
+ "type": "default",
121
+ "key": "",
122
+ "mockFile": ""
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "name": "getGetUnmanagedDevicesByName",
128
+ "protocol": "REST",
129
+ "method": "GET",
130
+ "entitypath": "{base_path}/{version}/activate/deviceGroup/{pathv1}/getUnmanagedDevices?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "sendGetBody": false,
136
+ "requestDatatype": "JSON",
137
+ "responseDatatype": "JSON",
138
+ "headers": {},
139
+ "responseObjects": [
140
+ {
141
+ "type": "default",
142
+ "key": "",
143
+ "mockFile": ""
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "name": "getAllTask",
149
+ "protocol": "REST",
150
+ "method": "GET",
151
+ "entitypath": "{base_path}/{version}/config/task?{query}",
152
+ "requestSchema": "schema.json",
153
+ "responseSchema": "schema.json",
154
+ "timeout": 0,
155
+ "sendEmpty": false,
156
+ "sendGetBody": false,
157
+ "requestDatatype": "JSON",
158
+ "responseDatatype": "JSON",
159
+ "headers": {},
160
+ "responseObjects": [
161
+ {
162
+ "type": "default",
163
+ "key": "",
164
+ "mockFile": ""
165
+ }
166
+ ]
167
+ },
168
+ {
169
+ "name": "getDeviceByDevice",
170
+ "protocol": "REST",
171
+ "method": "GET",
172
+ "entitypath": "{base_path}/{version}/config/task/device/{pathv1}?{query}",
173
+ "requestSchema": "schema.json",
174
+ "responseSchema": "schema.json",
175
+ "timeout": 0,
176
+ "sendEmpty": false,
177
+ "sendGetBody": false,
178
+ "requestDatatype": "JSON",
179
+ "responseDatatype": "JSON",
180
+ "headers": {},
181
+ "responseObjects": [
182
+ {
183
+ "type": "default",
184
+ "key": "",
185
+ "mockFile": ""
186
+ }
187
+ ]
188
+ },
189
+ {
190
+ "name": "updateTask",
191
+ "protocol": "REST",
192
+ "method": "PUT",
193
+ "entitypath": "{base_path}/{version}/config/task/{pathv1}?{query}",
194
+ "requestSchema": "schema.json",
195
+ "responseSchema": "schema.json",
196
+ "timeout": 0,
197
+ "sendEmpty": false,
198
+ "requestDatatype": "JSON",
199
+ "responseDatatype": "JSON",
200
+ "headers": {},
201
+ "responseObjects": [
202
+ {
203
+ "type": "default",
204
+ "key": "",
205
+ "mockFile": ""
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "name": "getAllActiveSubscriber",
211
+ "protocol": "REST",
212
+ "method": "GET",
213
+ "entitypath": "{base_path}/{version}/ems/active-subscriber?{query}",
214
+ "requestSchema": "schema.json",
215
+ "responseSchema": "schema.json",
216
+ "timeout": 0,
217
+ "sendEmpty": false,
218
+ "sendGetBody": false,
219
+ "requestDatatype": "JSON",
220
+ "responseDatatype": "JSON",
221
+ "headers": {},
222
+ "responseObjects": [
223
+ {
224
+ "type": "default",
225
+ "key": "",
226
+ "mockFile": ""
227
+ }
228
+ ]
229
+ },
230
+ {
231
+ "name": "createCsv",
232
+ "protocol": "REST",
233
+ "method": "POST",
234
+ "entitypath": "{base_path}/{version}/ems/import/subscriber/csv?{query}",
235
+ "requestSchema": "schema.json",
236
+ "responseSchema": "schema.json",
237
+ "timeout": 0,
238
+ "sendEmpty": false,
239
+ "requestDatatype": "JSON",
240
+ "responseDatatype": "JSON",
241
+ "headers": {},
242
+ "responseObjects": [
243
+ {
244
+ "type": "default",
245
+ "key": "",
246
+ "mockFile": ""
247
+ }
248
+ ]
249
+ },
250
+ {
251
+ "name": "getAllApiRate",
252
+ "protocol": "REST",
253
+ "method": "GET",
254
+ "entitypath": "{base_path}/{version}/ems/server-utilization/api-rate?{query}",
255
+ "requestSchema": "schema.json",
256
+ "responseSchema": "schema.json",
257
+ "timeout": 0,
258
+ "sendEmpty": false,
259
+ "sendGetBody": false,
260
+ "requestDatatype": "JSON",
261
+ "responseDatatype": "JSON",
262
+ "headers": {},
263
+ "responseObjects": [
264
+ {
265
+ "type": "default",
266
+ "key": "",
267
+ "mockFile": ""
268
+ }
269
+ ]
270
+ },
271
+ {
272
+ "name": "getAllMetrics",
273
+ "protocol": "REST",
274
+ "method": "GET",
275
+ "entitypath": "{base_path}/{version}/ems/server-utilization/nbi/api/metrics?{query}",
276
+ "requestSchema": "schema.json",
277
+ "responseSchema": "schema.json",
278
+ "timeout": 0,
279
+ "sendEmpty": false,
280
+ "sendGetBody": false,
281
+ "requestDatatype": "JSON",
282
+ "responseDatatype": "JSON",
283
+ "headers": {},
284
+ "responseObjects": [
285
+ {
286
+ "type": "default",
287
+ "key": "",
288
+ "mockFile": ""
289
+ }
290
+ ]
291
+ },
292
+ {
293
+ "name": "getAllStatus",
294
+ "protocol": "REST",
295
+ "method": "GET",
296
+ "entitypath": "{base_path}/{version}/ems/serverProcess/geo/cluster/status?{query}",
297
+ "requestSchema": "schema.json",
298
+ "responseSchema": "schema.json",
299
+ "timeout": 0,
300
+ "sendEmpty": false,
301
+ "sendGetBody": false,
302
+ "requestDatatype": "JSON",
303
+ "responseDatatype": "JSON",
304
+ "headers": {},
305
+ "responseObjects": [
306
+ {
307
+ "type": "default",
308
+ "key": "",
309
+ "mockFile": ""
310
+ }
311
+ ]
312
+ },
313
+ {
314
+ "name": "getAllStatus1",
315
+ "protocol": "REST",
316
+ "method": "GET",
317
+ "entitypath": "{base_path}/{version}/ems/serverProcess/status?{query}",
318
+ "requestSchema": "schema.json",
319
+ "responseSchema": "schema.json",
320
+ "timeout": 0,
321
+ "sendEmpty": false,
322
+ "sendGetBody": false,
323
+ "requestDatatype": "JSON",
324
+ "responseDatatype": "JSON",
325
+ "headers": {},
326
+ "responseObjects": [
327
+ {
328
+ "type": "default",
329
+ "key": "",
330
+ "mockFile": ""
331
+ }
332
+ ]
333
+ },
334
+ {
335
+ "name": "getAllTag",
336
+ "protocol": "REST",
337
+ "method": "GET",
338
+ "entitypath": "{base_path}/{version}/ems/tag?{query}",
339
+ "requestSchema": "schema.json",
340
+ "responseSchema": "schema.json",
341
+ "timeout": 0,
342
+ "sendEmpty": false,
343
+ "sendGetBody": false,
344
+ "requestDatatype": "JSON",
345
+ "responseDatatype": "JSON",
346
+ "headers": {},
347
+ "responseObjects": [
348
+ {
349
+ "type": "default",
350
+ "key": "",
351
+ "mockFile": ""
352
+ }
353
+ ]
354
+ },
355
+ {
356
+ "name": "createTag",
357
+ "protocol": "REST",
358
+ "method": "POST",
359
+ "entitypath": "{base_path}/{version}/ems/tag?{query}",
360
+ "requestSchema": "schema.json",
361
+ "responseSchema": "schema.json",
362
+ "timeout": 0,
363
+ "sendEmpty": false,
364
+ "requestDatatype": "JSON",
365
+ "responseDatatype": "JSON",
366
+ "headers": {},
367
+ "responseObjects": [
368
+ {
369
+ "type": "default",
370
+ "key": "",
371
+ "mockFile": ""
372
+ }
373
+ ]
374
+ },
375
+ {
376
+ "name": "updateTag",
377
+ "protocol": "REST",
378
+ "method": "PUT",
379
+ "entitypath": "{base_path}/{version}/ems/tag?{query}",
380
+ "requestSchema": "schema.json",
381
+ "responseSchema": "schema.json",
382
+ "timeout": 0,
383
+ "sendEmpty": false,
384
+ "requestDatatype": "JSON",
385
+ "responseDatatype": "JSON",
386
+ "headers": {},
387
+ "responseObjects": [
388
+ {
389
+ "type": "default",
390
+ "key": "",
391
+ "mockFile": ""
392
+ }
393
+ ]
394
+ },
395
+ {
396
+ "name": "getTagByName",
397
+ "protocol": "REST",
398
+ "method": "GET",
399
+ "entitypath": "{base_path}/{version}/ems/tag/{pathv1}?{query}",
400
+ "requestSchema": "schema.json",
401
+ "responseSchema": "schema.json",
402
+ "timeout": 0,
403
+ "sendEmpty": false,
404
+ "sendGetBody": false,
405
+ "requestDatatype": "JSON",
406
+ "responseDatatype": "JSON",
407
+ "headers": {},
408
+ "responseObjects": [
409
+ {
410
+ "type": "default",
411
+ "key": "",
412
+ "mockFile": ""
413
+ }
414
+ ]
415
+ },
416
+ {
417
+ "name": "updateTagByName",
418
+ "protocol": "REST",
419
+ "method": "PUT",
420
+ "entitypath": "{base_path}/{version}/ems/tag/{pathv1}?{query}",
421
+ "requestSchema": "schema.json",
422
+ "responseSchema": "schema.json",
423
+ "timeout": 0,
424
+ "sendEmpty": false,
425
+ "requestDatatype": "JSON",
426
+ "responseDatatype": "JSON",
427
+ "headers": {},
428
+ "responseObjects": [
429
+ {
430
+ "type": "default",
431
+ "key": "",
432
+ "mockFile": ""
433
+ }
434
+ ]
435
+ },
436
+ {
437
+ "name": "deleteTagByName",
438
+ "protocol": "REST",
439
+ "method": "DELETE",
440
+ "entitypath": "{base_path}/{version}/ems/tag/{pathv1}?{query}",
441
+ "requestSchema": "schema.json",
442
+ "responseSchema": "schema.json",
443
+ "timeout": 0,
444
+ "sendEmpty": false,
445
+ "requestDatatype": "JSON",
446
+ "responseDatatype": "JSON",
447
+ "headers": {},
448
+ "responseObjects": [
449
+ {
450
+ "type": "default",
451
+ "key": "",
452
+ "mockFile": ""
453
+ }
454
+ ]
455
+ },
456
+ {
457
+ "name": "getAllReindex",
458
+ "protocol": "REST",
459
+ "method": "GET",
460
+ "entitypath": "{base_path}/{version}/es/reindex?{query}",
461
+ "requestSchema": "schema.json",
462
+ "responseSchema": "schema.json",
463
+ "timeout": 0,
464
+ "sendEmpty": false,
465
+ "sendGetBody": false,
466
+ "requestDatatype": "JSON",
467
+ "responseDatatype": "JSON",
468
+ "headers": {},
469
+ "responseObjects": [
470
+ {
471
+ "type": "default",
472
+ "key": "",
473
+ "mockFile": ""
474
+ }
475
+ ]
476
+ },
477
+ {
478
+ "name": "getAllSearch",
479
+ "protocol": "REST",
480
+ "method": "GET",
481
+ "entitypath": "{base_path}/{version}/es/search?{query}",
482
+ "requestSchema": "schema.json",
483
+ "responseSchema": "schema.json",
484
+ "timeout": 0,
485
+ "sendEmpty": false,
486
+ "sendGetBody": false,
487
+ "requestDatatype": "JSON",
488
+ "responseDatatype": "JSON",
489
+ "headers": {},
490
+ "responseObjects": [
491
+ {
492
+ "type": "default",
493
+ "key": "",
494
+ "mockFile": ""
495
+ }
496
+ ]
497
+ },
498
+ {
499
+ "name": "getSearch",
500
+ "protocol": "REST",
501
+ "method": "GET",
502
+ "entitypath": "{base_path}/{version}/es/{pathv1}/search?{query}",
503
+ "requestSchema": "schema.json",
504
+ "responseSchema": "schema.json",
505
+ "timeout": 0,
506
+ "sendEmpty": false,
507
+ "sendGetBody": false,
508
+ "requestDatatype": "JSON",
509
+ "responseDatatype": "JSON",
510
+ "headers": {},
511
+ "responseObjects": [
512
+ {
513
+ "type": "default",
514
+ "key": "",
515
+ "mockFile": ""
516
+ }
517
+ ]
518
+ },
519
+ {
520
+ "name": "getExport",
521
+ "protocol": "REST",
522
+ "method": "GET",
523
+ "entitypath": "{base_path}/{version}/export/{pathv1}/{pathv2}?{query}",
524
+ "requestSchema": "schema.json",
525
+ "responseSchema": "schema.json",
526
+ "timeout": 0,
527
+ "sendEmpty": false,
528
+ "sendGetBody": false,
529
+ "requestDatatype": "JSON",
530
+ "responseDatatype": "JSON",
531
+ "headers": {},
532
+ "responseObjects": [
533
+ {
534
+ "type": "default",
535
+ "key": "",
536
+ "mockFile": ""
537
+ }
538
+ ]
539
+ },
540
+ {
541
+ "name": "getAllFtpserver",
542
+ "protocol": "REST",
543
+ "method": "GET",
544
+ "entitypath": "{base_path}/{version}/ftpserver?{query}",
545
+ "requestSchema": "schema.json",
546
+ "responseSchema": "schema.json",
547
+ "timeout": 0,
548
+ "sendEmpty": false,
549
+ "sendGetBody": false,
550
+ "requestDatatype": "JSON",
551
+ "responseDatatype": "JSON",
552
+ "headers": {},
553
+ "responseObjects": [
554
+ {
555
+ "type": "default",
556
+ "key": "",
557
+ "mockFile": ""
558
+ }
559
+ ]
560
+ },
561
+ {
562
+ "name": "createFtpserver",
563
+ "protocol": "REST",
564
+ "method": "POST",
565
+ "entitypath": "{base_path}/{version}/ftpserver?{query}",
566
+ "requestSchema": "schema.json",
567
+ "responseSchema": "schema.json",
568
+ "timeout": 0,
569
+ "sendEmpty": false,
570
+ "requestDatatype": "JSON",
571
+ "responseDatatype": "JSON",
572
+ "headers": {},
573
+ "responseObjects": [
574
+ {
575
+ "type": "default",
576
+ "key": "",
577
+ "mockFile": ""
578
+ }
579
+ ]
580
+ },
581
+ {
582
+ "name": "updateFtpserver",
583
+ "protocol": "REST",
584
+ "method": "PUT",
585
+ "entitypath": "{base_path}/{version}/ftpserver?{query}",
586
+ "requestSchema": "schema.json",
587
+ "responseSchema": "schema.json",
588
+ "timeout": 0,
589
+ "sendEmpty": false,
590
+ "requestDatatype": "JSON",
591
+ "responseDatatype": "JSON",
592
+ "headers": {},
593
+ "responseObjects": [
594
+ {
595
+ "type": "default",
596
+ "key": "",
597
+ "mockFile": ""
598
+ }
599
+ ]
600
+ },
601
+ {
602
+ "name": "deleteFtpserver",
603
+ "protocol": "REST",
604
+ "method": "DELETE",
605
+ "entitypath": "{base_path}/{version}/ftpserver?{query}",
606
+ "requestSchema": "schema.json",
607
+ "responseSchema": "schema.json",
608
+ "timeout": 0,
609
+ "sendEmpty": false,
610
+ "requestDatatype": "JSON",
611
+ "responseDatatype": "JSON",
612
+ "headers": {},
613
+ "responseObjects": [
614
+ {
615
+ "type": "default",
616
+ "key": "",
617
+ "mockFile": ""
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "name": "getFtpserverByName",
623
+ "protocol": "REST",
624
+ "method": "GET",
625
+ "entitypath": "{base_path}/{version}/ftpserver/{pathv1}?{query}",
626
+ "requestSchema": "schema.json",
627
+ "responseSchema": "schema.json",
628
+ "timeout": 0,
629
+ "sendEmpty": false,
630
+ "sendGetBody": false,
631
+ "requestDatatype": "JSON",
632
+ "responseDatatype": "JSON",
633
+ "headers": {},
634
+ "responseObjects": [
635
+ {
636
+ "type": "default",
637
+ "key": "",
638
+ "mockFile": ""
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "name": "getAllScheduledexport",
644
+ "protocol": "REST",
645
+ "method": "GET",
646
+ "entitypath": "{base_path}/{version}/scheduledexport?{query}",
647
+ "requestSchema": "schema.json",
648
+ "responseSchema": "schema.json",
649
+ "timeout": 0,
650
+ "sendEmpty": false,
651
+ "sendGetBody": false,
652
+ "requestDatatype": "JSON",
653
+ "responseDatatype": "JSON",
654
+ "headers": {},
655
+ "responseObjects": [
656
+ {
657
+ "type": "default",
658
+ "key": "",
659
+ "mockFile": ""
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "name": "createScheduledexport",
665
+ "protocol": "REST",
666
+ "method": "POST",
667
+ "entitypath": "{base_path}/{version}/scheduledexport?{query}",
668
+ "requestSchema": "schema.json",
669
+ "responseSchema": "schema.json",
670
+ "timeout": 0,
671
+ "sendEmpty": false,
672
+ "requestDatatype": "JSON",
673
+ "responseDatatype": "JSON",
674
+ "headers": {},
675
+ "responseObjects": [
676
+ {
677
+ "type": "default",
678
+ "key": "",
679
+ "mockFile": ""
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "name": "deleteScheduledexport",
685
+ "protocol": "REST",
686
+ "method": "DELETE",
687
+ "entitypath": "{base_path}/{version}/scheduledexport?{query}",
688
+ "requestSchema": "schema.json",
689
+ "responseSchema": "schema.json",
690
+ "timeout": 0,
691
+ "sendEmpty": false,
692
+ "requestDatatype": "JSON",
693
+ "responseDatatype": "JSON",
694
+ "headers": {},
695
+ "responseObjects": [
696
+ {
697
+ "type": "default",
698
+ "key": "",
699
+ "mockFile": ""
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ "name": "getScheduledexportByName",
705
+ "protocol": "REST",
706
+ "method": "GET",
707
+ "entitypath": "{base_path}/{version}/scheduledexport/{pathv1}?{query}",
708
+ "requestSchema": "schema.json",
709
+ "responseSchema": "schema.json",
710
+ "timeout": 0,
711
+ "sendEmpty": false,
712
+ "sendGetBody": false,
713
+ "requestDatatype": "JSON",
714
+ "responseDatatype": "JSON",
715
+ "headers": {},
716
+ "responseObjects": [
717
+ {
718
+ "type": "default",
719
+ "key": "",
720
+ "mockFile": ""
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "name": "getAllSoftwareImage",
726
+ "protocol": "REST",
727
+ "method": "GET",
728
+ "entitypath": "{base_path}/{version}/software-image?{query}",
729
+ "requestSchema": "schema.json",
730
+ "responseSchema": "schema.json",
731
+ "timeout": 0,
732
+ "sendEmpty": false,
733
+ "sendGetBody": false,
734
+ "requestDatatype": "JSON",
735
+ "responseDatatype": "JSON",
736
+ "headers": {},
737
+ "responseObjects": [
738
+ {
739
+ "type": "default",
740
+ "key": "",
741
+ "mockFile": ""
742
+ }
743
+ ]
744
+ },
745
+ {
746
+ "name": "createSoftwareImage",
747
+ "protocol": "REST",
748
+ "method": "POST",
749
+ "entitypath": "{base_path}/{version}/software-image?{query}",
750
+ "requestSchema": "schema.json",
751
+ "responseSchema": "schema.json",
752
+ "timeout": 0,
753
+ "sendEmpty": false,
754
+ "requestDatatype": "JSON",
755
+ "responseDatatype": "JSON",
756
+ "headers": {},
757
+ "responseObjects": [
758
+ {
759
+ "type": "default",
760
+ "key": "",
761
+ "mockFile": ""
762
+ }
763
+ ]
764
+ },
765
+ {
766
+ "name": "updateSoftwareImage",
767
+ "protocol": "REST",
768
+ "method": "PUT",
769
+ "entitypath": "{base_path}/{version}/software-image?{query}",
770
+ "requestSchema": "schema.json",
771
+ "responseSchema": "schema.json",
772
+ "timeout": 0,
773
+ "sendEmpty": false,
774
+ "requestDatatype": "JSON",
775
+ "responseDatatype": "JSON",
776
+ "headers": {},
777
+ "responseObjects": [
778
+ {
779
+ "type": "default",
780
+ "key": "",
781
+ "mockFile": ""
782
+ }
783
+ ]
784
+ },
785
+ {
786
+ "name": "deleteSoftwareImage",
787
+ "protocol": "REST",
788
+ "method": "DELETE",
789
+ "entitypath": "{base_path}/{version}/software-image?{query}",
790
+ "requestSchema": "schema.json",
791
+ "responseSchema": "schema.json",
792
+ "timeout": 0,
793
+ "sendEmpty": false,
794
+ "requestDatatype": "JSON",
795
+ "responseDatatype": "JSON",
796
+ "headers": {},
797
+ "responseObjects": [
798
+ {
799
+ "type": "default",
800
+ "key": "",
801
+ "mockFile": ""
802
+ }
803
+ ]
804
+ },
805
+ {
806
+ "name": "getSoftwareImageByName",
807
+ "protocol": "REST",
808
+ "method": "GET",
809
+ "entitypath": "{base_path}/{version}/software-image/{pathv1}?{query}",
810
+ "requestSchema": "schema.json",
811
+ "responseSchema": "schema.json",
812
+ "timeout": 0,
813
+ "sendEmpty": false,
814
+ "sendGetBody": false,
815
+ "requestDatatype": "JSON",
816
+ "responseDatatype": "JSON",
817
+ "headers": {},
818
+ "responseObjects": [
819
+ {
820
+ "type": "default",
821
+ "key": "",
822
+ "mockFile": ""
823
+ }
824
+ ]
825
+ },
826
+ {
827
+ "name": "getAllSystemwhitelist",
828
+ "protocol": "REST",
829
+ "method": "GET",
830
+ "entitypath": "{base_path}/{version}/systemwhitelist?{query}",
831
+ "requestSchema": "schema.json",
832
+ "responseSchema": "schema.json",
833
+ "timeout": 0,
834
+ "sendEmpty": false,
835
+ "sendGetBody": false,
836
+ "requestDatatype": "JSON",
837
+ "responseDatatype": "JSON",
838
+ "headers": {},
839
+ "responseObjects": [
840
+ {
841
+ "type": "default",
842
+ "key": "",
843
+ "mockFile": ""
844
+ }
845
+ ]
846
+ },
847
+ {
848
+ "name": "createSystemwhitelist",
849
+ "protocol": "REST",
850
+ "method": "POST",
851
+ "entitypath": "{base_path}/{version}/systemwhitelist?{query}",
852
+ "requestSchema": "schema.json",
853
+ "responseSchema": "schema.json",
854
+ "timeout": 0,
855
+ "sendEmpty": false,
856
+ "requestDatatype": "JSON",
857
+ "responseDatatype": "JSON",
858
+ "headers": {},
859
+ "responseObjects": [
860
+ {
861
+ "type": "default",
862
+ "key": "",
863
+ "mockFile": ""
864
+ }
865
+ ]
866
+ },
867
+ {
868
+ "name": "updateSystemwhitelist",
869
+ "protocol": "REST",
870
+ "method": "PUT",
871
+ "entitypath": "{base_path}/{version}/systemwhitelist?{query}",
872
+ "requestSchema": "schema.json",
873
+ "responseSchema": "schema.json",
874
+ "timeout": 0,
875
+ "sendEmpty": false,
876
+ "requestDatatype": "JSON",
877
+ "responseDatatype": "JSON",
878
+ "headers": {},
879
+ "responseObjects": [
880
+ {
881
+ "type": "default",
882
+ "key": "",
883
+ "mockFile": ""
884
+ }
885
+ ]
886
+ },
887
+ {
888
+ "name": "deleteSystemwhitelist",
889
+ "protocol": "REST",
890
+ "method": "DELETE",
891
+ "entitypath": "{base_path}/{version}/systemwhitelist?{query}",
892
+ "requestSchema": "schema.json",
893
+ "responseSchema": "schema.json",
894
+ "timeout": 0,
895
+ "sendEmpty": false,
896
+ "requestDatatype": "JSON",
897
+ "responseDatatype": "JSON",
898
+ "headers": {},
899
+ "responseObjects": [
900
+ {
901
+ "type": "default",
902
+ "key": "",
903
+ "mockFile": ""
904
+ }
905
+ ]
906
+ },
907
+ {
908
+ "name": "getAllWhitelist",
909
+ "protocol": "REST",
910
+ "method": "GET",
911
+ "entitypath": "{base_path}/{version}/systemwhitelist/whitelist?{query}",
912
+ "requestSchema": "schema.json",
913
+ "responseSchema": "schema.json",
914
+ "timeout": 0,
915
+ "sendEmpty": false,
916
+ "sendGetBody": false,
917
+ "requestDatatype": "JSON",
918
+ "responseDatatype": "JSON",
919
+ "headers": {},
920
+ "responseObjects": [
921
+ {
922
+ "type": "default",
923
+ "key": "",
924
+ "mockFile": ""
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "name": "getAllConfig1",
930
+ "protocol": "REST",
931
+ "method": "GET",
932
+ "entitypath": "{base_path}/{version}/throttle/config?{query}",
933
+ "requestSchema": "schema.json",
934
+ "responseSchema": "schema.json",
935
+ "timeout": 0,
936
+ "sendEmpty": false,
937
+ "sendGetBody": false,
938
+ "requestDatatype": "JSON",
939
+ "responseDatatype": "JSON",
940
+ "headers": {},
941
+ "responseObjects": [
942
+ {
943
+ "type": "default",
944
+ "key": "",
945
+ "mockFile": ""
946
+ }
947
+ ]
948
+ },
949
+ {
950
+ "name": "createConfig",
951
+ "protocol": "REST",
952
+ "method": "POST",
953
+ "entitypath": "{base_path}/{version}/throttle/config?{query}",
954
+ "requestSchema": "schema.json",
955
+ "responseSchema": "schema.json",
956
+ "timeout": 0,
957
+ "sendEmpty": false,
958
+ "requestDatatype": "JSON",
959
+ "responseDatatype": "JSON",
960
+ "headers": {},
961
+ "responseObjects": [
962
+ {
963
+ "type": "default",
964
+ "key": "",
965
+ "mockFile": ""
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ "name": "getAllDefault",
971
+ "protocol": "REST",
972
+ "method": "GET",
973
+ "entitypath": "{base_path}/{version}/throttle/default?{query}",
974
+ "requestSchema": "schema.json",
975
+ "responseSchema": "schema.json",
976
+ "timeout": 0,
977
+ "sendEmpty": false,
978
+ "sendGetBody": false,
979
+ "requestDatatype": "JSON",
980
+ "responseDatatype": "JSON",
981
+ "headers": {},
982
+ "responseObjects": [
983
+ {
984
+ "type": "default",
985
+ "key": "",
986
+ "mockFile": ""
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "name": "getUserPref",
992
+ "protocol": "REST",
993
+ "method": "GET",
994
+ "entitypath": "{base_path}/{version}/userPref/{pathv1}?{query}",
995
+ "requestSchema": "schema.json",
996
+ "responseSchema": "schema.json",
997
+ "timeout": 0,
998
+ "sendEmpty": false,
999
+ "sendGetBody": false,
1000
+ "requestDatatype": "JSON",
1001
+ "responseDatatype": "JSON",
1002
+ "headers": {},
1003
+ "responseObjects": [
1004
+ {
1005
+ "type": "default",
1006
+ "key": "",
1007
+ "mockFile": ""
1008
+ }
1009
+ ]
1010
+ },
1011
+ {
1012
+ "name": "updateUserPref",
1013
+ "protocol": "REST",
1014
+ "method": "PUT",
1015
+ "entitypath": "{base_path}/{version}/userPref/{pathv1}?{query}",
1016
+ "requestSchema": "schema.json",
1017
+ "responseSchema": "schema.json",
1018
+ "timeout": 0,
1019
+ "sendEmpty": false,
1020
+ "requestDatatype": "JSON",
1021
+ "responseDatatype": "JSON",
1022
+ "headers": {},
1023
+ "responseObjects": [
1024
+ {
1025
+ "type": "default",
1026
+ "key": "",
1027
+ "mockFile": ""
1028
+ }
1029
+ ]
1030
+ },
1031
+ {
1032
+ "name": "getAllWorkflow",
1033
+ "protocol": "REST",
1034
+ "method": "GET",
1035
+ "entitypath": "{base_path}/{version}/workflow?{query}",
1036
+ "requestSchema": "schema.json",
1037
+ "responseSchema": "schema.json",
1038
+ "timeout": 0,
1039
+ "sendEmpty": false,
1040
+ "sendGetBody": false,
1041
+ "requestDatatype": "JSON",
1042
+ "responseDatatype": "JSON",
1043
+ "headers": {},
1044
+ "responseObjects": [
1045
+ {
1046
+ "type": "default",
1047
+ "key": "",
1048
+ "mockFile": ""
1049
+ }
1050
+ ]
1051
+ },
1052
+ {
1053
+ "name": "createWorkflow",
1054
+ "protocol": "REST",
1055
+ "method": "POST",
1056
+ "entitypath": "{base_path}/{version}/workflow?{query}",
1057
+ "requestSchema": "schema.json",
1058
+ "responseSchema": "schema.json",
1059
+ "timeout": 0,
1060
+ "sendEmpty": false,
1061
+ "requestDatatype": "JSON",
1062
+ "responseDatatype": "JSON",
1063
+ "headers": {},
1064
+ "responseObjects": [
1065
+ {
1066
+ "type": "default",
1067
+ "key": "",
1068
+ "mockFile": ""
1069
+ }
1070
+ ]
1071
+ },
1072
+ {
1073
+ "name": "updateWorkflow",
1074
+ "protocol": "REST",
1075
+ "method": "PUT",
1076
+ "entitypath": "{base_path}/{version}/workflow?{query}",
1077
+ "requestSchema": "schema.json",
1078
+ "responseSchema": "schema.json",
1079
+ "timeout": 0,
1080
+ "sendEmpty": false,
1081
+ "requestDatatype": "JSON",
1082
+ "responseDatatype": "JSON",
1083
+ "headers": {},
1084
+ "responseObjects": [
1085
+ {
1086
+ "type": "default",
1087
+ "key": "",
1088
+ "mockFile": ""
1089
+ }
1090
+ ]
1091
+ },
1092
+ {
1093
+ "name": "getAllWorkflowService",
1094
+ "protocol": "REST",
1095
+ "method": "GET",
1096
+ "entitypath": "{base_path}/{version}/workflow-service?{query}",
1097
+ "requestSchema": "schema.json",
1098
+ "responseSchema": "schema.json",
1099
+ "timeout": 0,
1100
+ "sendEmpty": false,
1101
+ "sendGetBody": false,
1102
+ "requestDatatype": "JSON",
1103
+ "responseDatatype": "JSON",
1104
+ "headers": {},
1105
+ "responseObjects": [
1106
+ {
1107
+ "type": "default",
1108
+ "key": "",
1109
+ "mockFile": ""
1110
+ }
1111
+ ]
1112
+ },
1113
+ {
1114
+ "name": "createWorkflowService",
1115
+ "protocol": "REST",
1116
+ "method": "POST",
1117
+ "entitypath": "{base_path}/{version}/workflow-service?{query}",
1118
+ "requestSchema": "schema.json",
1119
+ "responseSchema": "schema.json",
1120
+ "timeout": 0,
1121
+ "sendEmpty": false,
1122
+ "requestDatatype": "JSON",
1123
+ "responseDatatype": "JSON",
1124
+ "headers": {},
1125
+ "responseObjects": [
1126
+ {
1127
+ "type": "default",
1128
+ "key": "",
1129
+ "mockFile": ""
1130
+ }
1131
+ ]
1132
+ },
1133
+ {
1134
+ "name": "updateWorkflowService",
1135
+ "protocol": "REST",
1136
+ "method": "PUT",
1137
+ "entitypath": "{base_path}/{version}/workflow-service?{query}",
1138
+ "requestSchema": "schema.json",
1139
+ "responseSchema": "schema.json",
1140
+ "timeout": 0,
1141
+ "sendEmpty": false,
1142
+ "requestDatatype": "JSON",
1143
+ "responseDatatype": "JSON",
1144
+ "headers": {},
1145
+ "responseObjects": [
1146
+ {
1147
+ "type": "default",
1148
+ "key": "",
1149
+ "mockFile": ""
1150
+ }
1151
+ ]
1152
+ },
1153
+ {
1154
+ "name": "getWorkflowServiceByName",
1155
+ "protocol": "REST",
1156
+ "method": "GET",
1157
+ "entitypath": "{base_path}/{version}/workflow-service/{pathv1}?{query}",
1158
+ "requestSchema": "schema.json",
1159
+ "responseSchema": "schema.json",
1160
+ "timeout": 0,
1161
+ "sendEmpty": false,
1162
+ "sendGetBody": false,
1163
+ "requestDatatype": "JSON",
1164
+ "responseDatatype": "JSON",
1165
+ "headers": {},
1166
+ "responseObjects": [
1167
+ {
1168
+ "type": "default",
1169
+ "key": "",
1170
+ "mockFile": ""
1171
+ }
1172
+ ]
1173
+ },
1174
+ {
1175
+ "name": "deleteWorkflowServiceByName",
1176
+ "protocol": "REST",
1177
+ "method": "DELETE",
1178
+ "entitypath": "{base_path}/{version}/workflow-service/{pathv1}?{query}",
1179
+ "requestSchema": "schema.json",
1180
+ "responseSchema": "schema.json",
1181
+ "timeout": 0,
1182
+ "sendEmpty": false,
1183
+ "requestDatatype": "JSON",
1184
+ "responseDatatype": "JSON",
1185
+ "headers": {},
1186
+ "responseObjects": [
1187
+ {
1188
+ "type": "default",
1189
+ "key": "",
1190
+ "mockFile": ""
1191
+ }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "name": "updatePause",
1196
+ "protocol": "REST",
1197
+ "method": "PUT",
1198
+ "entitypath": "{base_path}/{version}/workflow/pause/{pathv1}?{query}",
1199
+ "requestSchema": "schema.json",
1200
+ "responseSchema": "schema.json",
1201
+ "timeout": 0,
1202
+ "sendEmpty": false,
1203
+ "requestDatatype": "JSON",
1204
+ "responseDatatype": "JSON",
1205
+ "headers": {},
1206
+ "responseObjects": [
1207
+ {
1208
+ "type": "default",
1209
+ "key": "",
1210
+ "mockFile": ""
1211
+ }
1212
+ ]
1213
+ },
1214
+ {
1215
+ "name": "createReportWorkflow",
1216
+ "protocol": "REST",
1217
+ "method": "POST",
1218
+ "entitypath": "{base_path}/{version}/workflow/report-workflow?{query}",
1219
+ "requestSchema": "schema.json",
1220
+ "responseSchema": "schema.json",
1221
+ "timeout": 0,
1222
+ "sendEmpty": false,
1223
+ "requestDatatype": "JSON",
1224
+ "responseDatatype": "JSON",
1225
+ "headers": {},
1226
+ "responseObjects": [
1227
+ {
1228
+ "type": "default",
1229
+ "key": "",
1230
+ "mockFile": ""
1231
+ }
1232
+ ]
1233
+ },
1234
+ {
1235
+ "name": "getAllReportWorkflowHistories",
1236
+ "protocol": "REST",
1237
+ "method": "GET",
1238
+ "entitypath": "{base_path}/{version}/workflow/report-workflow-histories?{query}",
1239
+ "requestSchema": "schema.json",
1240
+ "responseSchema": "schema.json",
1241
+ "timeout": 0,
1242
+ "sendEmpty": false,
1243
+ "sendGetBody": false,
1244
+ "requestDatatype": "JSON",
1245
+ "responseDatatype": "JSON",
1246
+ "headers": {},
1247
+ "responseObjects": [
1248
+ {
1249
+ "type": "default",
1250
+ "key": "",
1251
+ "mockFile": ""
1252
+ }
1253
+ ]
1254
+ },
1255
+ {
1256
+ "name": "getStart",
1257
+ "protocol": "REST",
1258
+ "method": "GET",
1259
+ "entitypath": "{base_path}/{version}/workflow/report-workflow/start/{pathv1}?{query}",
1260
+ "requestSchema": "schema.json",
1261
+ "responseSchema": "schema.json",
1262
+ "timeout": 0,
1263
+ "sendEmpty": false,
1264
+ "sendGetBody": false,
1265
+ "requestDatatype": "JSON",
1266
+ "responseDatatype": "JSON",
1267
+ "headers": {},
1268
+ "responseObjects": [
1269
+ {
1270
+ "type": "default",
1271
+ "key": "",
1272
+ "mockFile": ""
1273
+ }
1274
+ ]
1275
+ },
1276
+ {
1277
+ "name": "updateUpdate",
1278
+ "protocol": "REST",
1279
+ "method": "PUT",
1280
+ "entitypath": "{base_path}/{version}/workflow/report-workflow/update?{query}",
1281
+ "requestSchema": "schema.json",
1282
+ "responseSchema": "schema.json",
1283
+ "timeout": 0,
1284
+ "sendEmpty": false,
1285
+ "requestDatatype": "JSON",
1286
+ "responseDatatype": "JSON",
1287
+ "headers": {},
1288
+ "responseObjects": [
1289
+ {
1290
+ "type": "default",
1291
+ "key": "",
1292
+ "mockFile": ""
1293
+ }
1294
+ ]
1295
+ },
1296
+ {
1297
+ "name": "getWorkflowName",
1298
+ "protocol": "REST",
1299
+ "method": "GET",
1300
+ "entitypath": "{base_path}/{version}/workflow/report-workflow/workflow-name/{pathv1}?{query}",
1301
+ "requestSchema": "schema.json",
1302
+ "responseSchema": "schema.json",
1303
+ "timeout": 0,
1304
+ "sendEmpty": false,
1305
+ "sendGetBody": false,
1306
+ "requestDatatype": "JSON",
1307
+ "responseDatatype": "JSON",
1308
+ "headers": {},
1309
+ "responseObjects": [
1310
+ {
1311
+ "type": "default",
1312
+ "key": "",
1313
+ "mockFile": ""
1314
+ }
1315
+ ]
1316
+ },
1317
+ {
1318
+ "name": "getReportWorkflow",
1319
+ "protocol": "REST",
1320
+ "method": "GET",
1321
+ "entitypath": "{base_path}/{version}/workflow/report-workflow/{pathv1}?{query}",
1322
+ "requestSchema": "schema.json",
1323
+ "responseSchema": "schema.json",
1324
+ "timeout": 0,
1325
+ "sendEmpty": false,
1326
+ "sendGetBody": false,
1327
+ "requestDatatype": "JSON",
1328
+ "responseDatatype": "JSON",
1329
+ "headers": {},
1330
+ "responseObjects": [
1331
+ {
1332
+ "type": "default",
1333
+ "key": "",
1334
+ "mockFile": ""
1335
+ }
1336
+ ]
1337
+ },
1338
+ {
1339
+ "name": "deleteReport",
1340
+ "protocol": "REST",
1341
+ "method": "DELETE",
1342
+ "entitypath": "{base_path}/{version}/workflow/report/{pathv1}?{query}",
1343
+ "requestSchema": "schema.json",
1344
+ "responseSchema": "schema.json",
1345
+ "timeout": 0,
1346
+ "sendEmpty": false,
1347
+ "requestDatatype": "JSON",
1348
+ "responseDatatype": "JSON",
1349
+ "headers": {},
1350
+ "responseObjects": [
1351
+ {
1352
+ "type": "default",
1353
+ "key": "",
1354
+ "mockFile": ""
1355
+ }
1356
+ ]
1357
+ },
1358
+ {
1359
+ "name": "updateResume",
1360
+ "protocol": "REST",
1361
+ "method": "PUT",
1362
+ "entitypath": "{base_path}/{version}/workflow/resume/{pathv1}?{query}",
1363
+ "requestSchema": "schema.json",
1364
+ "responseSchema": "schema.json",
1365
+ "timeout": 0,
1366
+ "sendEmpty": false,
1367
+ "requestDatatype": "JSON",
1368
+ "responseDatatype": "JSON",
1369
+ "headers": {},
1370
+ "responseObjects": [
1371
+ {
1372
+ "type": "default",
1373
+ "key": "",
1374
+ "mockFile": ""
1375
+ }
1376
+ ]
1377
+ },
1378
+ {
1379
+ "name": "getAllWorkflowHistories",
1380
+ "protocol": "REST",
1381
+ "method": "GET",
1382
+ "entitypath": "{base_path}/{version}/workflow/workflow-histories?{query}",
1383
+ "requestSchema": "schema.json",
1384
+ "responseSchema": "schema.json",
1385
+ "timeout": 0,
1386
+ "sendEmpty": false,
1387
+ "sendGetBody": false,
1388
+ "requestDatatype": "JSON",
1389
+ "responseDatatype": "JSON",
1390
+ "headers": {},
1391
+ "responseObjects": [
1392
+ {
1393
+ "type": "default",
1394
+ "key": "",
1395
+ "mockFile": ""
1396
+ }
1397
+ ]
1398
+ },
1399
+ {
1400
+ "name": "getWorkflowHistory",
1401
+ "protocol": "REST",
1402
+ "method": "GET",
1403
+ "entitypath": "{base_path}/{version}/workflow/workflow-history/{pathv1}?{query}",
1404
+ "requestSchema": "schema.json",
1405
+ "responseSchema": "schema.json",
1406
+ "timeout": 0,
1407
+ "sendEmpty": false,
1408
+ "sendGetBody": false,
1409
+ "requestDatatype": "JSON",
1410
+ "responseDatatype": "JSON",
1411
+ "headers": {},
1412
+ "responseObjects": [
1413
+ {
1414
+ "type": "default",
1415
+ "key": "",
1416
+ "mockFile": ""
1417
+ }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "name": "getDevice",
1422
+ "protocol": "REST",
1423
+ "method": "GET",
1424
+ "entitypath": "{base_path}/{version}/workflow/workflow-history/{pathv1}/device/{pathv2}?{query}",
1425
+ "requestSchema": "schema.json",
1426
+ "responseSchema": "schema.json",
1427
+ "timeout": 0,
1428
+ "sendEmpty": false,
1429
+ "sendGetBody": false,
1430
+ "requestDatatype": "JSON",
1431
+ "responseDatatype": "JSON",
1432
+ "headers": {},
1433
+ "responseObjects": [
1434
+ {
1435
+ "type": "default",
1436
+ "key": "",
1437
+ "mockFile": ""
1438
+ }
1439
+ ]
1440
+ },
1441
+ {
1442
+ "name": "getDevices",
1443
+ "protocol": "REST",
1444
+ "method": "GET",
1445
+ "entitypath": "{base_path}/{version}/workflow/workflow-history/{pathv1}/devices?{query}",
1446
+ "requestSchema": "schema.json",
1447
+ "responseSchema": "schema.json",
1448
+ "timeout": 0,
1449
+ "sendEmpty": false,
1450
+ "sendGetBody": false,
1451
+ "requestDatatype": "JSON",
1452
+ "responseDatatype": "JSON",
1453
+ "headers": {},
1454
+ "responseObjects": [
1455
+ {
1456
+ "type": "default",
1457
+ "key": "",
1458
+ "mockFile": ""
1459
+ }
1460
+ ]
1461
+ },
1462
+ {
1463
+ "name": "getWorkflow",
1464
+ "protocol": "REST",
1465
+ "method": "GET",
1466
+ "entitypath": "{base_path}/{version}/workflow/{pathv1}?{query}",
1467
+ "requestSchema": "schema.json",
1468
+ "responseSchema": "schema.json",
1469
+ "timeout": 0,
1470
+ "sendEmpty": false,
1471
+ "sendGetBody": false,
1472
+ "requestDatatype": "JSON",
1473
+ "responseDatatype": "JSON",
1474
+ "headers": {},
1475
+ "responseObjects": [
1476
+ {
1477
+ "type": "default",
1478
+ "key": "",
1479
+ "mockFile": ""
1480
+ }
1481
+ ]
1482
+ },
1483
+ {
1484
+ "name": "deleteWorkflow",
1485
+ "protocol": "REST",
1486
+ "method": "DELETE",
1487
+ "entitypath": "{base_path}/{version}/workflow/{pathv1}?{query}",
1488
+ "requestSchema": "schema.json",
1489
+ "responseSchema": "schema.json",
1490
+ "timeout": 0,
1491
+ "sendEmpty": false,
1492
+ "requestDatatype": "JSON",
1493
+ "responseDatatype": "JSON",
1494
+ "headers": {},
1495
+ "responseObjects": [
1496
+ {
1497
+ "type": "default",
1498
+ "key": "",
1499
+ "mockFile": ""
1500
+ }
1501
+ ]
1502
+ },
1503
+ {
1504
+ "name": "updateAbort",
1505
+ "protocol": "REST",
1506
+ "method": "PUT",
1507
+ "entitypath": "{base_path}/{version}/workflow/{pathv1}/abort?{query}",
1508
+ "requestSchema": "schema.json",
1509
+ "responseSchema": "schema.json",
1510
+ "timeout": 0,
1511
+ "sendEmpty": false,
1512
+ "requestDatatype": "JSON",
1513
+ "responseDatatype": "JSON",
1514
+ "headers": {},
1515
+ "responseObjects": [
1516
+ {
1517
+ "type": "default",
1518
+ "key": "",
1519
+ "mockFile": ""
1520
+ }
1521
+ ]
1522
+ },
1523
+ {
1524
+ "name": "getRunningTasks",
1525
+ "protocol": "REST",
1526
+ "method": "GET",
1527
+ "entitypath": "{base_path}/{version}/workflow/{pathv1}/running-tasks?{query}",
1528
+ "requestSchema": "schema.json",
1529
+ "responseSchema": "schema.json",
1530
+ "timeout": 0,
1531
+ "sendEmpty": false,
1532
+ "sendGetBody": false,
1533
+ "requestDatatype": "JSON",
1534
+ "responseDatatype": "JSON",
1535
+ "headers": {},
1536
+ "responseObjects": [
1537
+ {
1538
+ "type": "default",
1539
+ "key": "",
1540
+ "mockFile": ""
1541
+ }
1542
+ ]
1543
+ },
1544
+ {
1545
+ "name": "updateSuspend",
1546
+ "protocol": "REST",
1547
+ "method": "PUT",
1548
+ "entitypath": "{base_path}/{version}/workflow/{pathv1}/suspend?{query}",
1549
+ "requestSchema": "schema.json",
1550
+ "responseSchema": "schema.json",
1551
+ "timeout": 0,
1552
+ "sendEmpty": false,
1553
+ "requestDatatype": "JSON",
1554
+ "responseDatatype": "JSON",
1555
+ "headers": {},
1556
+ "responseObjects": [
1557
+ {
1558
+ "type": "default",
1559
+ "key": "",
1560
+ "mockFile": ""
1561
+ }
1562
+ ]
1563
+ }
1564
+ ]
1565
+ }