-
Notifications
You must be signed in to change notification settings - Fork 627
/
Copy pathapi._.go
executable file
·2113 lines (2043 loc) · 122 KB
/
api._.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// Code generated from the elasticsearch-specification DO NOT EDIT.
// https://github.com/elastic/elasticsearch-specification/tree/1ad7fe36297b3a8e187b2259dedaf68a47bc236e
package typedapi
import (
"github.com/elastic/elastic-transport-go/v8/elastictransport"
async_search_delete "github.com/elastic/go-elasticsearch/v8/typedapi/asyncsearch/delete"
async_search_get "github.com/elastic/go-elasticsearch/v8/typedapi/asyncsearch/get"
async_search_status "github.com/elastic/go-elasticsearch/v8/typedapi/asyncsearch/status"
async_search_submit "github.com/elastic/go-elasticsearch/v8/typedapi/asyncsearch/submit"
autoscaling_delete_autoscaling_policy "github.com/elastic/go-elasticsearch/v8/typedapi/autoscaling/deleteautoscalingpolicy"
autoscaling_get_autoscaling_capacity "github.com/elastic/go-elasticsearch/v8/typedapi/autoscaling/getautoscalingcapacity"
autoscaling_get_autoscaling_policy "github.com/elastic/go-elasticsearch/v8/typedapi/autoscaling/getautoscalingpolicy"
autoscaling_put_autoscaling_policy "github.com/elastic/go-elasticsearch/v8/typedapi/autoscaling/putautoscalingpolicy"
cat_aliases "github.com/elastic/go-elasticsearch/v8/typedapi/cat/aliases"
cat_allocation "github.com/elastic/go-elasticsearch/v8/typedapi/cat/allocation"
cat_component_templates "github.com/elastic/go-elasticsearch/v8/typedapi/cat/componenttemplates"
cat_count "github.com/elastic/go-elasticsearch/v8/typedapi/cat/count"
cat_fielddata "github.com/elastic/go-elasticsearch/v8/typedapi/cat/fielddata"
cat_health "github.com/elastic/go-elasticsearch/v8/typedapi/cat/health"
cat_help "github.com/elastic/go-elasticsearch/v8/typedapi/cat/help"
cat_indices "github.com/elastic/go-elasticsearch/v8/typedapi/cat/indices"
cat_master "github.com/elastic/go-elasticsearch/v8/typedapi/cat/master"
cat_ml_datafeeds "github.com/elastic/go-elasticsearch/v8/typedapi/cat/mldatafeeds"
cat_ml_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/cat/mldataframeanalytics"
cat_ml_jobs "github.com/elastic/go-elasticsearch/v8/typedapi/cat/mljobs"
cat_ml_trained_models "github.com/elastic/go-elasticsearch/v8/typedapi/cat/mltrainedmodels"
cat_nodeattrs "github.com/elastic/go-elasticsearch/v8/typedapi/cat/nodeattrs"
cat_nodes "github.com/elastic/go-elasticsearch/v8/typedapi/cat/nodes"
cat_pending_tasks "github.com/elastic/go-elasticsearch/v8/typedapi/cat/pendingtasks"
cat_plugins "github.com/elastic/go-elasticsearch/v8/typedapi/cat/plugins"
cat_recovery "github.com/elastic/go-elasticsearch/v8/typedapi/cat/recovery"
cat_repositories "github.com/elastic/go-elasticsearch/v8/typedapi/cat/repositories"
cat_segments "github.com/elastic/go-elasticsearch/v8/typedapi/cat/segments"
cat_shards "github.com/elastic/go-elasticsearch/v8/typedapi/cat/shards"
cat_snapshots "github.com/elastic/go-elasticsearch/v8/typedapi/cat/snapshots"
cat_tasks "github.com/elastic/go-elasticsearch/v8/typedapi/cat/tasks"
cat_templates "github.com/elastic/go-elasticsearch/v8/typedapi/cat/templates"
cat_thread_pool "github.com/elastic/go-elasticsearch/v8/typedapi/cat/threadpool"
cat_transforms "github.com/elastic/go-elasticsearch/v8/typedapi/cat/transforms"
ccr_delete_auto_follow_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/deleteautofollowpattern"
ccr_follow "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/follow"
ccr_follow_info "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/followinfo"
ccr_follow_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/followstats"
ccr_forget_follower "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/forgetfollower"
ccr_get_auto_follow_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/getautofollowpattern"
ccr_pause_auto_follow_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/pauseautofollowpattern"
ccr_pause_follow "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/pausefollow"
ccr_put_auto_follow_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/putautofollowpattern"
ccr_resume_auto_follow_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/resumeautofollowpattern"
ccr_resume_follow "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/resumefollow"
ccr_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/stats"
ccr_unfollow "github.com/elastic/go-elasticsearch/v8/typedapi/ccr/unfollow"
cluster_allocation_explain "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/allocationexplain"
cluster_delete_component_template "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/deletecomponenttemplate"
cluster_delete_voting_config_exclusions "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/deletevotingconfigexclusions"
cluster_exists_component_template "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/existscomponenttemplate"
cluster_get_component_template "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/getcomponenttemplate"
cluster_get_settings "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/getsettings"
cluster_health "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/health"
cluster_pending_tasks "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/pendingtasks"
cluster_post_voting_config_exclusions "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/postvotingconfigexclusions"
cluster_put_component_template "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/putcomponenttemplate"
cluster_put_settings "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/putsettings"
cluster_remote_info "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/remoteinfo"
cluster_reroute "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/reroute"
cluster_state "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/state"
cluster_stats "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/stats"
core_clear_scroll "github.com/elastic/go-elasticsearch/v8/typedapi/core/clearscroll"
core_close_point_in_time "github.com/elastic/go-elasticsearch/v8/typedapi/core/closepointintime"
core_count "github.com/elastic/go-elasticsearch/v8/typedapi/core/count"
core_create "github.com/elastic/go-elasticsearch/v8/typedapi/core/create"
core_delete "github.com/elastic/go-elasticsearch/v8/typedapi/core/delete"
core_delete_by_query "github.com/elastic/go-elasticsearch/v8/typedapi/core/deletebyquery"
core_delete_by_query_rethrottle "github.com/elastic/go-elasticsearch/v8/typedapi/core/deletebyqueryrethrottle"
core_delete_script "github.com/elastic/go-elasticsearch/v8/typedapi/core/deletescript"
core_exists "github.com/elastic/go-elasticsearch/v8/typedapi/core/exists"
core_exists_source "github.com/elastic/go-elasticsearch/v8/typedapi/core/existssource"
core_explain "github.com/elastic/go-elasticsearch/v8/typedapi/core/explain"
core_field_caps "github.com/elastic/go-elasticsearch/v8/typedapi/core/fieldcaps"
core_get "github.com/elastic/go-elasticsearch/v8/typedapi/core/get"
core_get_script "github.com/elastic/go-elasticsearch/v8/typedapi/core/getscript"
core_get_script_context "github.com/elastic/go-elasticsearch/v8/typedapi/core/getscriptcontext"
core_get_script_languages "github.com/elastic/go-elasticsearch/v8/typedapi/core/getscriptlanguages"
core_get_source "github.com/elastic/go-elasticsearch/v8/typedapi/core/getsource"
core_index "github.com/elastic/go-elasticsearch/v8/typedapi/core/index"
core_info "github.com/elastic/go-elasticsearch/v8/typedapi/core/info"
core_knn_search "github.com/elastic/go-elasticsearch/v8/typedapi/core/knnsearch"
core_mget "github.com/elastic/go-elasticsearch/v8/typedapi/core/mget"
core_mtermvectors "github.com/elastic/go-elasticsearch/v8/typedapi/core/mtermvectors"
core_open_point_in_time "github.com/elastic/go-elasticsearch/v8/typedapi/core/openpointintime"
core_ping "github.com/elastic/go-elasticsearch/v8/typedapi/core/ping"
core_put_script "github.com/elastic/go-elasticsearch/v8/typedapi/core/putscript"
core_rank_eval "github.com/elastic/go-elasticsearch/v8/typedapi/core/rankeval"
core_reindex "github.com/elastic/go-elasticsearch/v8/typedapi/core/reindex"
core_reindex_rethrottle "github.com/elastic/go-elasticsearch/v8/typedapi/core/reindexrethrottle"
core_render_search_template "github.com/elastic/go-elasticsearch/v8/typedapi/core/rendersearchtemplate"
core_scripts_painless_execute "github.com/elastic/go-elasticsearch/v8/typedapi/core/scriptspainlessexecute"
core_scroll "github.com/elastic/go-elasticsearch/v8/typedapi/core/scroll"
core_search "github.com/elastic/go-elasticsearch/v8/typedapi/core/search"
core_search_mvt "github.com/elastic/go-elasticsearch/v8/typedapi/core/searchmvt"
core_search_shards "github.com/elastic/go-elasticsearch/v8/typedapi/core/searchshards"
core_search_template "github.com/elastic/go-elasticsearch/v8/typedapi/core/searchtemplate"
core_terms_enum "github.com/elastic/go-elasticsearch/v8/typedapi/core/termsenum"
core_termvectors "github.com/elastic/go-elasticsearch/v8/typedapi/core/termvectors"
core_update "github.com/elastic/go-elasticsearch/v8/typedapi/core/update"
core_update_by_query "github.com/elastic/go-elasticsearch/v8/typedapi/core/updatebyquery"
core_update_by_query_rethrottle "github.com/elastic/go-elasticsearch/v8/typedapi/core/updatebyqueryrethrottle"
dangling_indices_delete_dangling_index "github.com/elastic/go-elasticsearch/v8/typedapi/danglingindices/deletedanglingindex"
dangling_indices_import_dangling_index "github.com/elastic/go-elasticsearch/v8/typedapi/danglingindices/importdanglingindex"
dangling_indices_list_dangling_indices "github.com/elastic/go-elasticsearch/v8/typedapi/danglingindices/listdanglingindices"
enrich_delete_policy "github.com/elastic/go-elasticsearch/v8/typedapi/enrich/deletepolicy"
enrich_execute_policy "github.com/elastic/go-elasticsearch/v8/typedapi/enrich/executepolicy"
enrich_get_policy "github.com/elastic/go-elasticsearch/v8/typedapi/enrich/getpolicy"
enrich_put_policy "github.com/elastic/go-elasticsearch/v8/typedapi/enrich/putpolicy"
enrich_stats "github.com/elastic/go-elasticsearch/v8/typedapi/enrich/stats"
eql_delete "github.com/elastic/go-elasticsearch/v8/typedapi/eql/delete"
eql_get "github.com/elastic/go-elasticsearch/v8/typedapi/eql/get"
eql_get_status "github.com/elastic/go-elasticsearch/v8/typedapi/eql/getstatus"
eql_search "github.com/elastic/go-elasticsearch/v8/typedapi/eql/search"
features_get_features "github.com/elastic/go-elasticsearch/v8/typedapi/features/getfeatures"
features_reset_features "github.com/elastic/go-elasticsearch/v8/typedapi/features/resetfeatures"
fleet_global_checkpoints "github.com/elastic/go-elasticsearch/v8/typedapi/fleet/globalcheckpoints"
fleet_search "github.com/elastic/go-elasticsearch/v8/typedapi/fleet/search"
graph_explore "github.com/elastic/go-elasticsearch/v8/typedapi/graph/explore"
ilm_delete_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/deletelifecycle"
ilm_explain_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/explainlifecycle"
ilm_get_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/getlifecycle"
ilm_get_status "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/getstatus"
ilm_migrate_to_data_tiers "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/migratetodatatiers"
ilm_move_to_step "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/movetostep"
ilm_put_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/putlifecycle"
ilm_remove_policy "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/removepolicy"
ilm_retry "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/retry"
ilm_start "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/start"
ilm_stop "github.com/elastic/go-elasticsearch/v8/typedapi/ilm/stop"
indices_add_block "github.com/elastic/go-elasticsearch/v8/typedapi/indices/addblock"
indices_analyze "github.com/elastic/go-elasticsearch/v8/typedapi/indices/analyze"
indices_clear_cache "github.com/elastic/go-elasticsearch/v8/typedapi/indices/clearcache"
indices_clone "github.com/elastic/go-elasticsearch/v8/typedapi/indices/clone"
indices_close "github.com/elastic/go-elasticsearch/v8/typedapi/indices/close"
indices_create "github.com/elastic/go-elasticsearch/v8/typedapi/indices/create"
indices_create_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/createdatastream"
indices_data_streams_stats "github.com/elastic/go-elasticsearch/v8/typedapi/indices/datastreamsstats"
indices_delete "github.com/elastic/go-elasticsearch/v8/typedapi/indices/delete"
indices_delete_alias "github.com/elastic/go-elasticsearch/v8/typedapi/indices/deletealias"
indices_delete_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/deletedatastream"
indices_delete_index_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/deleteindextemplate"
indices_delete_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/deletetemplate"
indices_disk_usage "github.com/elastic/go-elasticsearch/v8/typedapi/indices/diskusage"
indices_downsample "github.com/elastic/go-elasticsearch/v8/typedapi/indices/downsample"
indices_exists "github.com/elastic/go-elasticsearch/v8/typedapi/indices/exists"
indices_exists_alias "github.com/elastic/go-elasticsearch/v8/typedapi/indices/existsalias"
indices_exists_index_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/existsindextemplate"
indices_exists_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/existstemplate"
indices_field_usage_stats "github.com/elastic/go-elasticsearch/v8/typedapi/indices/fieldusagestats"
indices_flush "github.com/elastic/go-elasticsearch/v8/typedapi/indices/flush"
indices_forcemerge "github.com/elastic/go-elasticsearch/v8/typedapi/indices/forcemerge"
indices_get "github.com/elastic/go-elasticsearch/v8/typedapi/indices/get"
indices_get_alias "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getalias"
indices_get_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getdatastream"
indices_get_field_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getfieldmapping"
indices_get_index_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getindextemplate"
indices_get_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getmapping"
indices_get_settings "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getsettings"
indices_get_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/gettemplate"
indices_migrate_to_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/migratetodatastream"
indices_modify_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/modifydatastream"
indices_open "github.com/elastic/go-elasticsearch/v8/typedapi/indices/open"
indices_promote_data_stream "github.com/elastic/go-elasticsearch/v8/typedapi/indices/promotedatastream"
indices_put_alias "github.com/elastic/go-elasticsearch/v8/typedapi/indices/putalias"
indices_put_index_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/putindextemplate"
indices_put_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/indices/putmapping"
indices_put_settings "github.com/elastic/go-elasticsearch/v8/typedapi/indices/putsettings"
indices_put_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/puttemplate"
indices_recovery "github.com/elastic/go-elasticsearch/v8/typedapi/indices/recovery"
indices_refresh "github.com/elastic/go-elasticsearch/v8/typedapi/indices/refresh"
indices_reload_search_analyzers "github.com/elastic/go-elasticsearch/v8/typedapi/indices/reloadsearchanalyzers"
indices_resolve_index "github.com/elastic/go-elasticsearch/v8/typedapi/indices/resolveindex"
indices_rollover "github.com/elastic/go-elasticsearch/v8/typedapi/indices/rollover"
indices_segments "github.com/elastic/go-elasticsearch/v8/typedapi/indices/segments"
indices_shard_stores "github.com/elastic/go-elasticsearch/v8/typedapi/indices/shardstores"
indices_shrink "github.com/elastic/go-elasticsearch/v8/typedapi/indices/shrink"
indices_simulate_index_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/simulateindextemplate"
indices_simulate_template "github.com/elastic/go-elasticsearch/v8/typedapi/indices/simulatetemplate"
indices_split "github.com/elastic/go-elasticsearch/v8/typedapi/indices/split"
indices_stats "github.com/elastic/go-elasticsearch/v8/typedapi/indices/stats"
indices_unfreeze "github.com/elastic/go-elasticsearch/v8/typedapi/indices/unfreeze"
indices_update_aliases "github.com/elastic/go-elasticsearch/v8/typedapi/indices/updatealiases"
indices_validate_query "github.com/elastic/go-elasticsearch/v8/typedapi/indices/validatequery"
ingest_delete_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/deletepipeline"
ingest_geo_ip_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/geoipstats"
ingest_get_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/getpipeline"
ingest_processor_grok "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/processorgrok"
ingest_put_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/putpipeline"
ingest_simulate "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/simulate"
license_delete "github.com/elastic/go-elasticsearch/v8/typedapi/license/delete"
license_get "github.com/elastic/go-elasticsearch/v8/typedapi/license/get"
license_get_basic_status "github.com/elastic/go-elasticsearch/v8/typedapi/license/getbasicstatus"
license_get_trial_status "github.com/elastic/go-elasticsearch/v8/typedapi/license/gettrialstatus"
license_post "github.com/elastic/go-elasticsearch/v8/typedapi/license/post"
license_post_start_basic "github.com/elastic/go-elasticsearch/v8/typedapi/license/poststartbasic"
license_post_start_trial "github.com/elastic/go-elasticsearch/v8/typedapi/license/poststarttrial"
logstash_delete_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/logstash/deletepipeline"
logstash_get_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/logstash/getpipeline"
logstash_put_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/logstash/putpipeline"
migration_deprecations "github.com/elastic/go-elasticsearch/v8/typedapi/migration/deprecations"
migration_get_feature_upgrade_status "github.com/elastic/go-elasticsearch/v8/typedapi/migration/getfeatureupgradestatus"
migration_post_feature_upgrade "github.com/elastic/go-elasticsearch/v8/typedapi/migration/postfeatureupgrade"
ml_clear_trained_model_deployment_cache "github.com/elastic/go-elasticsearch/v8/typedapi/ml/cleartrainedmodeldeploymentcache"
ml_close_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/closejob"
ml_delete_calendar "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletecalendar"
ml_delete_calendar_event "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletecalendarevent"
ml_delete_calendar_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletecalendarjob"
ml_delete_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletedatafeed"
ml_delete_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletedataframeanalytics"
ml_delete_expired_data "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deleteexpireddata"
ml_delete_filter "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletefilter"
ml_delete_forecast "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deleteforecast"
ml_delete_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletejob"
ml_delete_model_snapshot "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletemodelsnapshot"
ml_delete_trained_model "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletetrainedmodel"
ml_delete_trained_model_alias "github.com/elastic/go-elasticsearch/v8/typedapi/ml/deletetrainedmodelalias"
ml_estimate_model_memory "github.com/elastic/go-elasticsearch/v8/typedapi/ml/estimatemodelmemory"
ml_evaluate_data_frame "github.com/elastic/go-elasticsearch/v8/typedapi/ml/evaluatedataframe"
ml_explain_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/explaindataframeanalytics"
ml_flush_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/flushjob"
ml_forecast "github.com/elastic/go-elasticsearch/v8/typedapi/ml/forecast"
ml_get_buckets "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getbuckets"
ml_get_calendar_events "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getcalendarevents"
ml_get_calendars "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getcalendars"
ml_get_categories "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getcategories"
ml_get_datafeeds "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getdatafeeds"
ml_get_datafeed_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getdatafeedstats"
ml_get_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getdataframeanalytics"
ml_get_data_frame_analytics_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getdataframeanalyticsstats"
ml_get_filters "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getfilters"
ml_get_influencers "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getinfluencers"
ml_get_jobs "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getjobs"
ml_get_job_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getjobstats"
ml_get_memory_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getmemorystats"
ml_get_model_snapshots "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getmodelsnapshots"
ml_get_model_snapshot_upgrade_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getmodelsnapshotupgradestats"
ml_get_overall_buckets "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getoverallbuckets"
ml_get_records "github.com/elastic/go-elasticsearch/v8/typedapi/ml/getrecords"
ml_get_trained_models "github.com/elastic/go-elasticsearch/v8/typedapi/ml/gettrainedmodels"
ml_get_trained_models_stats "github.com/elastic/go-elasticsearch/v8/typedapi/ml/gettrainedmodelsstats"
ml_infer_trained_model "github.com/elastic/go-elasticsearch/v8/typedapi/ml/infertrainedmodel"
ml_info "github.com/elastic/go-elasticsearch/v8/typedapi/ml/info"
ml_open_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/openjob"
ml_post_calendar_events "github.com/elastic/go-elasticsearch/v8/typedapi/ml/postcalendarevents"
ml_preview_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/previewdatafeed"
ml_preview_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/previewdataframeanalytics"
ml_put_calendar "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putcalendar"
ml_put_calendar_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putcalendarjob"
ml_put_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putdatafeed"
ml_put_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putdataframeanalytics"
ml_put_filter "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putfilter"
ml_put_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/putjob"
ml_put_trained_model "github.com/elastic/go-elasticsearch/v8/typedapi/ml/puttrainedmodel"
ml_put_trained_model_alias "github.com/elastic/go-elasticsearch/v8/typedapi/ml/puttrainedmodelalias"
ml_put_trained_model_definition_part "github.com/elastic/go-elasticsearch/v8/typedapi/ml/puttrainedmodeldefinitionpart"
ml_put_trained_model_vocabulary "github.com/elastic/go-elasticsearch/v8/typedapi/ml/puttrainedmodelvocabulary"
ml_reset_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/resetjob"
ml_revert_model_snapshot "github.com/elastic/go-elasticsearch/v8/typedapi/ml/revertmodelsnapshot"
ml_set_upgrade_mode "github.com/elastic/go-elasticsearch/v8/typedapi/ml/setupgrademode"
ml_start_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/startdatafeed"
ml_start_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/startdataframeanalytics"
ml_start_trained_model_deployment "github.com/elastic/go-elasticsearch/v8/typedapi/ml/starttrainedmodeldeployment"
ml_stop_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/stopdatafeed"
ml_stop_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/stopdataframeanalytics"
ml_stop_trained_model_deployment "github.com/elastic/go-elasticsearch/v8/typedapi/ml/stoptrainedmodeldeployment"
ml_update_datafeed "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatedatafeed"
ml_update_data_frame_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatedataframeanalytics"
ml_update_filter "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatefilter"
ml_update_job "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatejob"
ml_update_model_snapshot "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatemodelsnapshot"
ml_upgrade_job_snapshot "github.com/elastic/go-elasticsearch/v8/typedapi/ml/upgradejobsnapshot"
ml_validate "github.com/elastic/go-elasticsearch/v8/typedapi/ml/validate"
ml_validate_detector "github.com/elastic/go-elasticsearch/v8/typedapi/ml/validatedetector"
nodes_clear_repositories_metering_archive "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/clearrepositoriesmeteringarchive"
nodes_get_repositories_metering_info "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/getrepositoriesmeteringinfo"
nodes_hot_threads "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/hotthreads"
nodes_info "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/info"
nodes_reload_secure_settings "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/reloadsecuresettings"
nodes_stats "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/stats"
nodes_usage "github.com/elastic/go-elasticsearch/v8/typedapi/nodes/usage"
rollup_delete_job "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/deletejob"
rollup_get_jobs "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/getjobs"
rollup_get_rollup_caps "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/getrollupcaps"
rollup_get_rollup_index_caps "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/getrollupindexcaps"
rollup_put_job "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/putjob"
rollup_rollup_search "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/rollupsearch"
rollup_start_job "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/startjob"
rollup_stop_job "github.com/elastic/go-elasticsearch/v8/typedapi/rollup/stopjob"
searchable_snapshots_cache_stats "github.com/elastic/go-elasticsearch/v8/typedapi/searchablesnapshots/cachestats"
searchable_snapshots_clear_cache "github.com/elastic/go-elasticsearch/v8/typedapi/searchablesnapshots/clearcache"
searchable_snapshots_mount "github.com/elastic/go-elasticsearch/v8/typedapi/searchablesnapshots/mount"
searchable_snapshots_stats "github.com/elastic/go-elasticsearch/v8/typedapi/searchablesnapshots/stats"
security_activate_user_profile "github.com/elastic/go-elasticsearch/v8/typedapi/security/activateuserprofile"
security_authenticate "github.com/elastic/go-elasticsearch/v8/typedapi/security/authenticate"
security_bulk_update_api_keys "github.com/elastic/go-elasticsearch/v8/typedapi/security/bulkupdateapikeys"
security_change_password "github.com/elastic/go-elasticsearch/v8/typedapi/security/changepassword"
security_clear_api_key_cache "github.com/elastic/go-elasticsearch/v8/typedapi/security/clearapikeycache"
security_clear_cached_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/clearcachedprivileges"
security_clear_cached_realms "github.com/elastic/go-elasticsearch/v8/typedapi/security/clearcachedrealms"
security_clear_cached_roles "github.com/elastic/go-elasticsearch/v8/typedapi/security/clearcachedroles"
security_clear_cached_service_tokens "github.com/elastic/go-elasticsearch/v8/typedapi/security/clearcachedservicetokens"
security_create_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/createapikey"
security_create_service_token "github.com/elastic/go-elasticsearch/v8/typedapi/security/createservicetoken"
security_delete_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/deleteprivileges"
security_delete_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/deleterole"
security_delete_role_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/security/deleterolemapping"
security_delete_service_token "github.com/elastic/go-elasticsearch/v8/typedapi/security/deleteservicetoken"
security_delete_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/deleteuser"
security_disable_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/disableuser"
security_disable_user_profile "github.com/elastic/go-elasticsearch/v8/typedapi/security/disableuserprofile"
security_enable_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/enableuser"
security_enable_user_profile "github.com/elastic/go-elasticsearch/v8/typedapi/security/enableuserprofile"
security_enroll_kibana "github.com/elastic/go-elasticsearch/v8/typedapi/security/enrollkibana"
security_enroll_node "github.com/elastic/go-elasticsearch/v8/typedapi/security/enrollnode"
security_get_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/getapikey"
security_get_builtin_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/getbuiltinprivileges"
security_get_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/getprivileges"
security_get_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/getrole"
security_get_role_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/security/getrolemapping"
security_get_service_accounts "github.com/elastic/go-elasticsearch/v8/typedapi/security/getserviceaccounts"
security_get_service_credentials "github.com/elastic/go-elasticsearch/v8/typedapi/security/getservicecredentials"
security_get_token "github.com/elastic/go-elasticsearch/v8/typedapi/security/gettoken"
security_get_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/getuser"
security_get_user_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/getuserprivileges"
security_get_user_profile "github.com/elastic/go-elasticsearch/v8/typedapi/security/getuserprofile"
security_grant_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/grantapikey"
security_has_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/hasprivileges"
security_has_privileges_user_profile "github.com/elastic/go-elasticsearch/v8/typedapi/security/hasprivilegesuserprofile"
security_invalidate_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/invalidateapikey"
security_invalidate_token "github.com/elastic/go-elasticsearch/v8/typedapi/security/invalidatetoken"
security_oidc_authenticate "github.com/elastic/go-elasticsearch/v8/typedapi/security/oidcauthenticate"
security_oidc_logout "github.com/elastic/go-elasticsearch/v8/typedapi/security/oidclogout"
security_oidc_prepare_authentication "github.com/elastic/go-elasticsearch/v8/typedapi/security/oidcprepareauthentication"
security_put_privileges "github.com/elastic/go-elasticsearch/v8/typedapi/security/putprivileges"
security_put_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/putrole"
security_put_role_mapping "github.com/elastic/go-elasticsearch/v8/typedapi/security/putrolemapping"
security_put_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/putuser"
security_query_api_keys "github.com/elastic/go-elasticsearch/v8/typedapi/security/queryapikeys"
security_saml_authenticate "github.com/elastic/go-elasticsearch/v8/typedapi/security/samlauthenticate"
security_saml_complete_logout "github.com/elastic/go-elasticsearch/v8/typedapi/security/samlcompletelogout"
security_saml_invalidate "github.com/elastic/go-elasticsearch/v8/typedapi/security/samlinvalidate"
security_saml_logout "github.com/elastic/go-elasticsearch/v8/typedapi/security/samllogout"
security_saml_prepare_authentication "github.com/elastic/go-elasticsearch/v8/typedapi/security/samlprepareauthentication"
security_saml_service_provider_metadata "github.com/elastic/go-elasticsearch/v8/typedapi/security/samlserviceprovidermetadata"
security_suggest_user_profiles "github.com/elastic/go-elasticsearch/v8/typedapi/security/suggestuserprofiles"
security_update_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/updateapikey"
security_update_user_profile_data "github.com/elastic/go-elasticsearch/v8/typedapi/security/updateuserprofiledata"
shutdown_delete_node "github.com/elastic/go-elasticsearch/v8/typedapi/shutdown/deletenode"
shutdown_get_node "github.com/elastic/go-elasticsearch/v8/typedapi/shutdown/getnode"
shutdown_put_node "github.com/elastic/go-elasticsearch/v8/typedapi/shutdown/putnode"
slm_delete_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/slm/deletelifecycle"
slm_execute_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/slm/executelifecycle"
slm_execute_retention "github.com/elastic/go-elasticsearch/v8/typedapi/slm/executeretention"
slm_get_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/slm/getlifecycle"
slm_get_stats "github.com/elastic/go-elasticsearch/v8/typedapi/slm/getstats"
slm_get_status "github.com/elastic/go-elasticsearch/v8/typedapi/slm/getstatus"
slm_put_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/slm/putlifecycle"
slm_start "github.com/elastic/go-elasticsearch/v8/typedapi/slm/start"
slm_stop "github.com/elastic/go-elasticsearch/v8/typedapi/slm/stop"
snapshot_cleanup_repository "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/cleanuprepository"
snapshot_clone "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/clone"
snapshot_create "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/create"
snapshot_create_repository "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/createrepository"
snapshot_delete "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/delete"
snapshot_delete_repository "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/deleterepository"
snapshot_get "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/get"
snapshot_get_repository "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/getrepository"
snapshot_restore "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/restore"
snapshot_status "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/status"
snapshot_verify_repository "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/verifyrepository"
sql_clear_cursor "github.com/elastic/go-elasticsearch/v8/typedapi/sql/clearcursor"
sql_delete_async "github.com/elastic/go-elasticsearch/v8/typedapi/sql/deleteasync"
sql_get_async "github.com/elastic/go-elasticsearch/v8/typedapi/sql/getasync"
sql_get_async_status "github.com/elastic/go-elasticsearch/v8/typedapi/sql/getasyncstatus"
sql_query "github.com/elastic/go-elasticsearch/v8/typedapi/sql/query"
sql_translate "github.com/elastic/go-elasticsearch/v8/typedapi/sql/translate"
ssl_certificates "github.com/elastic/go-elasticsearch/v8/typedapi/ssl/certificates"
tasks_cancel "github.com/elastic/go-elasticsearch/v8/typedapi/tasks/cancel"
tasks_get "github.com/elastic/go-elasticsearch/v8/typedapi/tasks/get"
tasks_list "github.com/elastic/go-elasticsearch/v8/typedapi/tasks/list"
transform_delete_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/deletetransform"
transform_get_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/gettransform"
transform_get_transform_stats "github.com/elastic/go-elasticsearch/v8/typedapi/transform/gettransformstats"
transform_preview_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/previewtransform"
transform_put_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/puttransform"
transform_reset_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/resettransform"
transform_start_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/starttransform"
transform_stop_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/stoptransform"
transform_update_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/updatetransform"
transform_upgrade_transforms "github.com/elastic/go-elasticsearch/v8/typedapi/transform/upgradetransforms"
watcher_ack_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/ackwatch"
watcher_activate_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/activatewatch"
watcher_deactivate_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/deactivatewatch"
watcher_delete_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/deletewatch"
watcher_execute_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/executewatch"
watcher_get_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/getwatch"
watcher_put_watch "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/putwatch"
watcher_query_watches "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/querywatches"
watcher_start "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/start"
watcher_stats "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/stats"
watcher_stop "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/stop"
xpack_info "github.com/elastic/go-elasticsearch/v8/typedapi/xpack/info"
xpack_usage "github.com/elastic/go-elasticsearch/v8/typedapi/xpack/usage"
)
type Async struct {
// Deletes an async search by ID. If the search is still running, the search
// request will be cancelled. Otherwise, the saved search results are deleted.
Delete async_search_delete.NewDelete
// Retrieves the results of a previously submitted async search request given
// its ID.
Get async_search_get.NewGet
// Retrieves the status of a previously submitted async search request given its
// ID.
Status async_search_status.NewStatus
// Executes a search request asynchronously.
Submit async_search_submit.NewSubmit
}
type Autoscaling struct {
// Deletes an autoscaling policy. Designed for indirect use by ECE/ESS and ECK.
// Direct use is not supported.
DeleteAutoscalingPolicy autoscaling_delete_autoscaling_policy.NewDeleteAutoscalingPolicy
// Gets the current autoscaling capacity based on the configured autoscaling
// policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not
// supported.
GetAutoscalingCapacity autoscaling_get_autoscaling_capacity.NewGetAutoscalingCapacity
// Retrieves an autoscaling policy. Designed for indirect use by ECE/ESS and
// ECK. Direct use is not supported.
GetAutoscalingPolicy autoscaling_get_autoscaling_policy.NewGetAutoscalingPolicy
// Creates a new autoscaling policy. Designed for indirect use by ECE/ESS and
// ECK. Direct use is not supported.
PutAutoscalingPolicy autoscaling_put_autoscaling_policy.NewPutAutoscalingPolicy
}
type Cat struct {
// Shows information about currently configured aliases to indices including
// filter and routing infos.
Aliases cat_aliases.NewAliases
// Provides a snapshot of how many shards are allocated to each data node and
// how much disk space they are using.
Allocation cat_allocation.NewAllocation
// Returns information about existing component_templates templates.
ComponentTemplates cat_component_templates.NewComponentTemplates
// Provides quick access to the document count of the entire cluster, or
// individual indices.
Count cat_count.NewCount
// Shows how much heap memory is currently being used by fielddata on every data
// node in the cluster.
Fielddata cat_fielddata.NewFielddata
// Returns a concise representation of the cluster health.
Health cat_health.NewHealth
// Returns help for the Cat APIs.
Help cat_help.NewHelp
// Returns information about indices: number of primaries and replicas, document
// counts, disk size, ...
Indices cat_indices.NewIndices
// Returns information about the master node.
Master cat_master.NewMaster
// Gets configuration and usage information about data frame analytics jobs.
MlDataFrameAnalytics cat_ml_data_frame_analytics.NewMlDataFrameAnalytics
// Gets configuration and usage information about datafeeds.
MlDatafeeds cat_ml_datafeeds.NewMlDatafeeds
// Gets configuration and usage information about anomaly detection jobs.
MlJobs cat_ml_jobs.NewMlJobs
// Gets configuration and usage information about inference trained models.
MlTrainedModels cat_ml_trained_models.NewMlTrainedModels
// Returns information about custom node attributes.
Nodeattrs cat_nodeattrs.NewNodeattrs
// Returns basic statistics about performance of cluster nodes.
Nodes cat_nodes.NewNodes
// Returns a concise representation of the cluster pending tasks.
PendingTasks cat_pending_tasks.NewPendingTasks
// Returns information about installed plugins across nodes node.
Plugins cat_plugins.NewPlugins
// Returns information about index shard recoveries, both on-going completed.
Recovery cat_recovery.NewRecovery
// Returns information about snapshot repositories registered in the cluster.
Repositories cat_repositories.NewRepositories
// Provides low-level information about the segments in the shards of an index.
Segments cat_segments.NewSegments
// Provides a detailed view of shard allocation on nodes.
Shards cat_shards.NewShards
// Returns all snapshots in a specific repository.
Snapshots cat_snapshots.NewSnapshots
// Returns information about the tasks currently executing on one or more nodes
// in the cluster.
Tasks cat_tasks.NewTasks
// Returns information about existing templates.
Templates cat_templates.NewTemplates
// Returns cluster-wide thread pool statistics per node.
// By default the active, queue and rejected statistics are returned for all
// thread pools.
ThreadPool cat_thread_pool.NewThreadPool
// Gets configuration and usage information about transforms.
Transforms cat_transforms.NewTransforms
}
type Ccr struct {
// Deletes auto-follow patterns.
DeleteAutoFollowPattern ccr_delete_auto_follow_pattern.NewDeleteAutoFollowPattern
// Creates a new follower index configured to follow the referenced leader
// index.
Follow ccr_follow.NewFollow
// Retrieves information about all follower indices, including parameters and
// status for each follower index
FollowInfo ccr_follow_info.NewFollowInfo
// Retrieves follower stats. return shard-level stats about the following tasks
// associated with each shard for the specified indices.
FollowStats ccr_follow_stats.NewFollowStats
// Removes the follower retention leases from the leader.
ForgetFollower ccr_forget_follower.NewForgetFollower
// Gets configured auto-follow patterns. Returns the specified auto-follow
// pattern collection.
GetAutoFollowPattern ccr_get_auto_follow_pattern.NewGetAutoFollowPattern
// Pauses an auto-follow pattern
PauseAutoFollowPattern ccr_pause_auto_follow_pattern.NewPauseAutoFollowPattern
// Pauses a follower index. The follower index will not fetch any additional
// operations from the leader index.
PauseFollow ccr_pause_follow.NewPauseFollow
// Creates a new named collection of auto-follow patterns against a specified
// remote cluster. Newly created indices on the remote cluster matching any of
// the specified patterns will be automatically configured as follower indices.
PutAutoFollowPattern ccr_put_auto_follow_pattern.NewPutAutoFollowPattern
// Resumes an auto-follow pattern that has been paused
ResumeAutoFollowPattern ccr_resume_auto_follow_pattern.NewResumeAutoFollowPattern
// Resumes a follower index that has been paused
ResumeFollow ccr_resume_follow.NewResumeFollow
// Gets all stats related to cross-cluster replication.
Stats ccr_stats.NewStats
// Stops the following task associated with a follower index and removes index
// metadata and settings associated with cross-cluster replication.
Unfollow ccr_unfollow.NewUnfollow
}
type Cluster struct {
// Provides explanations for shard allocations in the cluster.
AllocationExplain cluster_allocation_explain.NewAllocationExplain
// Deletes a component template
DeleteComponentTemplate cluster_delete_component_template.NewDeleteComponentTemplate
// Clears cluster voting config exclusions.
DeleteVotingConfigExclusions cluster_delete_voting_config_exclusions.NewDeleteVotingConfigExclusions
// Returns information about whether a particular component template exist
ExistsComponentTemplate cluster_exists_component_template.NewExistsComponentTemplate
// Returns one or more component templates
GetComponentTemplate cluster_get_component_template.NewGetComponentTemplate
// Returns cluster settings.
GetSettings cluster_get_settings.NewGetSettings
// Returns basic information about the health of the cluster.
Health cluster_health.NewHealth
// Returns a list of any cluster-level changes (e.g. create index, update
// mapping,
// allocate or fail shard) which have not yet been executed.
PendingTasks cluster_pending_tasks.NewPendingTasks
// Updates the cluster voting config exclusions by node ids or node names.
PostVotingConfigExclusions cluster_post_voting_config_exclusions.NewPostVotingConfigExclusions
// Creates or updates a component template
PutComponentTemplate cluster_put_component_template.NewPutComponentTemplate
// Updates the cluster settings.
PutSettings cluster_put_settings.NewPutSettings
// Returns the information about configured remote clusters.
RemoteInfo cluster_remote_info.NewRemoteInfo
// Allows to manually change the allocation of individual shards in the cluster.
Reroute cluster_reroute.NewReroute
// Returns a comprehensive information about the state of the cluster.
State cluster_state.NewState
// Returns high-level overview of cluster statistics.
Stats cluster_stats.NewStats
}
type Core struct {
// Explicitly clears the search context for a scroll.
ClearScroll core_clear_scroll.NewClearScroll
// Close a point in time
ClosePointInTime core_close_point_in_time.NewClosePointInTime
// Returns number of documents matching a query.
Count core_count.NewCount
// Creates a new document in the index.
//
// Returns a 409 response when a document with a same ID already exists in the
// index.
Create core_create.NewCreate
// Removes a document from the index.
Delete core_delete.NewDelete
// Deletes documents matching the provided query.
DeleteByQuery core_delete_by_query.NewDeleteByQuery
// Changes the number of requests per second for a particular Delete By Query
// operation.
DeleteByQueryRethrottle core_delete_by_query_rethrottle.NewDeleteByQueryRethrottle
// Deletes a script.
DeleteScript core_delete_script.NewDeleteScript
// Returns information about whether a document exists in an index.
Exists core_exists.NewExists
// Returns information about whether a document source exists in an index.
ExistsSource core_exists_source.NewExistsSource
// Returns information about why a specific matches (or doesn't match) a query.
Explain core_explain.NewExplain
// Returns the information about the capabilities of fields among multiple
// indices.
FieldCaps core_field_caps.NewFieldCaps
// Returns a document.
Get core_get.NewGet
// Returns a script.
GetScript core_get_script.NewGetScript
// Returns all script contexts.
GetScriptContext core_get_script_context.NewGetScriptContext
// Returns available script types, languages and contexts
GetScriptLanguages core_get_script_languages.NewGetScriptLanguages
// Returns the source of a document.
GetSource core_get_source.NewGetSource
// Creates or updates a document in an index.
Index core_index.NewIndex
// Returns basic information about the cluster.
Info core_info.NewInfo
// Performs a kNN search.
KnnSearch core_knn_search.NewKnnSearch
// Allows to get multiple documents in one request.
Mget core_mget.NewMget
// Returns multiple termvectors in one request.
Mtermvectors core_mtermvectors.NewMtermvectors
// Open a point in time that can be used in subsequent searches
OpenPointInTime core_open_point_in_time.NewOpenPointInTime
// Returns whether the cluster is running.
Ping core_ping.NewPing
// Creates or updates a script.
PutScript core_put_script.NewPutScript
// Allows to evaluate the quality of ranked search results over a set of typical
// search queries
RankEval core_rank_eval.NewRankEval
// Allows to copy documents from one index to another, optionally filtering the
// source
// documents by a query, changing the destination index settings, or fetching
// the
// documents from a remote cluster.
Reindex core_reindex.NewReindex
// Changes the number of requests per second for a particular Reindex operation.
ReindexRethrottle core_reindex_rethrottle.NewReindexRethrottle
// Allows to use the Mustache language to pre-render a search definition.
RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate
// Allows an arbitrary script to be executed and a result to be returned
ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute
// Allows to retrieve a large numbers of results from a single search request.
Scroll core_scroll.NewScroll
// Returns results matching a query.
Search core_search.NewSearch
// Searches a vector tile for geospatial values. Returns results as a binary
// Mapbox vector tile.
SearchMvt core_search_mvt.NewSearchMvt
// Returns information about the indices and shards that a search request would
// be executed against.
SearchShards core_search_shards.NewSearchShards
// Allows to use the Mustache language to pre-render a search definition.
SearchTemplate core_search_template.NewSearchTemplate
// The terms enum API can be used to discover terms in the index that begin
// with the provided string. It is designed for low-latency look-ups used in
// auto-complete scenarios.
TermsEnum core_terms_enum.NewTermsEnum
// Returns information and statistics about terms in the fields of a particular
// document.
Termvectors core_termvectors.NewTermvectors
// Updates a document with a script or partial document.
Update core_update.NewUpdate
// Performs an update on every document in the index without changing the
// source,
// for example to pick up a mapping change.
UpdateByQuery core_update_by_query.NewUpdateByQuery
// Changes the number of requests per second for a particular Update By Query
// operation.
UpdateByQueryRethrottle core_update_by_query_rethrottle.NewUpdateByQueryRethrottle
}
type Dangling struct {
// Deletes the specified dangling index
DeleteDanglingIndex dangling_indices_delete_dangling_index.NewDeleteDanglingIndex
// Imports the specified dangling index
ImportDanglingIndex dangling_indices_import_dangling_index.NewImportDanglingIndex
// Returns all dangling indices.
ListDanglingIndices dangling_indices_list_dangling_indices.NewListDanglingIndices
}
type Enrich struct {
// Deletes an existing enrich policy and its enrich index.
DeletePolicy enrich_delete_policy.NewDeletePolicy
// Creates the enrich index for an existing enrich policy.
ExecutePolicy enrich_execute_policy.NewExecutePolicy
// Gets information about an enrich policy.
GetPolicy enrich_get_policy.NewGetPolicy
// Creates a new enrich policy.
PutPolicy enrich_put_policy.NewPutPolicy
// Gets enrich coordinator statistics and information about enrich policies that
// are currently executing.
Stats enrich_stats.NewStats
}
type Eql struct {
// Deletes an async EQL search by ID. If the search is still running, the search
// request will be cancelled. Otherwise, the saved search results are deleted.
Delete eql_delete.NewDelete
// Returns async results from previously executed Event Query Language (EQL)
// search
Get eql_get.NewGet
// Returns the status of a previously submitted async or stored Event Query
// Language (EQL) search
GetStatus eql_get_status.NewGetStatus
// Returns results matching a query expressed in Event Query Language (EQL)
Search eql_search.NewSearch
}
type Features struct {
// Gets a list of features which can be included in snapshots using the
// feature_states field when creating a snapshot
GetFeatures features_get_features.NewGetFeatures
// Resets the internal state of features, usually by deleting system indices
ResetFeatures features_reset_features.NewResetFeatures
}
type Fleet struct {
// Returns the current global checkpoints for an index. This API is design for
// internal use by the fleet server project.
GlobalCheckpoints fleet_global_checkpoints.NewGlobalCheckpoints
// Search API where the search will only be executed after specified checkpoints
// are available due to a refresh. This API is designed for internal use by the
// fleet server project.
Search fleet_search.NewSearch
}
type Graph struct {
// Explore extracted and summarized information about the documents and terms in
// an index.
Explore graph_explore.NewExplore
}
type Ilm struct {
// Deletes the specified lifecycle policy definition. A currently used policy
// cannot be deleted.
DeleteLifecycle ilm_delete_lifecycle.NewDeleteLifecycle
// Retrieves information about the index's current lifecycle state, such as the
// currently executing phase, action, and step.
ExplainLifecycle ilm_explain_lifecycle.NewExplainLifecycle
// Returns the specified policy definition. Includes the policy version and last
// modified date.
GetLifecycle ilm_get_lifecycle.NewGetLifecycle
// Retrieves the current index lifecycle management (ILM) status.
GetStatus ilm_get_status.NewGetStatus
// Migrates the indices and ILM policies away from custom node attribute
// allocation routing to data tiers routing
MigrateToDataTiers ilm_migrate_to_data_tiers.NewMigrateToDataTiers
// Manually moves an index into the specified step and executes that step.
MoveToStep ilm_move_to_step.NewMoveToStep
// Creates a lifecycle policy
PutLifecycle ilm_put_lifecycle.NewPutLifecycle
// Removes the assigned lifecycle policy and stops managing the specified index
RemovePolicy ilm_remove_policy.NewRemovePolicy
// Retries executing the policy for an index that is in the ERROR step.
Retry ilm_retry.NewRetry
// Start the index lifecycle management (ILM) plugin.
Start ilm_start.NewStart
// Halts all lifecycle management operations and stops the index lifecycle
// management (ILM) plugin
Stop ilm_stop.NewStop
}
type Indices struct {
// Adds a block to an index.
AddBlock indices_add_block.NewAddBlock
// Performs the analysis process on a text and return the tokens breakdown of
// the text.
Analyze indices_analyze.NewAnalyze
// Clears all or specific caches for one or more indices.
ClearCache indices_clear_cache.NewClearCache
// Clones an index
Clone indices_clone.NewClone
// Closes an index.
Close indices_close.NewClose
// Creates an index with optional settings and mappings.
Create indices_create.NewCreate
// Creates a data stream
CreateDataStream indices_create_data_stream.NewCreateDataStream
// Provides statistics on operations happening in a data stream.
DataStreamsStats indices_data_streams_stats.NewDataStreamsStats
// Deletes an index.
Delete indices_delete.NewDelete
// Deletes an alias.
DeleteAlias indices_delete_alias.NewDeleteAlias
// Deletes a data stream.
DeleteDataStream indices_delete_data_stream.NewDeleteDataStream
// Deletes an index template.
DeleteIndexTemplate indices_delete_index_template.NewDeleteIndexTemplate
// Deletes an index template.
DeleteTemplate indices_delete_template.NewDeleteTemplate
// Analyzes the disk usage of each field of an index or data stream
DiskUsage indices_disk_usage.NewDiskUsage
// Downsample an index
Downsample indices_downsample.NewDownsample
// Returns information about whether a particular index exists.
Exists indices_exists.NewExists
// Returns information about whether a particular alias exists.
ExistsAlias indices_exists_alias.NewExistsAlias
// Returns information about whether a particular index template exists.
ExistsIndexTemplate indices_exists_index_template.NewExistsIndexTemplate
// Returns information about whether a particular index template exists.
ExistsTemplate indices_exists_template.NewExistsTemplate
// Returns the field usage stats for each field of an index
FieldUsageStats indices_field_usage_stats.NewFieldUsageStats
// Performs the flush operation on one or more indices.
Flush indices_flush.NewFlush
// Performs the force merge operation on one or more indices.
Forcemerge indices_forcemerge.NewForcemerge
// Returns information about one or more indices.
Get indices_get.NewGet
// Returns an alias.
GetAlias indices_get_alias.NewGetAlias
// Returns data streams.
GetDataStream indices_get_data_stream.NewGetDataStream
// Returns mapping for one or more fields.
GetFieldMapping indices_get_field_mapping.NewGetFieldMapping
// Returns an index template.
GetIndexTemplate indices_get_index_template.NewGetIndexTemplate
// Returns mappings for one or more indices.
GetMapping indices_get_mapping.NewGetMapping
// Returns settings for one or more indices.
GetSettings indices_get_settings.NewGetSettings
// Returns an index template.
GetTemplate indices_get_template.NewGetTemplate
// Migrates an alias to a data stream
MigrateToDataStream indices_migrate_to_data_stream.NewMigrateToDataStream
// Modifies a data stream
ModifyDataStream indices_modify_data_stream.NewModifyDataStream
// Opens an index.
Open indices_open.NewOpen
// Promotes a data stream from a replicated data stream managed by CCR to a
// regular data stream
PromoteDataStream indices_promote_data_stream.NewPromoteDataStream
// Creates or updates an alias.
PutAlias indices_put_alias.NewPutAlias
// Creates or updates an index template.
PutIndexTemplate indices_put_index_template.NewPutIndexTemplate
// Updates the index mappings.
PutMapping indices_put_mapping.NewPutMapping
// Updates the index settings.
PutSettings indices_put_settings.NewPutSettings
// Creates or updates an index template.
PutTemplate indices_put_template.NewPutTemplate
// Returns information about ongoing index shard recoveries.
Recovery indices_recovery.NewRecovery
// Performs the refresh operation in one or more indices.
Refresh indices_refresh.NewRefresh
// Reloads an index's search analyzers and their resources.
ReloadSearchAnalyzers indices_reload_search_analyzers.NewReloadSearchAnalyzers
// Returns information about any matching indices, aliases, and data streams
ResolveIndex indices_resolve_index.NewResolveIndex
// Updates an alias to point to a new index when the existing index
// is considered to be too large or too old.
Rollover indices_rollover.NewRollover
// Provides low-level information about segments in a Lucene index.
Segments indices_segments.NewSegments
// Provides store information for shard copies of indices.
ShardStores indices_shard_stores.NewShardStores
// Allow to shrink an existing index into a new index with fewer primary shards.
Shrink indices_shrink.NewShrink
// Simulate matching the given index name against the index templates in the
// system
SimulateIndexTemplate indices_simulate_index_template.NewSimulateIndexTemplate
// Simulate resolving the given template name or body
SimulateTemplate indices_simulate_template.NewSimulateTemplate
// Allows you to split an existing index into a new index with more primary
// shards.
Split indices_split.NewSplit
// Provides statistics on operations happening in an index.
Stats indices_stats.NewStats
// Unfreezes an index. When a frozen index is unfrozen, the index goes through
// the normal recovery process and becomes writeable again.
Unfreeze indices_unfreeze.NewUnfreeze
// Updates index aliases.
UpdateAliases indices_update_aliases.NewUpdateAliases
// Allows a user to validate a potentially expensive query without executing it.
ValidateQuery indices_validate_query.NewValidateQuery
}
type Ingest struct {
// Deletes a pipeline.
DeletePipeline ingest_delete_pipeline.NewDeletePipeline
// Returns statistical information about geoip databases
GeoIpStats ingest_geo_ip_stats.NewGeoIpStats
// Returns a pipeline.
GetPipeline ingest_get_pipeline.NewGetPipeline
// Returns a list of the built-in patterns.
ProcessorGrok ingest_processor_grok.NewProcessorGrok
// Creates or updates a pipeline.
PutPipeline ingest_put_pipeline.NewPutPipeline
// Allows to simulate a pipeline with example documents.
Simulate ingest_simulate.NewSimulate
}
type License struct {
// Deletes licensing information for the cluster
Delete license_delete.NewDelete
// Retrieves licensing information for the cluster
Get license_get.NewGet
// Retrieves information about the status of the basic license.
GetBasicStatus license_get_basic_status.NewGetBasicStatus
// Retrieves information about the status of the trial license.
GetTrialStatus license_get_trial_status.NewGetTrialStatus
// Updates the license for the cluster.
Post license_post.NewPost
// Starts an indefinite basic license.
PostStartBasic license_post_start_basic.NewPostStartBasic
// starts a limited time trial license.
PostStartTrial license_post_start_trial.NewPostStartTrial
}
type Logstash struct {
// Deletes Logstash Pipelines used by Central Management
DeletePipeline logstash_delete_pipeline.NewDeletePipeline
// Retrieves Logstash Pipelines used by Central Management
GetPipeline logstash_get_pipeline.NewGetPipeline
// Adds and updates Logstash Pipelines used for Central Management
PutPipeline logstash_put_pipeline.NewPutPipeline
}
type Migration struct {
// Retrieves information about different cluster, node, and index level settings
// that use deprecated features that will be removed or changed in the next
// major version.
Deprecations migration_deprecations.NewDeprecations
// Find out whether system features need to be upgraded or not
GetFeatureUpgradeStatus migration_get_feature_upgrade_status.NewGetFeatureUpgradeStatus
// Begin upgrades for system features
PostFeatureUpgrade migration_post_feature_upgrade.NewPostFeatureUpgrade
}
type Ml struct {
// Clear the cached results from a trained model deployment
ClearTrainedModelDeploymentCache ml_clear_trained_model_deployment_cache.NewClearTrainedModelDeploymentCache
// Closes one or more anomaly detection jobs. A job can be opened and closed
// multiple times throughout its lifecycle.
CloseJob ml_close_job.NewCloseJob
// Deletes a calendar.
DeleteCalendar ml_delete_calendar.NewDeleteCalendar
// Deletes scheduled events from a calendar.
DeleteCalendarEvent ml_delete_calendar_event.NewDeleteCalendarEvent
// Deletes anomaly detection jobs from a calendar.
DeleteCalendarJob ml_delete_calendar_job.NewDeleteCalendarJob
// Deletes an existing data frame analytics job.
DeleteDataFrameAnalytics ml_delete_data_frame_analytics.NewDeleteDataFrameAnalytics
// Deletes an existing datafeed.
DeleteDatafeed ml_delete_datafeed.NewDeleteDatafeed
// Deletes expired and unused machine learning data.
DeleteExpiredData ml_delete_expired_data.NewDeleteExpiredData
// Deletes a filter.
DeleteFilter ml_delete_filter.NewDeleteFilter
// Deletes forecasts from a machine learning job.
DeleteForecast ml_delete_forecast.NewDeleteForecast
// Deletes an existing anomaly detection job.
DeleteJob ml_delete_job.NewDeleteJob
// Deletes an existing model snapshot.
DeleteModelSnapshot ml_delete_model_snapshot.NewDeleteModelSnapshot
// Deletes an existing trained inference model that is currently not referenced
// by an ingest pipeline.
DeleteTrainedModel ml_delete_trained_model.NewDeleteTrainedModel
// Deletes a model alias that refers to the trained model
DeleteTrainedModelAlias ml_delete_trained_model_alias.NewDeleteTrainedModelAlias
// Estimates the model memory
EstimateModelMemory ml_estimate_model_memory.NewEstimateModelMemory
// Evaluates the data frame analytics for an annotated index.
EvaluateDataFrame ml_evaluate_data_frame.NewEvaluateDataFrame
// Explains a data frame analytics config.
ExplainDataFrameAnalytics ml_explain_data_frame_analytics.NewExplainDataFrameAnalytics
// Forces any buffered data to be processed by the job.
FlushJob ml_flush_job.NewFlushJob
// Predicts the future behavior of a time series by using its historical
// behavior.
Forecast ml_forecast.NewForecast
// Retrieves anomaly detection job results for one or more buckets.
GetBuckets ml_get_buckets.NewGetBuckets