-
Notifications
You must be signed in to change notification settings - Fork 625
/
Copy pathapi._.go
10949 lines (10857 loc) · 564 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/ea991724f4dd4f90c496eff547d3cc2e6529f509
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"
capabilities "github.com/elastic/go-elasticsearch/v8/typedapi/capabilities"
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_info "github.com/elastic/go-elasticsearch/v8/typedapi/cluster/info"
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"
connector_check_in "github.com/elastic/go-elasticsearch/v8/typedapi/connector/checkin"
connector_delete "github.com/elastic/go-elasticsearch/v8/typedapi/connector/delete"
connector_get "github.com/elastic/go-elasticsearch/v8/typedapi/connector/get"
connector_last_sync "github.com/elastic/go-elasticsearch/v8/typedapi/connector/lastsync"
connector_list "github.com/elastic/go-elasticsearch/v8/typedapi/connector/list"
connector_post "github.com/elastic/go-elasticsearch/v8/typedapi/connector/post"
connector_put "github.com/elastic/go-elasticsearch/v8/typedapi/connector/put"
connector_secret_post "github.com/elastic/go-elasticsearch/v8/typedapi/connector/secretpost"
connector_sync_job_cancel "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobcancel"
connector_sync_job_check_in "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobcheckin"
connector_sync_job_claim "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobclaim"
connector_sync_job_delete "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobdelete"
connector_sync_job_error "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjoberror"
connector_sync_job_get "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobget"
connector_sync_job_list "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjoblist"
connector_sync_job_post "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobpost"
connector_sync_job_update_stats "github.com/elastic/go-elasticsearch/v8/typedapi/connector/syncjobupdatestats"
connector_update_active_filtering "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateactivefiltering"
connector_update_api_key_id "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateapikeyid"
connector_update_configuration "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateconfiguration"
connector_update_error "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateerror"
connector_update_features "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatefeatures"
connector_update_filtering "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatefiltering"
connector_update_filtering_validation "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatefilteringvalidation"
connector_update_index_name "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateindexname"
connector_update_name "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatename"
connector_update_native "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatenative"
connector_update_pipeline "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatepipeline"
connector_update_scheduling "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatescheduling"
connector_update_service_type "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updateservicetype"
connector_update_status "github.com/elastic/go-elasticsearch/v8/typedapi/connector/updatestatus"
core_bulk "github.com/elastic/go-elasticsearch/v8/typedapi/core/bulk"
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_health_report "github.com/elastic/go-elasticsearch/v8/typedapi/core/healthreport"
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_msearch "github.com/elastic/go-elasticsearch/v8/typedapi/core/msearch"
core_msearch_template "github.com/elastic/go-elasticsearch/v8/typedapi/core/msearchtemplate"
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"
esql_async_query "github.com/elastic/go-elasticsearch/v8/typedapi/esql/asyncquery"
esql_async_query_delete "github.com/elastic/go-elasticsearch/v8/typedapi/esql/asyncquerydelete"
esql_async_query_get "github.com/elastic/go-elasticsearch/v8/typedapi/esql/asyncqueryget"
esql_async_query_stop "github.com/elastic/go-elasticsearch/v8/typedapi/esql/asyncquerystop"
esql_query "github.com/elastic/go-elasticsearch/v8/typedapi/esql/query"
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_msearch "github.com/elastic/go-elasticsearch/v8/typedapi/fleet/msearch"
fleet_post_secret "github.com/elastic/go-elasticsearch/v8/typedapi/fleet/postsecret"
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_cancel_migrate_reindex "github.com/elastic/go-elasticsearch/v8/typedapi/indices/cancelmigratereindex"
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_create_from "github.com/elastic/go-elasticsearch/v8/typedapi/indices/createfrom"
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_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/indices/deletedatalifecycle"
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_explain_data_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/indices/explaindatalifecycle"
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_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getdatalifecycle"
indices_get_data_lifecycle_stats "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getdatalifecyclestats"
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_migrate_reindex_status "github.com/elastic/go-elasticsearch/v8/typedapi/indices/getmigratereindexstatus"
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_reindex "github.com/elastic/go-elasticsearch/v8/typedapi/indices/migratereindex"
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_data_lifecycle "github.com/elastic/go-elasticsearch/v8/typedapi/indices/putdatalifecycle"
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_cluster "github.com/elastic/go-elasticsearch/v8/typedapi/indices/resolvecluster"
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_update_aliases "github.com/elastic/go-elasticsearch/v8/typedapi/indices/updatealiases"
indices_validate_query "github.com/elastic/go-elasticsearch/v8/typedapi/indices/validatequery"
inference_chat_completion_unified "github.com/elastic/go-elasticsearch/v8/typedapi/inference/chatcompletionunified"
inference_completion "github.com/elastic/go-elasticsearch/v8/typedapi/inference/completion"
inference_delete "github.com/elastic/go-elasticsearch/v8/typedapi/inference/delete"
inference_get "github.com/elastic/go-elasticsearch/v8/typedapi/inference/get"
inference_put "github.com/elastic/go-elasticsearch/v8/typedapi/inference/put"
inference_put_openai "github.com/elastic/go-elasticsearch/v8/typedapi/inference/putopenai"
inference_put_watsonx "github.com/elastic/go-elasticsearch/v8/typedapi/inference/putwatsonx"
inference_rerank "github.com/elastic/go-elasticsearch/v8/typedapi/inference/rerank"
inference_sparse_embedding "github.com/elastic/go-elasticsearch/v8/typedapi/inference/sparseembedding"
inference_stream_completion "github.com/elastic/go-elasticsearch/v8/typedapi/inference/streamcompletion"
inference_text_embedding "github.com/elastic/go-elasticsearch/v8/typedapi/inference/textembedding"
inference_update "github.com/elastic/go-elasticsearch/v8/typedapi/inference/update"
ingest_delete_geoip_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/deletegeoipdatabase"
ingest_delete_ip_location_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/deleteiplocationdatabase"
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_geoip_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/getgeoipdatabase"
ingest_get_ip_location_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/getiplocationdatabase"
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_geoip_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/putgeoipdatabase"
ingest_put_ip_location_database "github.com/elastic/go-elasticsearch/v8/typedapi/ingest/putiplocationdatabase"
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_post_data "github.com/elastic/go-elasticsearch/v8/typedapi/ml/postdata"
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_update_trained_model_deployment "github.com/elastic/go-elasticsearch/v8/typedapi/ml/updatetrainedmodeldeployment"
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"
monitoring_bulk "github.com/elastic/go-elasticsearch/v8/typedapi/monitoring/bulk"
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"
profiling_flamegraph "github.com/elastic/go-elasticsearch/v8/typedapi/profiling/flamegraph"
profiling_stacktraces "github.com/elastic/go-elasticsearch/v8/typedapi/profiling/stacktraces"
profiling_status "github.com/elastic/go-elasticsearch/v8/typedapi/profiling/status"
profiling_topn_functions "github.com/elastic/go-elasticsearch/v8/typedapi/profiling/topnfunctions"
query_rules_delete_rule "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/deleterule"
query_rules_delete_ruleset "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/deleteruleset"
query_rules_get_rule "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/getrule"
query_rules_get_ruleset "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/getruleset"
query_rules_list_rulesets "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/listrulesets"
query_rules_put_rule "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/putrule"
query_rules_put_ruleset "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/putruleset"
query_rules_test "github.com/elastic/go-elasticsearch/v8/typedapi/queryrules/test"
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"
search_application_delete "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/delete"
search_application_delete_behavioral_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/deletebehavioralanalytics"
search_application_get "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/get"
search_application_get_behavioral_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/getbehavioralanalytics"
search_application_list "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/list"
search_application_post_behavioral_analytics_event "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/postbehavioralanalyticsevent"
search_application_put "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/put"
search_application_put_behavioral_analytics "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/putbehavioralanalytics"
search_application_render_query "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/renderquery"
search_application_search "github.com/elastic/go-elasticsearch/v8/typedapi/searchapplication/search"
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_delete_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/bulkdeleterole"
security_bulk_put_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/bulkputrole"
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_cross_cluster_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/createcrossclusterapikey"
security_create_service_token "github.com/elastic/go-elasticsearch/v8/typedapi/security/createservicetoken"
security_delegate_pki "github.com/elastic/go-elasticsearch/v8/typedapi/security/delegatepki"
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_settings "github.com/elastic/go-elasticsearch/v8/typedapi/security/getsettings"
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_query_role "github.com/elastic/go-elasticsearch/v8/typedapi/security/queryrole"
security_query_user "github.com/elastic/go-elasticsearch/v8/typedapi/security/queryuser"
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_cross_cluster_api_key "github.com/elastic/go-elasticsearch/v8/typedapi/security/updatecrossclusterapikey"
security_update_settings "github.com/elastic/go-elasticsearch/v8/typedapi/security/updatesettings"
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"
simulate_ingest "github.com/elastic/go-elasticsearch/v8/typedapi/simulate/ingest"
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_repository_analyze "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/repositoryanalyze"
snapshot_repository_verify_integrity "github.com/elastic/go-elasticsearch/v8/typedapi/snapshot/repositoryverifyintegrity"
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"
synonyms_delete_synonym "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/deletesynonym"
synonyms_delete_synonym_rule "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/deletesynonymrule"
synonyms_get_synonym "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/getsynonym"
synonyms_get_synonym_rule "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/getsynonymrule"
synonyms_get_synonyms_sets "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/getsynonymssets"
synonyms_put_synonym "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/putsynonym"
synonyms_put_synonym_rule "github.com/elastic/go-elasticsearch/v8/typedapi/synonyms/putsynonymrule"
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"
text_structure_find_field_structure "github.com/elastic/go-elasticsearch/v8/typedapi/textstructure/findfieldstructure"
text_structure_find_message_structure "github.com/elastic/go-elasticsearch/v8/typedapi/textstructure/findmessagestructure"
text_structure_find_structure "github.com/elastic/go-elasticsearch/v8/typedapi/textstructure/findstructure"
text_structure_test_grok_pattern "github.com/elastic/go-elasticsearch/v8/typedapi/textstructure/testgrokpattern"
transform_delete_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/deletetransform"
transform_get_node_stats "github.com/elastic/go-elasticsearch/v8/typedapi/transform/getnodestats"
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_schedule_now_transform "github.com/elastic/go-elasticsearch/v8/typedapi/transform/schedulenowtransform"
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_settings "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/getsettings"
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"
watcher_update_settings "github.com/elastic/go-elasticsearch/v8/typedapi/watcher/updatesettings"
xpack_info "github.com/elastic/go-elasticsearch/v8/typedapi/xpack/info"
xpack_usage "github.com/elastic/go-elasticsearch/v8/typedapi/xpack/usage"
)
type AsyncSearch struct {
// Delete an async search.
//
// If the asynchronous search is still running, it is cancelled.
// Otherwise, the saved search results are deleted.
// If the Elasticsearch security features are enabled, the deletion of a
// specific async search is restricted to: the authenticated user that submitted
// the original search request; users that have the `cancel_task` cluster
// privilege.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-async-search-submit
Delete async_search_delete.NewDelete
// Get async search results.
//
// Retrieve the results of a previously submitted asynchronous search request.
// If the Elasticsearch security features are enabled, access to the results of
// a specific async search is restricted to the user or API key that submitted
// it.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-async-search-submit
Get async_search_get.NewGet
// Get the async search status.
//
// Get the status of a previously submitted async search request given its
// identifier, without retrieving search results.
// If the Elasticsearch security features are enabled, the access to the status
// of a specific async search is restricted to:
//
// * The user or API key that submitted the original async search request.
// * Users that have the `monitor` cluster privilege or greater privileges.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-async-search-submit
Status async_search_status.NewStatus
// Run an async search.
//
// When the primary sort of the results is an indexed field, shards get sorted
// based on minimum and maximum value that they hold for that field. Partial
// results become available following the sort criteria that was requested.
//
// Warning: Asynchronous search does not support scroll or search requests that
// include only the suggest section.
//
// By default, Elasticsearch does not allow you to store an async search
// response larger than 10Mb and an attempt to do this results in an error.
// The maximum allowed size for a stored async search response can be set by
// changing the `search.max_async_search_response_size` cluster level setting.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-async-search-submit
Submit async_search_submit.NewSubmit
}
type Autoscaling struct {
// Delete an autoscaling policy.
//
// NOTE: This feature is designed for indirect use by Elasticsearch Service,
// Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not
// supported.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-autoscaling-delete-autoscaling-policy
DeleteAutoscalingPolicy autoscaling_delete_autoscaling_policy.NewDeleteAutoscalingPolicy
// Get the autoscaling capacity.
//
// NOTE: This feature is designed for indirect use by Elasticsearch Service,
// Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not
// supported.
//
// This API gets the current autoscaling capacity based on the configured
// autoscaling policy.
// It will return information to size the cluster appropriately to the current
// workload.
//
// The `required_capacity` is calculated as the maximum of the
// `required_capacity` result of all individual deciders that are enabled for
// the policy.
//
// The operator should verify that the `current_nodes` match the operator’s
// knowledge of the cluster to avoid making autoscaling decisions based on stale
// or incomplete information.
//
// The response contains decider-specific information you can use to diagnose
// how and why autoscaling determined a certain capacity was required.
// This information is provided for diagnosis only.
// Do not use this information to make autoscaling decisions.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-autoscaling-get-autoscaling-capacity
GetAutoscalingCapacity autoscaling_get_autoscaling_capacity.NewGetAutoscalingCapacity
// Get an autoscaling policy.
//
// NOTE: This feature is designed for indirect use by Elasticsearch Service,
// Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not
// supported.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-autoscaling-get-autoscaling-capacity
GetAutoscalingPolicy autoscaling_get_autoscaling_policy.NewGetAutoscalingPolicy
// Create or update an autoscaling policy.
//
// NOTE: This feature is designed for indirect use by Elasticsearch Service,
// Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not
// supported.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-autoscaling-put-autoscaling-policy
PutAutoscalingPolicy autoscaling_put_autoscaling_policy.NewPutAutoscalingPolicy
}
type Capabilities struct {
// Checks if the specified combination of method, API, parameters, and arbitrary
// capabilities are supported
// https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/README.asciidoc#require-or-skip-api-capabilities
Capabilities capabilities.NewCapabilities
}
type Cat struct {
// Get aliases.
//
// Get the cluster's index aliases, including filter and routing information.
// This API does not return data stream aliases.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the command
// line or the Kibana console. They are not intended for use by applications.
// For application consumption, use the aliases API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-aliases
Aliases cat_aliases.NewAliases
// Get shard allocation information.
//
// Get a snapshot of the number of shards allocated to each data node and their
// disk space.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-allocation
Allocation cat_allocation.NewAllocation
// Get component templates.
//
// Get information about component templates in a cluster.
// Component templates are building blocks for constructing index templates that
// specify index mappings, settings, and aliases.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the command
// line or Kibana console.
// They are not intended for use by applications. For application consumption,
// use the get component template API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-component-templates
ComponentTemplates cat_component_templates.NewComponentTemplates
// Get a document count.
//
// Get quick access to a document count for a data stream, an index, or an
// entire cluster.
// The document count only includes live documents, not deleted documents which
// have not yet been removed by the merge process.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the command
// line or Kibana console.
// They are not intended for use by applications. For application consumption,
// use the count API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-count
Count cat_count.NewCount
// Get field data cache information.
//
// Get the amount of heap memory currently used by the field data cache on every
// data node in the cluster.
//
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console.
// They are not intended for use by applications. For application consumption,
// use the nodes stats API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-fielddata
Fielddata cat_fielddata.NewFielddata
// Get the cluster health status.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the command
// line or Kibana console.
// They are not intended for use by applications. For application consumption,
// use the cluster health API.
// This API is often used to check malfunctioning clusters.
// To help you track cluster health alongside log files and alerting systems,
// the API returns timestamps in two formats:
// `HH:MM:SS`, which is human-readable but includes no date information;
// `Unix epoch time`, which is machine-sortable and includes date information.
// The latter format is useful for cluster recoveries that take multiple days.
// You can use the cat health API to verify cluster health across multiple
// nodes.
// You also can use the API to track the recovery of a large cluster over a
// longer period of time.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-health
Health cat_health.NewHealth
// Get CAT help.
//
// Get help for the CAT APIs.
// https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-cat
Help cat_help.NewHelp
// Get index information.
//
// Get high-level information about indices in a cluster, including backing
// indices for data streams.
//
// Use this request to get the following information for each index in a
// cluster:
// - shard count
// - document count
// - deleted document count
// - primary store size
// - total store size of all shards, including shard replicas
//
// These metrics are retrieved directly from Lucene, which Elasticsearch uses
// internally to power indexing and search. As a result, all document counts
// include hidden nested documents.
// To get an accurate count of Elasticsearch documents, use the cat count or
// count APIs.
//
// CAT APIs are only intended for human consumption using the command line or
// Kibana console.
// They are not intended for use by applications. For application consumption,
// use an index endpoint.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-indices
Indices cat_indices.NewIndices
// Get master node information.
//
// Get information about the master node, including the ID, bound IP address,
// and name.
//
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the nodes info API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-master
Master cat_master.NewMaster
// Get data frame analytics jobs.
//
// Get configuration and usage information about data frame analytics jobs.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the Kibana
// console or command line. They are not intended for use by applications. For
// application consumption, use the get data frame analytics jobs statistics
// API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-ml-data-frame-analytics
MlDataFrameAnalytics cat_ml_data_frame_analytics.NewMlDataFrameAnalytics
// Get datafeeds.
//
// Get configuration and usage information about datafeeds.
// This API returns a maximum of 10,000 datafeeds.
// If the Elasticsearch security features are enabled, you must have
// `monitor_ml`, `monitor`, `manage_ml`, or `manage`
// cluster privileges to use this API.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the Kibana
// console or command line. They are not intended for use by applications. For
// application consumption, use the get datafeed statistics API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-ml-datafeeds
MlDatafeeds cat_ml_datafeeds.NewMlDatafeeds
// Get anomaly detection jobs.
//
// Get configuration and usage information for anomaly detection jobs.
// This API returns a maximum of 10,000 jobs.
// If the Elasticsearch security features are enabled, you must have
// `monitor_ml`,
// `monitor`, `manage_ml`, or `manage` cluster privileges to use this API.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the Kibana
// console or command line. They are not intended for use by applications. For
// application consumption, use the get anomaly detection job statistics API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-ml-jobs
MlJobs cat_ml_jobs.NewMlJobs
// Get trained models.
//
// Get configuration and usage information about inference trained models.
//
// IMPORTANT: CAT APIs are only intended for human consumption using the Kibana
// console or command line. They are not intended for use by applications. For
// application consumption, use the get trained models statistics API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-ml-trained-models
MlTrainedModels cat_ml_trained_models.NewMlTrainedModels
// Get node attribute information.
//
// Get information about custom node attributes.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the nodes info API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-nodeattrs
Nodeattrs cat_nodeattrs.NewNodeattrs
// Get node information.
//
// Get information about the nodes in a cluster.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the nodes info API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-nodes
Nodes cat_nodes.NewNodes
// Get pending task information.
//
// Get information about cluster-level changes that have not yet taken effect.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the pending cluster tasks API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-pending-tasks
PendingTasks cat_pending_tasks.NewPendingTasks
// Get plugin information.
//
// Get a list of plugins running on each node of a cluster.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the nodes info API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-plugins
Plugins cat_plugins.NewPlugins
// Get shard recovery information.
//
// Get information about ongoing and completed shard recoveries.
// Shard recovery is the process of initializing a shard copy, such as restoring
// a primary shard from a snapshot or syncing a replica shard from a primary
// shard. When a shard recovery completes, the recovered shard is available for
// search and indexing.
// For data streams, the API returns information about the stream’s backing
// indices.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the index recovery API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-recovery
Recovery cat_recovery.NewRecovery
// Get snapshot repository information.
//
// Get a list of snapshot repositories for a cluster.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the get snapshot repository API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-repositories
Repositories cat_repositories.NewRepositories
// Get segment information.
//
// Get low-level information about the Lucene segments in index shards.
// For data streams, the API returns information about the backing indices.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the index segments API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-segments
Segments cat_segments.NewSegments
// Get shard information.
//
// Get information about the shards in a cluster.
// For data streams, the API returns information about the backing indices.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-shards
Shards cat_shards.NewShards
// Get snapshot information.
//
// Get information about the snapshots stored in one or more repositories.
// A snapshot is a backup of an index or running Elasticsearch cluster.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the get snapshot API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-snapshots
Snapshots cat_snapshots.NewSnapshots
// Get task information.
//
// Get information about tasks currently running in the cluster.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the task management API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-tasks
Tasks cat_tasks.NewTasks
// Get index template information.
//
// Get information about the index templates in a cluster.
// You can use index templates to apply index settings and field mappings to new
// indices at creation.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the get index template API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-templates
Templates cat_templates.NewTemplates
// Get thread pool statistics.
//
// Get thread pool statistics for each node in a cluster.
// Returned information includes all built-in thread pools and custom thread
// pools.
// IMPORTANT: cat APIs are only intended for human consumption using the command
// line or Kibana console. They are not intended for use by applications. For
// application consumption, use the nodes info API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-thread-pool
ThreadPool cat_thread_pool.NewThreadPool
// Get transform information.
//
// Get configuration and usage information about transforms.
//
// CAT APIs are only intended for human consumption using the Kibana
// console or command line. They are not intended for use by applications. For
// application consumption, use the get transform statistics API.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cat-transforms
Transforms cat_transforms.NewTransforms
}
type Ccr struct {
// Delete auto-follow patterns.
//
// Delete a collection of cross-cluster replication auto-follow patterns.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-delete-auto-follow-pattern
DeleteAutoFollowPattern ccr_delete_auto_follow_pattern.NewDeleteAutoFollowPattern
// Create a follower.
// Create a cross-cluster replication follower index that follows a specific
// leader index.
// When the API returns, the follower index exists and cross-cluster replication
// starts replicating operations from the leader index to the follower index.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-follow
Follow ccr_follow.NewFollow
// Get follower information.
//
// Get information about all cross-cluster replication follower indices.
// For example, the results include follower index names, leader index names,
// replication options, and whether the follower indices are active or paused.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-follow-info
FollowInfo ccr_follow_info.NewFollowInfo
// Get follower stats.
//
// Get cross-cluster replication follower stats.
// The API returns shard-level stats about the "following tasks" associated with
// each shard for the specified indices.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-follow-stats
FollowStats ccr_follow_stats.NewFollowStats
// Forget a follower.
// Remove the cross-cluster replication follower retention leases from the
// leader.
//
// A following index takes out retention leases on its leader index.
// These leases are used to increase the likelihood that the shards of the
// leader index retain the history of operations that the shards of the
// following index need to run replication.
// When a follower index is converted to a regular index by the unfollow API
// (either by directly calling the API or by index lifecycle management tasks),
// these leases are removed.
// However, removal of the leases can fail, for example when the remote cluster
// containing the leader index is unavailable.
// While the leases will eventually expire on their own, their extended
// existence can cause the leader index to hold more history than necessary and
// prevent index lifecycle management from performing some operations on the
// leader index.
// This API exists to enable manually removing the leases when the unfollow API
// is unable to do so.
//
// NOTE: This API does not stop replication by a following index. If you use
// this API with a follower index that is still actively following, the
// following index will add back retention leases on the leader.
// The only purpose of this API is to handle the case of failure to remove the
// following retention leases after the unfollow API is invoked.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-forget-follower
ForgetFollower ccr_forget_follower.NewForgetFollower
// Get auto-follow patterns.
//
// Get cross-cluster replication auto-follow patterns.
// https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-ccr-get-auto-follow-pattern-1
GetAutoFollowPattern ccr_get_auto_follow_pattern.NewGetAutoFollowPattern
// Pause an auto-follow pattern.
//
// Pause a cross-cluster replication auto-follow pattern.
// When the API returns, the auto-follow pattern is inactive.
// New indices that are created on the remote cluster and match the auto-follow
// patterns are ignored.
//