-
Notifications
You must be signed in to change notification settings - Fork 627
/
Copy pathapi._.go
2900 lines (2816 loc) · 182 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/5fb8f1ce9c4605abcaa44aa0f17dbfc60497a757
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_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"
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_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_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_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_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_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_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"
inference_delete_model "github.com/elastic/go-elasticsearch/v8/typedapi/inference/deletemodel"
inference_get_model "github.com/elastic/go-elasticsearch/v8/typedapi/inference/getmodel"
inference_inference "github.com/elastic/go-elasticsearch/v8/typedapi/inference/inference"
inference_put_model "github.com/elastic/go-elasticsearch/v8/typedapi/inference/putmodel"
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_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_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"
query_ruleset_delete "github.com/elastic/go-elasticsearch/v8/typedapi/queryruleset/delete"
query_ruleset_get "github.com/elastic/go-elasticsearch/v8/typedapi/queryruleset/get"
query_ruleset_list "github.com/elastic/go-elasticsearch/v8/typedapi/queryruleset/list"
query_ruleset_put "github.com/elastic/go-elasticsearch/v8/typedapi/queryruleset/put"
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_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_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_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_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_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_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"
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"
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_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_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 {
// 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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
Delete async_search_delete.NewDelete
// Retrieves the results of a previously submitted async search request given
// its ID.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
Get async_search_get.NewGet
// Retrieves the status of a previously submitted async search request given its
// ID.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
Status async_search_status.NewStatus
// Executes a search request asynchronously.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-delete-autoscaling-policy.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html
GetAutoscalingCapacity autoscaling_get_autoscaling_capacity.NewGetAutoscalingCapacity
// Retrieves an autoscaling policy. Designed for indirect use by ECE/ESS and
// ECK. Direct use is not supported.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-put-autoscaling-policy.html
PutAutoscalingPolicy autoscaling_put_autoscaling_policy.NewPutAutoscalingPolicy
}
type Cat struct {
// Shows information about currently configured aliases to indices including
// filter and routing infos.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-alias.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-allocation.html
Allocation cat_allocation.NewAllocation
// Returns information about existing component_templates templates.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-component-templates.html
ComponentTemplates cat_component_templates.NewComponentTemplates
// Provides quick access to the document count of the entire cluster, or
// individual indices.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-count.html
Count cat_count.NewCount
// Shows how much heap memory is currently being used by fielddata on every data
// node in the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-fielddata.html
Fielddata cat_fielddata.NewFielddata
// Returns a concise representation of the cluster health.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-health.html
Health cat_health.NewHealth
// Returns help for the Cat APIs.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat.html
Help cat_help.NewHelp
// Returns information about indices: number of primaries and replicas, document
// counts, disk size, ...
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-indices.html
Indices cat_indices.NewIndices
// Returns information about the master node.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-master.html
Master cat_master.NewMaster
// Gets configuration and usage information about data frame analytics jobs.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html
MlDataFrameAnalytics cat_ml_data_frame_analytics.NewMlDataFrameAnalytics
// Gets configuration and usage information about datafeeds.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html
MlDatafeeds cat_ml_datafeeds.NewMlDatafeeds
// Gets configuration and usage information about anomaly detection jobs.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-anomaly-detectors.html
MlJobs cat_ml_jobs.NewMlJobs
// Gets configuration and usage information about inference trained models.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-trained-model.html
MlTrainedModels cat_ml_trained_models.NewMlTrainedModels
// Returns information about custom node attributes.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-nodeattrs.html
Nodeattrs cat_nodeattrs.NewNodeattrs
// Returns basic statistics about performance of cluster nodes.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-nodes.html
Nodes cat_nodes.NewNodes
// Returns a concise representation of the cluster pending tasks.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-pending-tasks.html
PendingTasks cat_pending_tasks.NewPendingTasks
// Returns information about installed plugins across nodes node.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-plugins.html
Plugins cat_plugins.NewPlugins
// Returns information about index shard recoveries, both on-going completed.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-recovery.html
Recovery cat_recovery.NewRecovery
// Returns information about snapshot repositories registered in the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-repositories.html
Repositories cat_repositories.NewRepositories
// Provides low-level information about the segments in the shards of an index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-segments.html
Segments cat_segments.NewSegments
// Provides a detailed view of shard allocation on nodes.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-shards.html
Shards cat_shards.NewShards
// Returns all snapshots in a specific repository.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-snapshots.html
Snapshots cat_snapshots.NewSnapshots
// Returns information about the tasks currently executing on one or more nodes
// in the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html
Tasks cat_tasks.NewTasks
// Returns information about existing templates.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-templates.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-thread-pool.html
ThreadPool cat_thread_pool.NewThreadPool
// Gets configuration and usage information about transforms.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-transforms.html
Transforms cat_transforms.NewTransforms
}
type Ccr struct {
// Deletes auto-follow patterns.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-delete-auto-follow-pattern.html
DeleteAutoFollowPattern ccr_delete_auto_follow_pattern.NewDeleteAutoFollowPattern
// Creates a new follower index configured to follow the referenced leader
// index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-follow.html
Follow ccr_follow.NewFollow
// Retrieves information about all follower indices, including parameters and
// status for each follower index
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-info.html
FollowInfo ccr_follow_info.NewFollowInfo
// Retrieves follower stats. return shard-level stats about the following tasks
// associated with each shard for the specified indices.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-follow-stats.html
FollowStats ccr_follow_stats.NewFollowStats
// Removes the follower retention leases from the leader.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-forget-follower.html
ForgetFollower ccr_forget_follower.NewForgetFollower
// Gets configured auto-follow patterns. Returns the specified auto-follow
// pattern collection.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-auto-follow-pattern.html
GetAutoFollowPattern ccr_get_auto_follow_pattern.NewGetAutoFollowPattern
// Pauses an auto-follow pattern
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-pause-auto-follow-pattern.html
PauseAutoFollowPattern ccr_pause_auto_follow_pattern.NewPauseAutoFollowPattern
// Pauses a follower index. The follower index will not fetch any additional
// operations from the leader index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-pause-follow.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-put-auto-follow-pattern.html
PutAutoFollowPattern ccr_put_auto_follow_pattern.NewPutAutoFollowPattern
// Resumes an auto-follow pattern that has been paused
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-resume-auto-follow-pattern.html
ResumeAutoFollowPattern ccr_resume_auto_follow_pattern.NewResumeAutoFollowPattern
// Resumes a follower index that has been paused
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-resume-follow.html
ResumeFollow ccr_resume_follow.NewResumeFollow
// Gets all stats related to cross-cluster replication.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-get-stats.html
Stats ccr_stats.NewStats
// Stops the following task associated with a follower index and removes index
// metadata and settings associated with cross-cluster replication.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ccr-post-unfollow.html
Unfollow ccr_unfollow.NewUnfollow
}
type Cluster struct {
// Provides explanations for shard allocations in the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-allocation-explain.html
AllocationExplain cluster_allocation_explain.NewAllocationExplain
// Deletes a component template
// https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html
DeleteComponentTemplate cluster_delete_component_template.NewDeleteComponentTemplate
// Clears cluster voting config exclusions.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/voting-config-exclusions.html
DeleteVotingConfigExclusions cluster_delete_voting_config_exclusions.NewDeleteVotingConfigExclusions
// Returns information about whether a particular component template exist
// https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html
ExistsComponentTemplate cluster_exists_component_template.NewExistsComponentTemplate
// Returns one or more component templates
// https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html
GetComponentTemplate cluster_get_component_template.NewGetComponentTemplate
// Returns cluster settings.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-get-settings.html
GetSettings cluster_get_settings.NewGetSettings
// Returns basic information about the health of the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-health.html
Health cluster_health.NewHealth
// Returns different information about the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-info.html
Info cluster_info.NewInfo
// Returns a list of any cluster-level changes (e.g. create index, update
// mapping,
// allocate or fail shard) which have not yet been executed.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-pending.html
PendingTasks cluster_pending_tasks.NewPendingTasks
// Updates the cluster voting config exclusions by node ids or node names.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/voting-config-exclusions.html
PostVotingConfigExclusions cluster_post_voting_config_exclusions.NewPostVotingConfigExclusions
// Creates or updates a component template
// https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html
PutComponentTemplate cluster_put_component_template.NewPutComponentTemplate
// Updates the cluster settings.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-update-settings.html
PutSettings cluster_put_settings.NewPutSettings
// Returns the information about configured remote clusters.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-remote-info.html
RemoteInfo cluster_remote_info.NewRemoteInfo
// Allows to manually change the allocation of individual shards in the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-reroute.html
Reroute cluster_reroute.NewReroute
// Returns a comprehensive information about the state of the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-state.html
State cluster_state.NewState
// Returns high-level overview of cluster statistics.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-stats.html
Stats cluster_stats.NewStats
}
type Core struct {
// Allows to perform multiple index/update/delete operations in a single
// request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html
Bulk core_bulk.NewBulk
// Explicitly clears the search context for a scroll.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html
ClearScroll core_clear_scroll.NewClearScroll
// Close a point in time
// https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html
ClosePointInTime core_close_point_in_time.NewClosePointInTime
// Returns number of documents matching a query.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html
Create core_create.NewCreate
// Removes a document from the index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html
Delete core_delete.NewDelete
// Deletes documents matching the provided query.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html
DeleteByQuery core_delete_by_query.NewDeleteByQuery
// Changes the number of requests per second for a particular Delete By Query
// operation.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html
DeleteByQueryRethrottle core_delete_by_query_rethrottle.NewDeleteByQueryRethrottle
// Deletes a script.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html
DeleteScript core_delete_script.NewDeleteScript
// Returns information about whether a document exists in an index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html
Exists core_exists.NewExists
// Returns information about whether a document source exists in an index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html
ExistsSource core_exists_source.NewExistsSource
// Returns information about why a specific matches (or doesn't match) a query.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-explain.html
Explain core_explain.NewExplain
// Returns the information about the capabilities of fields among multiple
// indices.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-field-caps.html
FieldCaps core_field_caps.NewFieldCaps
// Returns a document.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html
Get core_get.NewGet
// Returns a script.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html
GetScript core_get_script.NewGetScript
// Returns all script contexts.
// https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-contexts.html
GetScriptContext core_get_script_context.NewGetScriptContext
// Returns available script types, languages and contexts
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html
GetScriptLanguages core_get_script_languages.NewGetScriptLanguages
// Returns the source of a document.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html
GetSource core_get_source.NewGetSource
// Returns the health of the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/health-api.html
HealthReport core_health_report.NewHealthReport
// Creates or updates a document in an index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html
Index core_index.NewIndex
// Returns basic information about the cluster.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
Info core_info.NewInfo
// Performs a kNN search.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html
KnnSearch core_knn_search.NewKnnSearch
// Allows to get multiple documents in one request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-get.html
Mget core_mget.NewMget
// Allows to execute several search operations in one request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html
Msearch core_msearch.NewMsearch
// Allows to execute several search template operations in one request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html
MsearchTemplate core_msearch_template.NewMsearchTemplate
// Returns multiple termvectors in one request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-termvectors.html
Mtermvectors core_mtermvectors.NewMtermvectors
// Open a point in time that can be used in subsequent searches
// https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html
OpenPointInTime core_open_point_in_time.NewOpenPointInTime
// Returns whether the cluster is running.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
Ping core_ping.NewPing
// Creates or updates a script.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html
PutScript core_put_script.NewPutScript
// Allows to evaluate the quality of ranked search results over a set of typical
// search queries
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-rank-eval.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html
Reindex core_reindex.NewReindex
// Changes the number of requests per second for a particular Reindex operation.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html
ReindexRethrottle core_reindex_rethrottle.NewReindexRethrottle
// Allows to use the Mustache language to pre-render a search definition.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/render-search-template-api.html
RenderSearchTemplate core_render_search_template.NewRenderSearchTemplate
// Allows an arbitrary script to be executed and a result to be returned
// https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-execute-api.html
ScriptsPainlessExecute core_scripts_painless_execute.NewScriptsPainlessExecute
// Allows to retrieve a large numbers of results from a single search request.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-scroll
Scroll core_scroll.NewScroll
// Returns results matching a query.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html
Search core_search.NewSearch
// Searches a vector tile for geospatial values. Returns results as a binary
// Mapbox vector tile.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-vector-tile-api.html
SearchMvt core_search_mvt.NewSearchMvt
// Returns information about the indices and shards that a search request would
// be executed against.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-shards.html
SearchShards core_search_shards.NewSearchShards
// Allows to use the Mustache language to pre-render a search definition.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/search-terms-enum.html
TermsEnum core_terms_enum.NewTermsEnum
// Returns information and statistics about terms in the fields of a particular
// document.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html
Termvectors core_termvectors.NewTermvectors
// Updates a document with a script or partial document.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html
Update core_update.NewUpdate
// Updates documents that match the specified query. If no query is specified,
// performs an update on every document in the index without changing the
// source,
// for example to pick up a mapping change.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html
UpdateByQuery core_update_by_query.NewUpdateByQuery
// Changes the number of requests per second for a particular Update By Query
// operation.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html
UpdateByQueryRethrottle core_update_by_query_rethrottle.NewUpdateByQueryRethrottle
}
type DanglingIndices struct {
// Deletes the specified dangling index
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway-dangling-indices.html
DeleteDanglingIndex dangling_indices_delete_dangling_index.NewDeleteDanglingIndex
// Imports the specified dangling index
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway-dangling-indices.html
ImportDanglingIndex dangling_indices_import_dangling_index.NewImportDanglingIndex
// Returns all dangling indices.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-gateway-dangling-indices.html
ListDanglingIndices dangling_indices_list_dangling_indices.NewListDanglingIndices
}
type Enrich struct {
// Deletes an existing enrich policy and its enrich index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/delete-enrich-policy-api.html
DeletePolicy enrich_delete_policy.NewDeletePolicy
// Creates the enrich index for an existing enrich policy.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/execute-enrich-policy-api.html
ExecutePolicy enrich_execute_policy.NewExecutePolicy
// Gets information about an enrich policy.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/get-enrich-policy-api.html
GetPolicy enrich_get_policy.NewGetPolicy
// Creates a new enrich policy.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/put-enrich-policy-api.html
PutPolicy enrich_put_policy.NewPutPolicy
// Gets enrich coordinator statistics and information about enrich policies that
// are currently executing.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/enrich-stats-api.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html
Delete eql_delete.NewDelete
// Returns async results from previously executed Event Query Language (EQL)
// search
// https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-eql-search-api.html
Get eql_get.NewGet
// Returns the status of a previously submitted async or stored Event Query
// Language (EQL) search
// https://www.elastic.co/guide/en/elasticsearch/reference/current/get-async-eql-status-api.html
GetStatus eql_get_status.NewGetStatus
// Returns results matching a query expressed in Event Query Language (EQL)
// https://www.elastic.co/guide/en/elasticsearch/reference/current/eql-search-api.html
Search eql_search.NewSearch
}
type Esql struct {
// Executes an ESQL request
// https://www.elastic.co/guide/en/elasticsearch/reference/current/esql-rest.html
Query esql_query.NewQuery
}
type Features struct {
// Gets a list of features which can be included in snapshots using the
// feature_states field when creating a snapshot
// https://www.elastic.co/guide/en/elasticsearch/reference/current/get-features-api.html
GetFeatures features_get_features.NewGetFeatures
// Resets the internal state of features, usually by deleting system indices
// https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-snapshots.html
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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/get-global-checkpoints.html
GlobalCheckpoints fleet_global_checkpoints.NewGlobalCheckpoints
// Multi 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.
//
Msearch fleet_msearch.NewMsearch
// Creates a secret stored by Fleet.
//
PostSecret fleet_post_secret.NewPostSecret
// 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.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/graph-explore-api.html
Explore graph_explore.NewExplore
}
type Ilm struct {
// Deletes the specified lifecycle policy definition. A currently used policy
// cannot be deleted.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-delete-lifecycle.html
DeleteLifecycle ilm_delete_lifecycle.NewDeleteLifecycle
// Retrieves information about the index's current lifecycle state, such as the
// currently executing phase, action, and step.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-explain-lifecycle.html
ExplainLifecycle ilm_explain_lifecycle.NewExplainLifecycle
// Returns the specified policy definition. Includes the policy version and last
// modified date.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-get-lifecycle.html
GetLifecycle ilm_get_lifecycle.NewGetLifecycle
// Retrieves the current index lifecycle management (ILM) status.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-get-status.html
GetStatus ilm_get_status.NewGetStatus
// Migrates the indices and ILM policies away from custom node attribute
// allocation routing to data tiers routing
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-migrate-to-data-tiers.html
MigrateToDataTiers ilm_migrate_to_data_tiers.NewMigrateToDataTiers
// Manually moves an index into the specified step and executes that step.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-move-to-step.html
MoveToStep ilm_move_to_step.NewMoveToStep
// Creates a lifecycle policy
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-put-lifecycle.html
PutLifecycle ilm_put_lifecycle.NewPutLifecycle
// Removes the assigned lifecycle policy and stops managing the specified index
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-remove-policy.html
RemovePolicy ilm_remove_policy.NewRemovePolicy
// Retries executing the policy for an index that is in the ERROR step.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-retry-policy.html
Retry ilm_retry.NewRetry
// Start the index lifecycle management (ILM) plugin.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-start.html
Start ilm_start.NewStart
// Halts all lifecycle management operations and stops the index lifecycle
// management (ILM) plugin
// https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-stop.html
Stop ilm_stop.NewStop
}
type Indices struct {
// Adds a block to an index.
// https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-blocks.html
AddBlock indices_add_block.NewAddBlock
// Performs the analysis process on a text and return the tokens breakdown of
// the text.