diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/CommonStatsFlag.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/CommonStatsFlag.java
index 776f9a188c..0d1be7721b 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/CommonStatsFlag.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/CommonStatsFlag.java
@@ -45,48 +45,123 @@
*/
@JsonpDeserializable
public enum CommonStatsFlag implements JsonEnum {
+ /**
+ * Return all statistics.
+ */
All("_all"),
+ /**
+ * Size of the index in byte units.
+ */
Store("store"),
+ /**
+ * Indexing statistics.
+ */
Indexing("indexing"),
+ /**
+ * Get statistics, including missing stats.
+ */
Get("get"),
+ /**
+ * Search statistics including suggest statistics. You can include statistics
+ * for custom groups by adding an extra groups parameter (search
+ * operations can be associated with one or more groups). The
+ * groups parameter accepts a comma-separated list of group names.
+ * Use _all to return statistics for all groups.
+ */
Search("search"),
+ /**
+ * Merge statistics.
+ */
Merge("merge"),
+ /**
+ * Flush statistics.
+ */
Flush("flush"),
+ /**
+ * Refresh statistics.
+ */
Refresh("refresh"),
+ /**
+ * Query cache statistics.
+ */
QueryCache("query_cache"),
+ /**
+ * Fielddata statistics.
+ */
Fielddata("fielddata"),
+ /**
+ * Number of documents and deleted docs not yet merged out. Index refreshes can
+ * affect this statistic.
+ */
Docs("docs"),
+ /**
+ * Index warming statistics.
+ */
Warmer("warmer"),
+ /**
+ * Completion suggester statistics.
+ */
Completion("completion"),
+ /**
+ * Memory use of all open segments. If the
+ * include_segment_file_sizes parameter is true, this
+ * metric includes the aggregated disk usage of each Lucene index file.
+ */
Segments("segments"),
+ /**
+ * Translog statistics.
+ */
Translog("translog"),
+ /**
+ * Shard request cache statistics.
+ */
RequestCache("request_cache"),
+ /**
+ * Recovery statistics.
+ */
Recovery("recovery"),
+ /**
+ * Bulk operations statistics.
+ */
Bulk("bulk"),
+ /**
+ * Shard statistics, including the total number of shards.
+ */
ShardStats("shard_stats"),
+ /**
+ * Mapping statistics, including the total count and estimated overhead.
+ */
Mappings("mappings"),
+ /**
+ * Total number of dense vectors indexed. Index refreshes can affect this
+ * statistic.
+ */
DenseVector("dense_vector"),
+ /**
+ * Total number of sparse vectors indexed. Index refreshes can affect this
+ * statistic.
+ */
SparseVector("sparse_vector"),
;
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/ThreadType.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/ThreadType.java
index 8bebef17c6..d5ef7198a0 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/ThreadType.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/ThreadType.java
@@ -45,14 +45,29 @@
*/
@JsonpDeserializable
public enum ThreadType implements JsonEnum {
+ /**
+ * Threads that consume the most CPU time.
+ */
Cpu("cpu"),
+ /**
+ * Threads that have been in a waiting state the longest.
+ */
Wait("wait"),
+ /**
+ * Threads that have been blocked the longest.
+ */
Block("block"),
+ /**
+ * Threads that consume the most GPU time.
+ */
Gpu("gpu"),
+ /**
+ * Threads that allocate the most memory.
+ */
Mem("mem"),
;
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CountRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CountRequest.java
index 5124f365e3..165aa82337 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CountRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CountRequest.java
@@ -70,6 +70,10 @@
* 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.
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
@@ -560,6 +583,17 @@ public CompletableFuture
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
@@ -598,6 +632,17 @@ public final CompletableFuture
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java
index e342ca5c89..3a767efde9 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatClient.java
@@ -281,6 +281,10 @@ public ComponentTemplatesResponse componentTemplates() throws IOException, Elast
* 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.
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Starting in Elasticsearch 9.3.0, this endpoint also supports the
+ *
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
@@ -563,6 +586,17 @@ public IndicesResponse indices(IndicesRequest request) throws IOException, Elast
* include hidden nested documents. To get an accurate count of Elasticsearch
* documents, use the cat count or count APIs.
*
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
@@ -601,6 +635,17 @@ public final IndicesResponse indices(Function
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/IndicesRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/IndicesRequest.java
index 282e782372..34f5663ea8 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/IndicesRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/IndicesRequest.java
@@ -83,6 +83,17 @@
* include hidden nested documents. To get an accurate count of Elasticsearch
* documents, use the cat count or count APIs.
*
+ * NOTE: Storage metrics reported by this API reflect the post-compression size
+ * of the indices on disk. Because these values are calculated after
+ * Elasticsearch compresses the data and processes deletions, they are typically
+ * significantly smaller than the raw, uncompressed data volume ingested.
+ *
+ * IMPORTANT: For Elastic Cloud Serverless, ingest billing is based on the raw,
+ * uncompressed data volume, not the post-compression metrics reported here. To
+ * learn more, refer to Elasticsearch
+ * billing dimensions.
+ *
* 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.
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/state/ClusterStateMetric.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/state/ClusterStateMetric.java
index 80c6b5a0ff..6e414b3f72 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/state/ClusterStateMetric.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/state/ClusterStateMetric.java
@@ -46,22 +46,54 @@
*/
@JsonpDeserializable
public enum ClusterStateMetric implements JsonEnum {
+ /**
+ * Shows all metrics.
+ */
All("_all"),
+ /**
+ * Shows the cluster state version.
+ */
Version("version"),
+ /**
+ * Shows the elected
* API name: {@code result}
*/
@@ -475,8 +476,9 @@ public final Builder primaryTerm(@Nullable Long value) {
}
/**
- * The result of the operation. Successful values are
* API name: {@code result}
*/
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html b/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html
index 2d1582f40e..c5a60e6e29 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html
@@ -11,7 +11,7 @@
'_global.bulk.OperationBase': '_global/bulk/types.ts#L99-L116',
'_global.bulk.OperationContainer': '_global/bulk/types.ts#L157-L179',
'_global.bulk.OperationType': '_global/bulk/types.ts#L92-L97',
-'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L33-L256',
+'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L33-L257',
'_global.bulk.Response': '_global/bulk/BulkResponse.ts#L24-L45',
'_global.bulk.ResponseItem': '_global/bulk/types.ts#L36-L83',
'_global.bulk.UpdateAction': '_global/bulk/types.ts#L181-L216',
@@ -21,19 +21,19 @@
'_global.clear_scroll.Response': '_global/clear_scroll/ClearScrollResponse.ts#L22-L43',
'_global.close_point_in_time.Request': '_global/close_point_in_time/ClosePointInTimeRequest.ts#L23-L51',
'_global.close_point_in_time.Response': '_global/close_point_in_time/ClosePointInTimeResponse.ts#L22-L42',
-'_global.count.Request': '_global/count/CountRequest.ts#L32-L175',
+'_global.count.Request': '_global/count/CountRequest.ts#L32-L176',
'_global.count.Response': '_global/count/CountResponse.ts#L23-L25',
-'_global.create.Request': '_global/create/CreateRequest.ts#L33-L202',
+'_global.create.Request': '_global/create/CreateRequest.ts#L33-L203',
'_global.create.Response': '_global/create/CreateResponse.ts#L22-L25',
'_global.delete.Request': '_global/delete/DeleteRequest.ts#L35-L148',
'_global.delete.Response': '_global/delete/DeleteResponse.ts#L22-L36',
-'_global.delete_by_query.Request': '_global/delete_by_query/DeleteByQueryRequest.ts#L38-L323',
+'_global.delete_by_query.Request': '_global/delete_by_query/DeleteByQueryRequest.ts#L38-L325',
'_global.delete_by_query.Response': '_global/delete_by_query/DeleteByQueryResponse.ts#L27-L93',
'_global.delete_by_query_rethrottle.Request': '_global/delete_by_query_rethrottle/DeleteByQueryRethrottleRequest.ts#L24-L56',
'_global.delete_by_query_rethrottle.Response': '_global/delete_by_query_rethrottle/DeleteByQueryRethrottleResponse.ts#L22-L25',
'_global.delete_script.Request': '_global/delete_script/DeleteScriptRequest.ts#L24-L65',
'_global.delete_script.Response': '_global/delete_script/DeleteScriptResponse.ts#L22-L25',
-'_global.exists.Request': '_global/exists/DocumentExistsRequest.ts#L32-L138',
+'_global.exists.Request': '_global/exists/DocumentExistsRequest.ts#L32-L139',
'_global.exists_source.Request': '_global/exists_source/SourceExistsRequest.ts#L32-L115',
'_global.explain.Explanation': '_global/explain/types.ts#L22-L26',
'_global.explain.ExplanationDetail': '_global/explain/types.ts#L28-L32',
@@ -90,7 +90,7 @@
'_global.health_report.SlmIndicatorDetails': '_global/health_report/types.ts#L181-L185',
'_global.health_report.SlmIndicatorUnhealthyPolicies': '_global/health_report/types.ts#L187-L190',
'_global.health_report.StagnatingBackingIndices': '_global/health_report/types.ts#L159-L163',
-'_global.index.Request': '_global/index/IndexRequest.ts#L36-L278',
+'_global.index.Request': '_global/index/IndexRequest.ts#L36-L279',
'_global.index.Response': '_global/index/IndexResponse.ts#L22-L25',
'_global.info.Request': '_global/info/RootNodeInfoRequest.ts#L23-L43',
'_global.info.Response': '_global/info/RootNodeInfoResponse.ts#L23-L40',
@@ -105,14 +105,14 @@
'_global.msearch.Request': '_global/msearch/MultiSearchRequest.ts#L32-L162',
'_global.msearch.Response': '_global/msearch/MultiSearchResponse.ts#L25-L28',
'_global.msearch.ResponseItem': '_global/msearch/types.ts#L60-L63',
-'_global.msearch_template.Request': '_global/msearch_template/MultiSearchTemplateRequest.ts#L25-L130',
+'_global.msearch_template.Request': '_global/msearch_template/MultiSearchTemplateRequest.ts#L25-L131',
'_global.msearch_template.Response': '_global/msearch_template/MultiSearchTemplateResponse.ts#L22-L33',
'_global.msearch_template.TemplateConfig': '_global/msearch_template/types.ts#L29-L55',
'_global.mtermvectors.Operation': '_global/mtermvectors/types.ts#L35-L94',
'_global.mtermvectors.Request': '_global/mtermvectors/MultiTermVectorsRequest.ts#L32-L140',
'_global.mtermvectors.Response': '_global/mtermvectors/MultiTermVectorsResponse.ts#L22-L24',
'_global.mtermvectors.TermVectorsResult': '_global/mtermvectors/types.ts#L96-L104',
-'_global.open_point_in_time.Request': '_global/open_point_in_time/OpenPointInTimeRequest.ts#L32-L150',
+'_global.open_point_in_time.Request': '_global/open_point_in_time/OpenPointInTimeRequest.ts#L32-L151',
'_global.open_point_in_time.Response': '_global/open_point_in_time/OpenPointInTimeResponse.ts#L23-L29',
'_global.ping.Request': '_global/ping/PingRequest.ts#L23-L41',
'_global.put_script.Request': '_global/put_script/PutScriptRequest.ts#L25-L90',
@@ -131,7 +131,7 @@
'_global.rank_eval.RankEvalMetricRecall': '_global/rank_eval/types.ts#L54-L58',
'_global.rank_eval.RankEvalQuery': '_global/rank_eval/types.ts#L111-L117',
'_global.rank_eval.RankEvalRequestItem': '_global/rank_eval/types.ts#L98-L109',
-'_global.rank_eval.Request': '_global/rank_eval/RankEvalRequest.ts#L24-L85',
+'_global.rank_eval.Request': '_global/rank_eval/RankEvalRequest.ts#L24-L86',
'_global.rank_eval.Response': '_global/rank_eval/RankEvalResponse.ts#L26-L34',
'_global.rank_eval.UnratedDocument': '_global/rank_eval/types.ts#L150-L153',
'_global.reindex.Destination': '_global/reindex/types.ts#L38-L66',
@@ -151,7 +151,7 @@
'_global.scripts_painless_execute.Response': '_global/scripts_painless_execute/ExecutePainlessScriptResponse.ts#L20-L24',
'_global.scroll.Request': '_global/scroll/ScrollRequest.ts#L24-L96',
'_global.scroll.Response': '_global/scroll/ScrollResponse.ts#L22-L25',
-'_global.search.Request': '_global/search/SearchRequest.ts#L55-L611',
+'_global.search.Request': '_global/search/SearchRequest.ts#L55-L619',
'_global.search.Response': '_global/search/SearchResponse.ts#L34-L37',
'_global.search.ResponseBody': '_global/search/SearchResponse.ts#L39-L85',
'_global.search._types.AggregationBreakdown': '_global/search/_types/profile.ts#L26-L39',
@@ -210,7 +210,7 @@
'_global.search._types.ScoreMode': '_global/search/_types/rescoring.ts#L67-L89',
'_global.search._types.ScriptRescore': '_global/search/_types/rescoring.ts#L102-L104',
'_global.search._types.SearchProfile': '_global/search/_types/profile.ts#L136-L140',
-'_global.search._types.SearchRequestBody': '_global/search/_types/SearchRequestBody.ts#L42-L242',
+'_global.search._types.SearchRequestBody': '_global/search/_types/SearchRequestBody.ts#L42-L248',
'_global.search._types.ShardProfile': '_global/search/_types/profile.ts#L142-L152',
'_global.search._types.SmoothingModelContainer': '_global/search/_types/suggester.ts#L436-L452',
'_global.search._types.SourceConfig': '_global/search/_types/SourceFilter.ts#L50-L54',
@@ -234,17 +234,17 @@
'_global.search_mvt.Response': '_global/search_mvt/SearchMvtResponse.ts#L22-L25',
'_global.search_mvt._types.GridAggregationType': '_global/search_mvt/_types/GridType.ts#L30-L33',
'_global.search_mvt._types.GridType': '_global/search_mvt/_types/GridType.ts#L20-L28',
-'_global.search_shards.Request': '_global/search_shards/SearchShardsRequest.ts#L24-L100',
+'_global.search_shards.Request': '_global/search_shards/SearchShardsRequest.ts#L24-L101',
'_global.search_shards.Response': '_global/search_shards/SearchShardsResponse.ts#L34-L40',
'_global.search_shards.SearchShardsNodeAttributes': '_global/search_shards/SearchShardsResponse.ts#L42-L60',
'_global.search_shards.ShardStoreIndex': '_global/search_shards/SearchShardsResponse.ts#L62-L65',
-'_global.search_template.Request': '_global/search_template/SearchTemplateRequest.ts#L35-L172',
+'_global.search_template.Request': '_global/search_template/SearchTemplateRequest.ts#L35-L173',
'_global.search_template.Response': '_global/search_template/SearchTemplateResponse.ts#L30-L48',
'_global.terms_enum.Request': '_global/terms_enum/TermsEnumRequest.ts#L26-L95',
'_global.terms_enum.Response': '_global/terms_enum/TermsEnumResponse.ts#L22-L32',
'_global.termvectors.FieldStatistics': '_global/termvectors/types.ts#L28-L32',
'_global.termvectors.Filter': '_global/termvectors/types.ts#L49-L86',
-'_global.termvectors.Request': '_global/termvectors/TermVectorsRequest.ts#L34-L244',
+'_global.termvectors.Request': '_global/termvectors/TermVectorsRequest.ts#L34-L246',
'_global.termvectors.Response': '_global/termvectors/TermVectorsResponse.ts#L25-L34',
'_global.termvectors.Term': '_global/termvectors/types.ts#L34-L40',
'_global.termvectors.TermVector': '_global/termvectors/types.ts#L23-L26',
@@ -252,7 +252,7 @@
'_global.update.Request': '_global/update/UpdateRequest.ts#L39-L199',
'_global.update.Response': '_global/update/UpdateResponse.ts#L27-L30',
'_global.update.UpdateWriteResponseBase': '_global/update/UpdateResponse.ts#L23-L25',
-'_global.update_by_query.Request': '_global/update_by_query/UpdateByQueryRequest.ts#L38-L357',
+'_global.update_by_query.Request': '_global/update_by_query/UpdateByQueryRequest.ts#L38-L359',
'_global.update_by_query.Response': '_global/update_by_query/UpdateByQueryResponse.ts#L27-L76',
'_global.update_by_query_rethrottle.Request': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleRequest.ts#L24-L56',
'_global.update_by_query_rethrottle.Response': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleResponse.ts#L23-L25',
@@ -265,10 +265,10 @@
'_types.CartesianPoint': '_types/Geo.ts#L125-L128',
'_types.ChunkRescorer': '_types/Retriever.ts#L205-L210',
'_types.ClusterDetails': '_types/Stats.ts#L45-L52',
-'_types.ClusterInfoTarget': '_types/common.ts#L398-L404',
+'_types.ClusterInfoTarget': '_types/common.ts#L403-L409',
'_types.ClusterSearchStatus': '_types/Stats.ts#L37-L43',
'_types.ClusterStatistics': '_types/Stats.ts#L27-L35',
-'_types.CommonStatsFlag': '_types/common.ts#L408-L431',
+'_types.CommonStatsFlag': '_types/common.ts#L413-L467',
'_types.CompletionStats': '_types/Stats.ts#L83-L93',
'_types.Conflicts': '_types/common.ts#L178-L187',
'_types.CoordsGeoBounds': '_types/Geo.ts#L153-L158',
@@ -306,13 +306,13 @@
'_types.IBDistribution': '_types/Similarity.ts#L42-L45',
'_types.IBLambda': '_types/Similarity.ts#L47-L50',
'_types.IndexingStats': '_types/Stats.ts#L168-L186',
-'_types.IndicesOptions': '_types/common.ts#L352-L379',
+'_types.IndicesOptions': '_types/common.ts#L357-L384',
'_types.IndicesResponseBase': '_types/Base.ts#L146-L148',
-'_types.InlineGet': '_types/common.ts#L337-L350',
+'_types.InlineGet': '_types/common.ts#L342-L355',
'_types.InnerRetriever': '_types/Retriever.ts#L88-L92',
-'_types.KnnQuery': '_types/Knn.ts#L73-L103',
+'_types.KnnQuery': '_types/Knn.ts#L74-L104',
'_types.KnnRetriever': '_types/Retriever.ts#L118-L143',
-'_types.KnnSearch': '_types/Knn.ts#L35-L71',
+'_types.KnnSearch': '_types/Knn.ts#L35-L72',
'_types.LatLonGeoLocation': '_types/Geo.ts#L114-L123',
'_types.Level': '_types/common.ts#L260-L264',
'_types.LifecycleOperationMode': '_types/Lifecycle.ts#L20-L24',
@@ -329,12 +329,12 @@
'_types.PinnedRetriever': '_types/Retriever.ts#L80-L86',
'_types.PluginStats': '_types/Stats.ts#L207-L217',
'_types.QueryCacheStats': '_types/Stats.ts#L219-L253',
-'_types.QueryVectorBuilder': '_types/Knn.ts#L105-L108',
+'_types.QueryVectorBuilder': '_types/Knn.ts#L106-L109',
'_types.RRFRetriever': '_types/Retriever.ts#L164-L173',
'_types.RRFRetrieverComponent': '_types/Retriever.ts#L145-L156',
'_types.RRFRetrieverEntry': '_types/Retriever.ts#L158-L162',
-'_types.RankBase': '_types/Rank.ts#L30-L30',
-'_types.RankContainer': '_types/Rank.ts#L22-L28',
+'_types.RankBase': '_types/Rank.ts#L33-L33',
+'_types.RankContainer': '_types/Rank.ts#L22-L31',
'_types.RecoveryStats': '_types/Stats.ts#L255-L260',
'_types.Refresh': '_types/common.ts#L283-L290',
'_types.RefreshStats': '_types/Stats.ts#L262-L269',
@@ -348,7 +348,7 @@
'_types.Retries': '_types/Retries.ts#L22-L31',
'_types.RetrieverBase': '_types/Retriever.ts#L56-L63',
'_types.RetrieverContainer': '_types/Retriever.ts#L29-L54',
-'_types.RrfRank': '_types/Rank.ts#L32-L37',
+'_types.RrfRank': '_types/Rank.ts#L35-L40',
'_types.RuleRetriever': '_types/Retriever.ts#L194-L203',
'_types.ScoreNormalizer': '_types/Retriever.ts#L94-L98',
'_types.ScoreSort': '_types/sort.ts#L54-L56',
@@ -367,8 +367,8 @@
'_types.ShardStatistics': '_types/Stats.ts#L54-L69',
'_types.ShardsOperationResponseBase': '_types/Base.ts#L150-L153',
'_types.SlicedScroll': '_types/SlicedScroll.ts#L23-L27',
-'_types.Slices': '_types/common.ts#L381-L386',
-'_types.SlicesCalculation': '_types/common.ts#L388-L396',
+'_types.Slices': '_types/common.ts#L386-L391',
+'_types.SlicesCalculation': '_types/common.ts#L393-L401',
'_types.SortMode': '_types/sort.ts#L108-L117',
'_types.SortOptions': '_types/sort.ts#L86-L96',
'_types.SortOrder': '_types/sort.ts#L119-L128',
@@ -378,9 +378,9 @@
'_types.StoredScript': '_types/Scripting.ts#L51-L63',
'_types.SuggestMode': '_types/common.ts#L299-L312',
'_types.TaskFailure': '_types/Errors.ts#L71-L76',
-'_types.TextEmbedding': '_types/Knn.ts#L110-L119',
+'_types.TextEmbedding': '_types/Knn.ts#L111-L120',
'_types.TextSimilarityReranker': '_types/Retriever.ts#L175-L192',
-'_types.ThreadType': '_types/common.ts#L314-L320',
+'_types.ThreadType': '_types/common.ts#L314-L325',
'_types.TimeUnit': '_types/Time.ts#L70-L78',
'_types.TokenPruningConfig': '_types/TokenPruningConfig.ts#L22-L38',
'_types.TopLeftBottomRightGeoBounds': '_types/Geo.ts#L160-L163',
@@ -388,9 +388,9 @@
'_types.TransformContainer': '_types/Transform.ts#L28-L35',
'_types.TranslogStats': '_types/Stats.ts#L427-L435',
'_types.VersionType': '_types/common.ts#L102-L117',
-'_types.WaitForActiveShardOptions': '_types/common.ts#L322-L326',
+'_types.WaitForActiveShardOptions': '_types/common.ts#L327-L331',
'_types.WaitForActiveShards': '_types/common.ts#L137-L138',
-'_types.WaitForEvents': '_types/common.ts#L328-L335',
+'_types.WaitForEvents': '_types/common.ts#L333-L340',
'_types.WarmerStats': '_types/Stats.ts#L437-L442',
'_types.WktGeoBounds': '_types/Geo.ts#L149-L151',
'_types.WriteResponseBase': '_types/Base.ts#L37-L72',
@@ -987,8 +987,8 @@
'_types.query_dsl.GeoShapeFieldQuery': '_types/query_dsl/geo.ts#L127-L138',
'_types.query_dsl.GeoShapeQuery': '_types/query_dsl/geo.ts#L140-L156',
'_types.query_dsl.GeoValidationMethod': '_types/query_dsl/geo.ts#L172-L182',
-'_types.query_dsl.HasChildQuery': '_types/query_dsl/joining.ts#L41-L79',
-'_types.query_dsl.HasParentQuery': '_types/query_dsl/joining.ts#L81-L110',
+'_types.query_dsl.HasChildQuery': '_types/query_dsl/joining.ts#L41-L80',
+'_types.query_dsl.HasParentQuery': '_types/query_dsl/joining.ts#L82-L112',
'_types.query_dsl.IdsQuery': '_types/query_dsl/term.ts#L88-L96',
'_types.query_dsl.IntervalsAllOf': '_types/query_dsl/fulltext.ts#L50-L70',
'_types.query_dsl.IntervalsAnyOf': '_types/query_dsl/fulltext.ts#L72-L81',
@@ -1012,11 +1012,11 @@
'_types.query_dsl.MoreLikeThisQuery': '_types/query_dsl/specialized.ts#L87-L172',
'_types.query_dsl.MultiMatchQuery': '_types/query_dsl/fulltext.ts#L523-L609',
'_types.query_dsl.MultiValueMode': '_types/query_dsl/compound.ts#L370-L387',
-'_types.query_dsl.NestedQuery': '_types/query_dsl/joining.ts#L112-L139',
+'_types.query_dsl.NestedQuery': '_types/query_dsl/joining.ts#L114-L142',
'_types.query_dsl.NumberRangeQuery': '_types/query_dsl/term.ts#L168-L168',
'_types.query_dsl.NumericDecayFunction': '_types/query_dsl/compound.ts#L210-L210',
'_types.query_dsl.Operator': '_types/query_dsl/Operator.ts#L22-L27',
-'_types.query_dsl.ParentIdQuery': '_types/query_dsl/joining.ts#L141-L158',
+'_types.query_dsl.ParentIdQuery': '_types/query_dsl/joining.ts#L144-L161',
'_types.query_dsl.PercolateQuery': '_types/query_dsl/specialized.ts#L205-L245',
'_types.query_dsl.PinnedDoc': '_types/query_dsl/specialized.ts#L269-L278',
'_types.query_dsl.PinnedQuery': '_types/query_dsl/specialized.ts#L247-L267',
@@ -1081,7 +1081,7 @@
'async_search.status.Request': 'async_search/status/AsyncSearchStatusRequest.ts#L24-L59',
'async_search.status.Response': 'async_search/status/AsyncSearchStatusResponse.ts#L39-L42',
'async_search.status.StatusResponseBase': 'async_search/status/AsyncSearchStatusResponse.ts#L24-L38',
-'async_search.submit.Request': 'async_search/submit/AsyncSearchSubmitRequest.ts#L56-L432',
+'async_search.submit.Request': 'async_search/submit/AsyncSearchSubmitRequest.ts#L56-L434',
'async_search.submit.Response': 'async_search/submit/AsyncSearchSubmitResponse.ts#L25-L34',
'autoscaling._types.AutoscalingPolicy': 'autoscaling/_types/AutoscalingPolicy.ts#L23-L30',
'autoscaling.delete_autoscaling_policy.Request': 'autoscaling/delete_autoscaling_policy/DeleteAutoscalingPolicyRequest.ts#L24-L56',
@@ -1132,7 +1132,7 @@
'cat.component_templates.Request': 'cat/component_templates/CatComponentTemplatesRequest.ts#L24-L83',
'cat.component_templates.Response': 'cat/component_templates/CatComponentTemplatesResponse.ts#L22-L25',
'cat.count.CountRecord': 'cat/count/types.ts#L23-L39',
-'cat.count.Request': 'cat/count/CatCountRequest.ts#L23-L83',
+'cat.count.Request': 'cat/count/CatCountRequest.ts#L23-L85',
'cat.count.Response': 'cat/count/CatCountResponse.ts#L22-L25',
'cat.fielddata.FielddataRecord': 'cat/fielddata/types.ts#L20-L48',
'cat.fielddata.Request': 'cat/fielddata/CatFielddataRequest.ts#L23-L69',
@@ -1142,7 +1142,7 @@
'cat.health.Response': 'cat/health/CatHealthResponse.ts#L22-L25',
'cat.help.Request': 'cat/help/CatHelpRequest.ts#L22-L39',
'cat.indices.IndicesRecord': 'cat/indices/types.ts#L20-L812',
-'cat.indices.Request': 'cat/indices/CatIndicesRequest.ts#L30-L107',
+'cat.indices.Request': 'cat/indices/CatIndicesRequest.ts#L30-L111',
'cat.indices.Response': 'cat/indices/CatIndicesResponse.ts#L22-L25',
'cat.master.MasterRecord': 'cat/master/types.ts#L20-L39',
'cat.master.Request': 'cat/master/CatMasterRequest.ts#L24-L69',
@@ -1290,7 +1290,7 @@
'cluster.reroute.RerouteExplanation': 'cluster/reroute/types.ts#L92-L96',
'cluster.reroute.RerouteParameters': 'cluster/reroute/types.ts#L98-L105',
'cluster.reroute.Response': 'cluster/reroute/ClusterRerouteResponse.ts#L23-L34',
-'cluster.state.ClusterStateMetric': 'cluster/state/ClusterStateRequest.ts#L123-L133',
+'cluster.state.ClusterStateMetric': 'cluster/state/ClusterStateRequest.ts#L123-L142',
'cluster.state.Request': 'cluster/state/ClusterStateRequest.ts#L29-L121',
'cluster.state.Response': 'cluster/state/ClusterStateResponse.ts#L22-L31',
'cluster.stats.CCSStats': 'cluster/stats/types.ts#L787-L802',
@@ -1473,7 +1473,7 @@
'eql.search.Request': 'eql/search/EqlSearchRequest.ts#L34-L192',
'eql.search.Response': 'eql/search/EqlSearchResponse.ts#L22-L25',
'eql.search.ResultPosition': 'eql/search/types.ts#L20-L32',
-'esql._types.ESQLView': 'esql/_types/types.ts#L24-L34',
+'esql._types.ESQLView': 'esql/_types/types.ts#L30-L40',
'esql._types.EsqlFormat': 'esql/_types/QueryParameters.ts#L20-L29',
'esql._types.TableValuesContainer': 'esql/_types/TableValuesContainer.ts#L22-L28',
'esql.delete_view.Request': 'esql/delete_view/DeleteViewRequest.ts#L23-L47',
@@ -1525,7 +1525,7 @@
'ilm.explain_lifecycle.LifecycleExplainManaged': 'ilm/explain_lifecycle/types.ts#L33-L68',
'ilm.explain_lifecycle.LifecycleExplainPhaseExecution': 'ilm/explain_lifecycle/types.ts#L80-L85',
'ilm.explain_lifecycle.LifecycleExplainUnmanaged': 'ilm/explain_lifecycle/types.ts#L70-L73',
-'ilm.explain_lifecycle.Request': 'ilm/explain_lifecycle/ExplainLifecycleRequest.ts#L24-L66',
+'ilm.explain_lifecycle.Request': 'ilm/explain_lifecycle/ExplainLifecycleRequest.ts#L24-L67',
'ilm.explain_lifecycle.Response': 'ilm/explain_lifecycle/ExplainLifecycleResponse.ts#L24-L28',
'ilm.get_lifecycle.Lifecycle': 'ilm/get_lifecycle/types.ts#L24-L28',
'ilm.get_lifecycle.Request': 'ilm/get_lifecycle/GetLifecycleRequest.ts#L24-L63',
@@ -1664,8 +1664,8 @@
'indices.create.Response': 'indices/create/IndicesCreateResponse.ts#L22-L28',
'indices.create_data_stream.Request': 'indices/create_data_stream/IndicesCreateDataStreamRequest.ts#L24-L66',
'indices.create_data_stream.Response': 'indices/create_data_stream/IndicesCreateDataStreamResponse.ts#L22-L25',
-'indices.create_from.CreateFrom': 'indices/create_from/MigrateCreateFromRequest.ts#L54-L68',
-'indices.create_from.Request': 'indices/create_from/MigrateCreateFromRequest.ts#L25-L52',
+'indices.create_from.CreateFrom': 'indices/create_from/MigrateCreateFromRequest.ts#L55-L69',
+'indices.create_from.Request': 'indices/create_from/MigrateCreateFromRequest.ts#L25-L53',
'indices.create_from.Response': 'indices/create_from/MigrateCreateFromResponse.ts#L22-L28',
'indices.data_streams_stats.DataStreamsStatsItem': 'indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts#L45-L65',
'indices.data_streams_stats.Request': 'indices/data_streams_stats/IndicesDataStreamsStatsRequest.ts#L23-L62',
@@ -1761,11 +1761,11 @@
'indices.get_settings.Response': 'indices/get_settings/IndicesGetSettingsResponse.ts#L24-L27',
'indices.get_template.Request': 'indices/get_template/IndicesGetTemplateRequest.ts#L24-L76',
'indices.get_template.Response': 'indices/get_template/IndicesGetTemplateResponse.ts#L23-L26',
-'indices.migrate_reindex.MigrateReindex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L47-L56',
-'indices.migrate_reindex.ModeEnum': 'indices/migrate_reindex/MigrateReindexRequest.ts#L62-L64',
-'indices.migrate_reindex.Request': 'indices/migrate_reindex/MigrateReindexRequest.ts#L23-L45',
+'indices.migrate_reindex.MigrateReindex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L48-L57',
+'indices.migrate_reindex.ModeEnum': 'indices/migrate_reindex/MigrateReindexRequest.ts#L63-L65',
+'indices.migrate_reindex.Request': 'indices/migrate_reindex/MigrateReindexRequest.ts#L23-L46',
'indices.migrate_reindex.Response': 'indices/migrate_reindex/MigrateReindexResponse.ts#L22-L25',
-'indices.migrate_reindex.SourceIndex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L58-L60',
+'indices.migrate_reindex.SourceIndex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L59-L61',
'indices.migrate_to_data_stream.Request': 'indices/migrate_to_data_stream/IndicesMigrateToDataStreamRequest.ts#L24-L68',
'indices.migrate_to_data_stream.Response': 'indices/migrate_to_data_stream/IndicesMigrateToDataStreamResponse.ts#L22-L25',
'indices.modify_data_stream.Action': 'indices/modify_data_stream/types.ts#L22-L37',
@@ -1806,14 +1806,16 @@
'indices.recovery.RecoveryFiles': 'indices/recovery/types.ts#L56-L62',
'indices.recovery.RecoveryIndexStatus': 'indices/recovery/types.ts#L64-L74',
'indices.recovery.RecoveryOrigin': 'indices/recovery/types.ts#L76-L89',
+'indices.recovery.RecoveryStage': 'indices/recovery/types.ts#L118-L131',
'indices.recovery.RecoveryStartStatus': 'indices/recovery/types.ts#L91-L96',
'indices.recovery.RecoveryStatus': 'indices/recovery/types.ts#L98-L100',
+'indices.recovery.RecoveryType': 'indices/recovery/types.ts#L133-L144',
'indices.recovery.Request': 'indices/recovery/IndicesRecoveryRequest.ts#L23-L104',
'indices.recovery.Response': 'indices/recovery/IndicesRecoveryResponse.ts#L24-L27',
-'indices.recovery.ShardRecovery': 'indices/recovery/types.ts#L118-L135',
+'indices.recovery.ShardRecovery': 'indices/recovery/types.ts#L146-L165',
'indices.recovery.TranslogStatus': 'indices/recovery/types.ts#L102-L109',
'indices.recovery.VerifyIndex': 'indices/recovery/types.ts#L111-L116',
-'indices.refresh.Request': 'indices/refresh/IndicesRefreshRequest.ts#L23-L87',
+'indices.refresh.Request': 'indices/refresh/IndicesRefreshRequest.ts#L23-L88',
'indices.refresh.Response': 'indices/refresh/IndicesRefreshResponse.ts#L22-L25',
'indices.reload_search_analyzers.ReloadDetails': 'indices/reload_search_analyzers/types.ts#L27-L31',
'indices.reload_search_analyzers.ReloadResult': 'indices/reload_search_analyzers/types.ts#L22-L25',
@@ -1836,18 +1838,18 @@
'indices.segments.IndexSegment': 'indices/segments/types.ts#L24-L26',
'indices.segments.Request': 'indices/segments/IndicesSegmentsRequest.ts#L23-L74',
'indices.segments.Response': 'indices/segments/IndicesSegmentsResponse.ts#L24-L29',
-'indices.segments.Segment': 'indices/segments/types.ts#L28-L38',
-'indices.segments.ShardSegmentRouting': 'indices/segments/types.ts#L40-L44',
-'indices.segments.ShardsSegment': 'indices/segments/types.ts#L46-L51',
+'indices.segments.Segment': 'indices/segments/types.ts#L28-L62',
+'indices.segments.ShardSegmentRouting': 'indices/segments/types.ts#L64-L71',
+'indices.segments.ShardsSegment': 'indices/segments/types.ts#L73-L78',
'indices.shard_stores.IndicesShardStores': 'indices/shard_stores/types.ts#L25-L27',
'indices.shard_stores.Request': 'indices/shard_stores/IndicesShardStoresRequest.ts#L24-L84',
'indices.shard_stores.Response': 'indices/shard_stores/IndicesShardStoresResponse.ts#L24-L26',
-'indices.shard_stores.ShardStore': 'indices/shard_stores/types.ts#L29-L36',
-'indices.shard_stores.ShardStoreAllocation': 'indices/shard_stores/types.ts#L47-L51',
-'indices.shard_stores.ShardStoreException': 'indices/shard_stores/types.ts#L53-L56',
-'indices.shard_stores.ShardStoreNode': 'indices/shard_stores/types.ts#L38-L45',
-'indices.shard_stores.ShardStoreStatus': 'indices/shard_stores/types.ts#L62-L71',
-'indices.shard_stores.ShardStoreWrapper': 'indices/shard_stores/types.ts#L58-L60',
+'indices.shard_stores.ShardStore': 'indices/shard_stores/types.ts#L29-L39',
+'indices.shard_stores.ShardStoreAllocation': 'indices/shard_stores/types.ts#L50-L57',
+'indices.shard_stores.ShardStoreException': 'indices/shard_stores/types.ts#L59-L62',
+'indices.shard_stores.ShardStoreNode': 'indices/shard_stores/types.ts#L41-L48',
+'indices.shard_stores.ShardStoreStatus': 'indices/shard_stores/types.ts#L68-L77',
+'indices.shard_stores.ShardStoreWrapper': 'indices/shard_stores/types.ts#L64-L66',
'indices.shrink.Request': 'indices/shrink/IndicesShrinkRequest.ts#L27-L118',
'indices.shrink.Response': 'indices/shrink/IndicesShrinkResponse.ts#L22-L28',
'indices.simulate_index_template.Request': 'indices/simulate_index_template/IndicesSimulateIndexTemplateRequest.ts#L25-L74',
@@ -2249,7 +2251,7 @@
'license._types.LicenseType': 'license/_types/License.ts#L23-L33',
'license.delete.Request': 'license/delete/DeleteLicenseRequest.ts#L24-L56',
'license.delete.Response': 'license/delete/DeleteLicenseResponse.ts#L22-L25',
-'license.get.LicenseInformation': 'license/get/types.ts#L25-L38',
+'license.get.LicenseInformation': 'license/get/types.ts#L25-L74',
'license.get.Request': 'license/get/GetLicenseRequest.ts#L23-L60',
'license.get.Response': 'license/get/GetLicenseResponse.ts#L22-L24',
'license.get_basic_status.Request': 'license/get_basic_status/GetBasicLicenseStatusRequest.ts#L23-L39',
@@ -2257,7 +2259,7 @@
'license.get_trial_status.Request': 'license/get_trial_status/GetTrialLicenseStatusRequest.ts#L23-L39',
'license.get_trial_status.Response': 'license/get_trial_status/GetTrialLicenseStatusResponse.ts#L20-L22',
'license.post.Acknowledgement': 'license/post/types.ts#L20-L23',
-'license.post.Request': 'license/post/PostLicenseRequest.ts#L25-L73',
+'license.post.Request': 'license/post/PostLicenseRequest.ts#L25-L74',
'license.post.Response': 'license/post/PostLicenseResponse.ts#L23-L29',
'license.post_start_basic.Request': 'license/post_start_basic/StartBasicLicenseRequest.ts#L24-L65',
'license.post_start_basic.Response': 'license/post_start_basic/StartBasicLicenseResponse.ts#L23-L31',
@@ -2872,26 +2874,26 @@
'security._types.ApiKey': 'security/_types/ApiKey.ts#L27-L120',
'security._types.ApiKeyManagedBy': 'security/_types/ApiKey.ts#L127-L130',
'security._types.ApiKeyType': 'security/_types/ApiKey.ts#L122-L125',
-'security._types.ApplicationGlobalUserPrivileges': 'security/_types/Privileges.ts#L436-L438',
-'security._types.ApplicationPrivileges': 'security/_types/Privileges.ts#L27-L40',
+'security._types.ApplicationGlobalUserPrivileges': 'security/_types/Privileges.ts#L400-L402',
+'security._types.ApplicationPrivileges': 'security/_types/Privileges.ts#L28-L41',
'security._types.BulkError': 'security/_types/Bulk.ts#L24-L33',
'security._types.ClusterNode': 'security/_types/ClusterNode.ts#L22-L24',
-'security._types.ClusterPrivilege': 'security/_types/Privileges.ts#L42-L201',
+'security._types.ClusterPrivilege': 'security/_types/Privileges.ts#L43-L202',
'security._types.CreatedStatus': 'security/_types/CreatedStatus.ts#L20-L22',
'security._types.FieldSecurity': 'security/_types/FieldSecurity.ts#L22-L25',
-'security._types.GlobalPrivilege': 'security/_types/Privileges.ts#L432-L434',
+'security._types.GlobalPrivilege': 'security/_types/Privileges.ts#L396-L398',
'security._types.GrantType': 'security/_types/GrantType.ts#L20-L30',
-'security._types.IndexPrivilege': 'security/_types/Privileges.ts#L388-L430',
-'security._types.IndicesPrivileges': 'security/_types/Privileges.ts#L218-L244',
-'security._types.IndicesPrivilegesQuery': 'security/_types/Privileges.ts#L343-L351',
-'security._types.ManageUserPrivileges': 'security/_types/Privileges.ts#L440-L442',
+'security._types.IndexPrivilege': 'security/_types/Privileges.ts#L352-L394',
+'security._types.IndicesPrivileges': 'security/_types/Privileges.ts#L246-L246',
+'security._types.IndicesPrivilegesQuery': 'security/_types/Privileges.ts#L307-L315',
+'security._types.ManageUserPrivileges': 'security/_types/Privileges.ts#L404-L406',
'security._types.NodeSecurityStats': 'security/_types/NodeSecurityStats.ts#L22-L27',
'security._types.RealmInfo': 'security/_types/RealmInfo.ts#L22-L25',
-'security._types.RemoteClusterPrivilege': 'security/_types/Privileges.ts#L203-L215',
-'security._types.RemoteClusterPrivileges': 'security/_types/Privileges.ts#L280-L292',
-'security._types.RemoteIndicesPrivileges': 'security/_types/Privileges.ts#L246-L278',
-'security._types.RemoteUserIndicesPrivileges': 'security/_types/Privileges.ts#L318-L341',
-'security._types.ReplicationAccess': 'security/_types/Privileges.ts#L444-L454',
+'security._types.RemoteClusterPrivilege': 'security/_types/Privileges.ts#L204-L216',
+'security._types.RemoteClusterPrivileges': 'security/_types/Privileges.ts#L260-L272',
+'security._types.RemoteIndicesPrivileges': 'security/_types/Privileges.ts#L248-L258',
+'security._types.RemoteUserIndicesPrivileges': 'security/_types/Privileges.ts#L301-L305',
+'security._types.ReplicationAccess': 'security/_types/Privileges.ts#L408-L418',
'security._types.Restriction': 'security/_types/RoleDescriptor.ts#L90-L96',
'security._types.RestrictionWorkflow': 'security/_types/RoleDescriptor.ts#L98-L101',
'security._types.RoleDescriptor': 'security/_types/RoleDescriptor.ts#L33-L83',
@@ -2899,15 +2901,15 @@
'security._types.RoleMapping': 'security/_types/RoleMapping.ts#L25-L33',
'security._types.RoleMappingRule': 'security/_types/RoleMappingRule.ts#L23-L31',
'security._types.RoleTemplate': 'security/_types/RoleTemplate.ts#L28-L31',
-'security._types.RoleTemplateInlineQuery': 'security/_types/Privileges.ts#L385-L386',
-'security._types.RoleTemplateQuery': 'security/_types/Privileges.ts#L353-L363',
-'security._types.RoleTemplateScript': 'security/_types/Privileges.ts#L365-L383',
+'security._types.RoleTemplateInlineQuery': 'security/_types/Privileges.ts#L349-L350',
+'security._types.RoleTemplateQuery': 'security/_types/Privileges.ts#L317-L327',
+'security._types.RoleTemplateScript': 'security/_types/Privileges.ts#L329-L347',
'security._types.RolesStats': 'security/_types/NodeSecurityStats.ts#L29-L34',
-'security._types.SearchAccess': 'security/_types/Privileges.ts#L456-L476',
+'security._types.SearchAccess': 'security/_types/Privileges.ts#L420-L440',
'security._types.SecuritySettings': 'security/_types/SecuritySettings.ts#L22-L24',
'security._types.TemplateFormat': 'security/_types/RoleTemplate.ts#L22-L25',
'security._types.User': 'security/_types/User.ts#L23-L31',
-'security._types.UserIndicesPrivileges': 'security/_types/Privileges.ts#L294-L316',
+'security._types.UserIndicesPrivileges': 'security/_types/Privileges.ts#L298-L299',
'security._types.UserProfile': 'security/_types/UserProfile.ts#L41-L47',
'security._types.UserProfileHitMetadata': 'security/_types/UserProfile.ts#L27-L30',
'security._types.UserProfileUser': 'security/_types/UserProfile.ts#L32-L39',
@@ -3072,7 +3074,7 @@
'security.update_cross_cluster_api_key.Response': 'security/update_cross_cluster_api_key/UpdateCrossClusterApiKeyResponse.ts#L20-L28',
'security.update_settings.Request': 'security/update_settings/SecurityUpdateSettingsRequest.ts#L25-L75',
'security.update_settings.Response': 'security/update_settings/SecurityUpdateSettingsResponse.ts#L20-L24',
-'security.update_user_profile_data.Request': 'security/update_user_profile_data/Request.ts#L27-L100',
+'security.update_user_profile_data.Request': 'security/update_user_profile_data/Request.ts#L27-L101',
'security.update_user_profile_data.Response': 'security/update_user_profile_data/Response.ts#L22-L25',
'shutdown._types.Type': 'shutdown/_types/types.ts#L20-L24',
'shutdown.delete_node.Request': 'shutdown/delete_node/ShutdownDeleteNodeRequest.ts#L24-L65',
@@ -3257,10 +3259,10 @@
'transform._types.PivotGroupByContainer': 'transform/_types/Transform.ts#L70-L78',
'transform._types.RetentionPolicy': 'transform/_types/Transform.ts#L88-L96',
'transform._types.RetentionPolicyContainer': 'transform/_types/Transform.ts#L80-L86',
-'transform._types.Settings': 'transform/_types/Transform.ts#L98-L154',
-'transform._types.Source': 'transform/_types/Transform.ts#L156-L175',
-'transform._types.SyncContainer': 'transform/_types/Transform.ts#L179-L185',
-'transform._types.TimeSync': 'transform/_types/Transform.ts#L187-L199',
+'transform._types.Settings': 'transform/_types/Transform.ts#L98-L166',
+'transform._types.Source': 'transform/_types/Transform.ts#L168-L187',
+'transform._types.SyncContainer': 'transform/_types/Transform.ts#L191-L197',
+'transform._types.TimeSync': 'transform/_types/Transform.ts#L199-L211',
'transform.delete_transform.Request': 'transform/delete_transform/DeleteTransformRequest.ts#L24-L66',
'transform.delete_transform.Response': 'transform/delete_transform/DeleteTransformResponse.ts#L22-L25',
'transform.get_node_stats.Request': 'transform/get_node_stats/GetNodeStatsRequest.ts#L23-L40',
@@ -3504,10 +3506,10 @@
if (hash.length > 1) {
hash = hash.substring(1);
}
- window.location = "https://github.com/elastic/elasticsearch-specification/tree/2e838917453ed9903a2f335754a5a3e88e72d6e1/specification/" + (paths[hash] || "");
+ window.location = "https://github.com/elastic/elasticsearch-specification/tree/df81426e814ecb513b012f2c0a706572964c606c/specification/" + (paths[hash] || "");
POST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @see API
* specification
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java
index 2539fa93d7..eb2d8d4423 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/ElasticsearchCatAsyncClient.java
@@ -278,6 +278,10 @@ public CompletableFuturePOST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @see Documentation
@@ -301,6 +305,10 @@ public CompletableFuturePOST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @param fn
* a function that initializes a builder to create the
@@ -325,6 +333,10 @@ public final CompletableFuturePOST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @see Documentation
@@ -523,6 +535,17 @@ public CompletableFuturePOST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @see Documentation
@@ -304,6 +308,10 @@ public CountResponse count(CountRequest request) throws IOException, Elasticsear
* 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.
+ * POST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @param fn
* a function that initializes a builder to create the
@@ -328,6 +336,10 @@ public final CountResponse count(FunctionPOST method. This is primarily intended for project routing in
+ * serverless environments.
*
* @see Documentation
@@ -526,6 +538,17 @@ public TextResponse help() throws IOException, ElasticsearchException {
* include hidden nested documents. To get an accurate count of Elasticsearch
* documents, use the cat count or count APIs.
* master_node part of the response.
+ */
MasterNode("master_node"),
+ /**
+ * Shows the blocks part of the response.
+ */
Blocks("blocks"),
+ /**
+ * Shows the nodes part of the response.
+ */
Nodes("nodes"),
+ /**
+ * Shows the metadata part of the response. If you supply a
+ * comma-separated list of indices, the returned output will only contain
+ * metadata for these indices.
+ */
Metadata("metadata"),
+ /**
+ * Shows the routing_table part of the response. If you supply a
+ * comma-separated list of indices, the returned output will only contain the
+ * routing table for these indices.
+ */
RoutingTable("routing_table"),
+ /**
+ * Shows the routing_nodes part of the response.
+ */
RoutingNodes("routing_nodes"),
+ /**
+ * Shows the customs part of the response, which includes custom
+ * cluster state information.
+ */
Customs("customs"),
;
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/bulk/BulkResponseItem.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/bulk/BulkResponseItem.java
index 6fe24823d2..ea5ad24ae3 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/bulk/BulkResponseItem.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/bulk/BulkResponseItem.java
@@ -197,8 +197,9 @@ public final Long primaryTerm() {
}
/**
- * The result of the operation. Successful values are created,
- * deleted, and updated.
+ * The result of the operation. Possible values are created,
+ * updated, deleted, noop, and
+ * not_found.
* created,
- * deleted, and updated.
+ * The result of the operation. Possible values are created,
+ * updated, deleted, noop, and
+ * not_found.
*