@itentialopensource/adapter-splunk 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 (61) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +0 -0
  4. package/AUTH.md +39 -0
  5. package/BROKER.md +199 -0
  6. package/CALLS.md +170 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +172 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +641 -0
  13. package/README.md +337 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +11 -0
  16. package/TROUBLESHOOT.md +47 -0
  17. package/adapter.js +4945 -0
  18. package/adapterBase.js +1787 -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/Services/action.json +891 -0
  28. package/entities/Services/schema.json +215 -0
  29. package/error.json +190 -0
  30. package/package.json +87 -0
  31. package/pronghorn.json +2826 -0
  32. package/propertiesDecorators.json +14 -0
  33. package/propertiesSchema.json +1248 -0
  34. package/refs?service=git-upload-pack +0 -0
  35. package/report/SplunkAdapter.json +2131 -0
  36. package/report/creationReport.json +425 -0
  37. package/sampleProperties.json +195 -0
  38. package/test/integration/adapterTestBasicGet.js +83 -0
  39. package/test/integration/adapterTestConnectivity.js +93 -0
  40. package/test/integration/adapterTestIntegration.js +1465 -0
  41. package/test/unit/adapterBaseTestUnit.js +949 -0
  42. package/test/unit/adapterTestUnit.js +3595 -0
  43. package/utils/adapterInfo.js +206 -0
  44. package/utils/addAuth.js +94 -0
  45. package/utils/artifactize.js +146 -0
  46. package/utils/basicGet.js +50 -0
  47. package/utils/checkMigrate.js +63 -0
  48. package/utils/entitiesToDB.js +178 -0
  49. package/utils/findPath.js +74 -0
  50. package/utils/methodDocumentor.js +225 -0
  51. package/utils/modify.js +154 -0
  52. package/utils/packModificationScript.js +35 -0
  53. package/utils/patches2bundledDeps.js +90 -0
  54. package/utils/pre-commit.sh +32 -0
  55. package/utils/removeHooks.js +20 -0
  56. package/utils/setup.js +33 -0
  57. package/utils/tbScript.js +246 -0
  58. package/utils/tbUtils.js +490 -0
  59. package/utils/testRunner.js +298 -0
  60. package/utils/troubleshootingAdapter.js +195 -0
  61. package/workflows/README.md +3 -0
@@ -0,0 +1,891 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getDataCommandsByName",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/services/data/commands/{pathv1}?{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": "getSavedSearches",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/services/saved/searches?{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": "deleteSavedSearchesByName",
47
+ "protocol": "REST",
48
+ "method": "DELETE",
49
+ "entitypath": "{base_path}/{version}/services/admin/search/saved/searches/{pathv1}?{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": "getSavedSearchesByName",
67
+ "protocol": "REST",
68
+ "method": "GET",
69
+ "entitypath": "{base_path}/{version}/services/admin/search/saved/searches/{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": "postSavedSearches",
88
+ "protocol": "REST",
89
+ "method": "POST",
90
+ "entitypath": "{base_path}/{version}/services/admin/search/saved/searches/{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": "postSavedSearchesAcknowledge",
108
+ "protocol": "REST",
109
+ "method": "POST",
110
+ "entitypath": "{base_path}/{version}/services/admin/search/saved/searches/{pathv1}/acknowledge?{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": "postSavedSearchesDispatchByName",
128
+ "protocol": "REST",
129
+ "method": "POST",
130
+ "entitypath": "{base_path}/{version}/services/saved/searches/{pathv1}/dispatch?{query}",
131
+ "requestSchema": "schema.json",
132
+ "responseSchema": "schema.json",
133
+ "timeout": 0,
134
+ "sendEmpty": false,
135
+ "requestDatatype": "JSON",
136
+ "responseDatatype": "JSON",
137
+ "headers": {},
138
+ "responseObjects": [
139
+ {
140
+ "type": "default",
141
+ "key": "",
142
+ "mockFile": ""
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "name": "getSavedSearchesHistoryByName",
148
+ "protocol": "REST",
149
+ "method": "GET",
150
+ "entitypath": "{base_path}/{version}/services/saved/searches/{pathv1}/history?{query}",
151
+ "requestSchema": "schema.json",
152
+ "responseSchema": "schema.json",
153
+ "timeout": 0,
154
+ "sendEmpty": false,
155
+ "sendGetBody": false,
156
+ "requestDatatype": "JSON",
157
+ "responseDatatype": "JSON",
158
+ "headers": {},
159
+ "responseObjects": [
160
+ {
161
+ "type": "default",
162
+ "key": "",
163
+ "mockFile": ""
164
+ }
165
+ ]
166
+ },
167
+ {
168
+ "name": "postSavedSearchesReschedule",
169
+ "protocol": "REST",
170
+ "method": "POST",
171
+ "entitypath": "{base_path}/{version}/services/saved/searches/{pathv1}/reschedule?{query}",
172
+ "requestSchema": "schema.json",
173
+ "responseSchema": "schema.json",
174
+ "timeout": 0,
175
+ "sendEmpty": false,
176
+ "requestDatatype": "JSON",
177
+ "responseDatatype": "JSON",
178
+ "headers": {},
179
+ "responseObjects": [
180
+ {
181
+ "type": "default",
182
+ "key": "",
183
+ "mockFile": ""
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "name": "getSavedSearchesScheduledItemsByName",
189
+ "protocol": "REST",
190
+ "method": "GET",
191
+ "entitypath": "{base_path}/{version}/services/saved/searches/{pathv1}/scheduled_times?{query}",
192
+ "requestSchema": "schema.json",
193
+ "responseSchema": "schema.json",
194
+ "timeout": 0,
195
+ "sendEmpty": false,
196
+ "sendGetBody": false,
197
+ "requestDatatype": "JSON",
198
+ "responseDatatype": "JSON",
199
+ "headers": {},
200
+ "responseObjects": [
201
+ {
202
+ "type": "default",
203
+ "key": "",
204
+ "mockFile": ""
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "name": "getSavedSearchesSupresssByName",
210
+ "protocol": "REST",
211
+ "method": "GET",
212
+ "entitypath": "{base_path}/{version}/services/saved/searches/{pathv1}/suppress?{query}",
213
+ "requestSchema": "schema.json",
214
+ "responseSchema": "schema.json",
215
+ "timeout": 0,
216
+ "sendEmpty": false,
217
+ "sendGetBody": false,
218
+ "requestDatatype": "JSON",
219
+ "responseDatatype": "JSON",
220
+ "headers": {},
221
+ "responseObjects": [
222
+ {
223
+ "type": "default",
224
+ "key": "",
225
+ "mockFile": ""
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "getScheduledViews",
231
+ "protocol": "REST",
232
+ "method": "GET",
233
+ "entitypath": "{base_path}/{version}/services/scheduled/views?{query}",
234
+ "requestSchema": "schema.json",
235
+ "responseSchema": "schema.json",
236
+ "timeout": 0,
237
+ "sendEmpty": false,
238
+ "sendGetBody": 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": "deleteScheduledViewByName",
252
+ "protocol": "REST",
253
+ "method": "DELETE",
254
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}?{query}",
255
+ "requestSchema": "schema.json",
256
+ "responseSchema": "schema.json",
257
+ "timeout": 0,
258
+ "sendEmpty": false,
259
+ "requestDatatype": "JSON",
260
+ "responseDatatype": "JSON",
261
+ "headers": {},
262
+ "responseObjects": [
263
+ {
264
+ "type": "default",
265
+ "key": "",
266
+ "mockFile": ""
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "name": "getScheduledViewByName",
272
+ "protocol": "REST",
273
+ "method": "GET",
274
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}?{query}",
275
+ "requestSchema": "schema.json",
276
+ "responseSchema": "schema.json",
277
+ "timeout": 0,
278
+ "sendEmpty": false,
279
+ "sendGetBody": false,
280
+ "requestDatatype": "JSON",
281
+ "responseDatatype": "JSON",
282
+ "headers": {},
283
+ "responseObjects": [
284
+ {
285
+ "type": "default",
286
+ "key": "",
287
+ "mockFile": ""
288
+ }
289
+ ]
290
+ },
291
+ {
292
+ "name": "postScheduledViewByName",
293
+ "protocol": "REST",
294
+ "method": "POST",
295
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}?{query}",
296
+ "requestSchema": "schema.json",
297
+ "responseSchema": "schema.json",
298
+ "timeout": 0,
299
+ "sendEmpty": false,
300
+ "requestDatatype": "JSON",
301
+ "responseDatatype": "JSON",
302
+ "headers": {},
303
+ "responseObjects": [
304
+ {
305
+ "type": "default",
306
+ "key": "",
307
+ "mockFile": ""
308
+ }
309
+ ]
310
+ },
311
+ {
312
+ "name": "postScheduledViewDispatch",
313
+ "protocol": "REST",
314
+ "method": "POST",
315
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}/dispatch?{query}",
316
+ "requestSchema": "schema.json",
317
+ "responseSchema": "schema.json",
318
+ "timeout": 0,
319
+ "sendEmpty": false,
320
+ "requestDatatype": "JSON",
321
+ "responseDatatype": "JSON",
322
+ "headers": {},
323
+ "responseObjects": [
324
+ {
325
+ "type": "default",
326
+ "key": "",
327
+ "mockFile": ""
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "getScheduledViewHistory",
333
+ "protocol": "REST",
334
+ "method": "GET",
335
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}/history?{query}",
336
+ "requestSchema": "schema.json",
337
+ "responseSchema": "schema.json",
338
+ "timeout": 0,
339
+ "sendEmpty": false,
340
+ "sendGetBody": false,
341
+ "requestDatatype": "JSON",
342
+ "responseDatatype": "JSON",
343
+ "headers": {},
344
+ "responseObjects": [
345
+ {
346
+ "type": "default",
347
+ "key": "",
348
+ "mockFile": ""
349
+ }
350
+ ]
351
+ },
352
+ {
353
+ "name": "postScheduledViewHistory",
354
+ "protocol": "REST",
355
+ "method": "POST",
356
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}/reschedule?{query}",
357
+ "requestSchema": "schema.json",
358
+ "responseSchema": "schema.json",
359
+ "timeout": 0,
360
+ "sendEmpty": false,
361
+ "requestDatatype": "JSON",
362
+ "responseDatatype": "JSON",
363
+ "headers": {},
364
+ "responseObjects": [
365
+ {
366
+ "type": "default",
367
+ "key": "",
368
+ "mockFile": ""
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "name": "getScheduledViewScheduledTimes",
374
+ "protocol": "REST",
375
+ "method": "GET",
376
+ "entitypath": "{base_path}/{version}/services/scheduled/views/{pathv1}/scheduled_times?{query}",
377
+ "requestSchema": "schema.json",
378
+ "responseSchema": "schema.json",
379
+ "timeout": 0,
380
+ "sendEmpty": false,
381
+ "sendGetBody": false,
382
+ "requestDatatype": "JSON",
383
+ "responseDatatype": "JSON",
384
+ "headers": {},
385
+ "responseObjects": [
386
+ {
387
+ "type": "default",
388
+ "key": "",
389
+ "mockFile": ""
390
+ }
391
+ ]
392
+ },
393
+ {
394
+ "name": "getSearchJobs",
395
+ "protocol": "REST",
396
+ "method": "GET",
397
+ "entitypath": "{base_path}/{version}/services/search/jobs?{query}",
398
+ "requestSchema": "schema.json",
399
+ "responseSchema": "schema.json",
400
+ "timeout": 0,
401
+ "sendEmpty": false,
402
+ "sendGetBody": false,
403
+ "requestDatatype": "JSON",
404
+ "responseDatatype": "JSON",
405
+ "headers": {},
406
+ "responseObjects": [
407
+ {
408
+ "type": "default",
409
+ "key": "",
410
+ "mockFile": ""
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "name": "postSearchJobs",
416
+ "protocol": "REST",
417
+ "method": "POST",
418
+ "entitypath": "{base_path}/{version}/services/search/jobs?{query}",
419
+ "requestSchema": "schema.json",
420
+ "responseSchema": "schema.json",
421
+ "timeout": 0,
422
+ "sendEmpty": false,
423
+ "requestDatatype": "JSON",
424
+ "responseDatatype": "JSON",
425
+ "headers": {},
426
+ "responseObjects": [
427
+ {
428
+ "type": "default",
429
+ "key": "",
430
+ "mockFile": ""
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "name": "getSearchJobsExport",
436
+ "protocol": "REST",
437
+ "method": "GET",
438
+ "entitypath": "{base_path}/{version}/services/search/jobs/export?{query}",
439
+ "requestSchema": "schema.json",
440
+ "responseSchema": "schema.json",
441
+ "timeout": 0,
442
+ "sendEmpty": false,
443
+ "sendGetBody": false,
444
+ "requestDatatype": "JSON",
445
+ "responseDatatype": "JSON",
446
+ "headers": {},
447
+ "responseObjects": [
448
+ {
449
+ "type": "default",
450
+ "key": "",
451
+ "mockFile": ""
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "name": "postSearchJobsExport",
457
+ "protocol": "REST",
458
+ "method": "POST",
459
+ "entitypath": "{base_path}/{version}/services/search/jobs/export?{query}",
460
+ "requestSchema": "schema.json",
461
+ "responseSchema": "schema.json",
462
+ "timeout": 0,
463
+ "sendEmpty": false,
464
+ "requestDatatype": "JSON",
465
+ "responseDatatype": "JSON",
466
+ "headers": {},
467
+ "responseObjects": [
468
+ {
469
+ "type": "default",
470
+ "key": "",
471
+ "mockFile": ""
472
+ }
473
+ ]
474
+ },
475
+ {
476
+ "name": "deleteSearchJobsById",
477
+ "protocol": "REST",
478
+ "method": "DELETE",
479
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}?{query}",
480
+ "requestSchema": "schema.json",
481
+ "responseSchema": "schema.json",
482
+ "timeout": 0,
483
+ "sendEmpty": false,
484
+ "requestDatatype": "JSON",
485
+ "responseDatatype": "JSON",
486
+ "headers": {},
487
+ "responseObjects": [
488
+ {
489
+ "type": "default",
490
+ "key": "",
491
+ "mockFile": ""
492
+ }
493
+ ]
494
+ },
495
+ {
496
+ "name": "getSearchJobsById",
497
+ "protocol": "REST",
498
+ "method": "GET",
499
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}?{query}",
500
+ "requestSchema": "schema.json",
501
+ "responseSchema": "schema.json",
502
+ "timeout": 0,
503
+ "sendEmpty": false,
504
+ "sendGetBody": false,
505
+ "requestDatatype": "JSON",
506
+ "responseDatatype": "JSON",
507
+ "headers": {},
508
+ "responseObjects": [
509
+ {
510
+ "type": "default",
511
+ "key": "",
512
+ "mockFile": ""
513
+ }
514
+ ]
515
+ },
516
+ {
517
+ "name": "postSearchJobsById",
518
+ "protocol": "REST",
519
+ "method": "POST",
520
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}?{query}",
521
+ "requestSchema": "schema.json",
522
+ "responseSchema": "schema.json",
523
+ "timeout": 0,
524
+ "sendEmpty": false,
525
+ "requestDatatype": "JSON",
526
+ "responseDatatype": "JSON",
527
+ "headers": {},
528
+ "responseObjects": [
529
+ {
530
+ "type": "default",
531
+ "key": "",
532
+ "mockFile": ""
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "name": "postSearchJobsByIdControl",
538
+ "protocol": "REST",
539
+ "method": "POST",
540
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/control?{query}",
541
+ "requestSchema": "schema.json",
542
+ "responseSchema": "schema.json",
543
+ "timeout": 0,
544
+ "sendEmpty": false,
545
+ "requestDatatype": "JSON",
546
+ "responseDatatype": "JSON",
547
+ "headers": {},
548
+ "responseObjects": [
549
+ {
550
+ "type": "default",
551
+ "key": "",
552
+ "mockFile": ""
553
+ }
554
+ ]
555
+ },
556
+ {
557
+ "name": "getSearchJobsByIdEvents",
558
+ "protocol": "REST",
559
+ "method": "GET",
560
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/events?{query}",
561
+ "requestSchema": "schema.json",
562
+ "responseSchema": "schema.json",
563
+ "timeout": 0,
564
+ "sendEmpty": false,
565
+ "sendGetBody": false,
566
+ "requestDatatype": "JSON",
567
+ "responseDatatype": "JSON",
568
+ "headers": {},
569
+ "responseObjects": [
570
+ {
571
+ "type": "default",
572
+ "key": "",
573
+ "mockFile": ""
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "name": "getSearchJobsByIdResults",
579
+ "protocol": "REST",
580
+ "method": "GET",
581
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/results?{query}",
582
+ "requestSchema": "schema.json",
583
+ "responseSchema": "schema.json",
584
+ "timeout": 0,
585
+ "sendEmpty": false,
586
+ "sendGetBody": false,
587
+ "requestDatatype": "JSON",
588
+ "responseDatatype": "JSON",
589
+ "headers": {},
590
+ "responseObjects": [
591
+ {
592
+ "type": "default",
593
+ "key": "",
594
+ "mockFile": ""
595
+ }
596
+ ]
597
+ },
598
+ {
599
+ "name": "getSearchJobsByIdResultsPreview",
600
+ "protocol": "REST",
601
+ "method": "GET",
602
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/results_preview?{query}",
603
+ "requestSchema": "schema.json",
604
+ "responseSchema": "schema.json",
605
+ "timeout": 0,
606
+ "sendEmpty": false,
607
+ "sendGetBody": false,
608
+ "requestDatatype": "JSON",
609
+ "responseDatatype": "JSON",
610
+ "headers": {},
611
+ "responseObjects": [
612
+ {
613
+ "type": "default",
614
+ "key": "",
615
+ "mockFile": ""
616
+ }
617
+ ]
618
+ },
619
+ {
620
+ "name": "getSearchJobsSearchLogs",
621
+ "protocol": "REST",
622
+ "method": "GET",
623
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/search.log?{query}",
624
+ "requestSchema": "schema.json",
625
+ "responseSchema": "schema.json",
626
+ "timeout": 0,
627
+ "sendEmpty": false,
628
+ "sendGetBody": false,
629
+ "requestDatatype": "JSON",
630
+ "responseDatatype": "JSON",
631
+ "headers": {},
632
+ "responseObjects": [
633
+ {
634
+ "type": "default",
635
+ "key": "",
636
+ "mockFile": ""
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "name": "getSearchJobsbyIdSummary",
642
+ "protocol": "REST",
643
+ "method": "GET",
644
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/summary?{query}",
645
+ "requestSchema": "schema.json",
646
+ "responseSchema": "schema.json",
647
+ "timeout": 0,
648
+ "sendEmpty": false,
649
+ "sendGetBody": false,
650
+ "requestDatatype": "JSON",
651
+ "responseDatatype": "JSON",
652
+ "headers": {},
653
+ "responseObjects": [
654
+ {
655
+ "type": "default",
656
+ "key": "",
657
+ "mockFile": ""
658
+ }
659
+ ]
660
+ },
661
+ {
662
+ "name": "getSearchJobsByIdTimeline",
663
+ "protocol": "REST",
664
+ "method": "GET",
665
+ "entitypath": "{base_path}/{version}/services/search/jobs/{pathv1}/timeline?{query}",
666
+ "requestSchema": "schema.json",
667
+ "responseSchema": "schema.json",
668
+ "timeout": 0,
669
+ "sendEmpty": false,
670
+ "sendGetBody": false,
671
+ "requestDatatype": "JSON",
672
+ "responseDatatype": "JSON",
673
+ "headers": {},
674
+ "responseObjects": [
675
+ {
676
+ "type": "default",
677
+ "key": "",
678
+ "mockFile": ""
679
+ }
680
+ ]
681
+ },
682
+ {
683
+ "name": "getSearchParser",
684
+ "protocol": "REST",
685
+ "method": "GET",
686
+ "entitypath": "{base_path}/{version}/services/search/parser?{query}",
687
+ "requestSchema": "schema.json",
688
+ "responseSchema": "schema.json",
689
+ "timeout": 0,
690
+ "sendEmpty": false,
691
+ "sendGetBody": 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": "getSearchScheduler",
705
+ "protocol": "REST",
706
+ "method": "GET",
707
+ "entitypath": "{base_path}/{version}/services/search/scheduler?{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": "postSearchSchedulerStatus",
726
+ "protocol": "REST",
727
+ "method": "POST",
728
+ "entitypath": "{base_path}/{version}/services/search/scheduler/status?{query}",
729
+ "requestSchema": "schema.json",
730
+ "responseSchema": "schema.json",
731
+ "timeout": 0,
732
+ "sendEmpty": false,
733
+ "requestDatatype": "JSON",
734
+ "responseDatatype": "JSON",
735
+ "headers": {},
736
+ "responseObjects": [
737
+ {
738
+ "type": "default",
739
+ "key": "",
740
+ "mockFile": ""
741
+ }
742
+ ]
743
+ },
744
+ {
745
+ "name": "getSearchTimerParser",
746
+ "protocol": "REST",
747
+ "method": "GET",
748
+ "entitypath": "{base_path}/{version}/services/search/timeparse?{query}",
749
+ "requestSchema": "schema.json",
750
+ "responseSchema": "schema.json",
751
+ "timeout": 0,
752
+ "sendEmpty": false,
753
+ "sendGetBody": 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": "getSearchTypeHead",
767
+ "protocol": "REST",
768
+ "method": "GET",
769
+ "entitypath": "{base_path}/{version}/services/search/typeahead?{query}",
770
+ "requestSchema": "schema.json",
771
+ "responseSchema": "schema.json",
772
+ "timeout": 0,
773
+ "sendEmpty": false,
774
+ "sendGetBody": false,
775
+ "requestDatatype": "JSON",
776
+ "responseDatatype": "JSON",
777
+ "headers": {},
778
+ "responseObjects": [
779
+ {
780
+ "type": "default",
781
+ "key": "",
782
+ "mockFile": ""
783
+ }
784
+ ]
785
+ },
786
+ {
787
+ "name": "getAlertActions",
788
+ "protocol": "REST",
789
+ "method": "GET",
790
+ "entitypath": "{base_path}/{version}/services/admin/-/alerts/alert_actions?{query}",
791
+ "requestSchema": "schema.json",
792
+ "responseSchema": "schema.json",
793
+ "timeout": 0,
794
+ "sendEmpty": false,
795
+ "sendGetBody": false,
796
+ "requestDatatype": "JSON",
797
+ "responseDatatype": "JSON",
798
+ "headers": {},
799
+ "responseObjects": [
800
+ {
801
+ "type": "default",
802
+ "key": "",
803
+ "mockFile": ""
804
+ }
805
+ ]
806
+ },
807
+ {
808
+ "name": "getFiredAlerts",
809
+ "protocol": "REST",
810
+ "method": "GET",
811
+ "entitypath": "{base_path}/{version}/services/admin/search/alerts/fired_alerts?{query}",
812
+ "requestSchema": "schema.json",
813
+ "responseSchema": "schema.json",
814
+ "timeout": 0,
815
+ "sendEmpty": false,
816
+ "sendGetBody": false,
817
+ "requestDatatype": "JSON",
818
+ "responseDatatype": "JSON",
819
+ "headers": {},
820
+ "responseObjects": [
821
+ {
822
+ "type": "default",
823
+ "key": "",
824
+ "mockFile": ""
825
+ }
826
+ ]
827
+ },
828
+ {
829
+ "name": "getFiredAlertsbyName",
830
+ "protocol": "REST",
831
+ "method": "GET",
832
+ "entitypath": "{base_path}/{version}/services/admin/search/alerts/fired_alerts/{pathv1}?{query}",
833
+ "requestSchema": "schema.json",
834
+ "responseSchema": "schema.json",
835
+ "timeout": 0,
836
+ "sendEmpty": false,
837
+ "sendGetBody": false,
838
+ "requestDatatype": "JSON",
839
+ "responseDatatype": "JSON",
840
+ "headers": {},
841
+ "responseObjects": [
842
+ {
843
+ "type": "default",
844
+ "key": "",
845
+ "mockFile": ""
846
+ }
847
+ ]
848
+ },
849
+ {
850
+ "name": "deleteFiredAlertsByName",
851
+ "protocol": "REST",
852
+ "method": "DELETE",
853
+ "entitypath": "{base_path}/{version}/services/admin/search/alerts/fired_alerts/{pathv1}?{query}",
854
+ "requestSchema": "schema.json",
855
+ "responseSchema": "schema.json",
856
+ "timeout": 0,
857
+ "sendEmpty": false,
858
+ "requestDatatype": "JSON",
859
+ "responseDatatype": "JSON",
860
+ "headers": {},
861
+ "responseObjects": [
862
+ {
863
+ "type": "default",
864
+ "key": "",
865
+ "mockFile": ""
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "name": "getDataCommands",
871
+ "protocol": "REST",
872
+ "method": "GET",
873
+ "entitypath": "{base_path}/{version}/services/nobody/search/data/commands?{query}",
874
+ "requestSchema": "schema.json",
875
+ "responseSchema": "schema.json",
876
+ "timeout": 0,
877
+ "sendEmpty": false,
878
+ "sendGetBody": false,
879
+ "requestDatatype": "JSON",
880
+ "responseDatatype": "JSON",
881
+ "headers": {},
882
+ "responseObjects": [
883
+ {
884
+ "type": "default",
885
+ "key": "",
886
+ "mockFile": ""
887
+ }
888
+ ]
889
+ }
890
+ ]
891
+ }