diff --git a/config/version.txt b/config/version.txt index 48e97c8f8..61fd81a36 100644 --- a/config/version.txt +++ b/config/version.txt @@ -1 +1 @@ -9.0.5 +9.0.6 diff --git a/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java b/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java index e68fc6daf..aed045a7a 100644 --- a/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java +++ b/java-client/src/main-flavored/java/co/elastic/clients/transport/VersionInfo.java @@ -21,5 +21,5 @@ // Package private class VersionInfo { - static final String VERSION = "9.0.5"; + static final String VERSION = "9.0.6"; } diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java index 88f124c04..f2b6bce4c 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java @@ -475,6 +475,7 @@ public ElasticsearchXpackAsyncClient xpack() { *
client.helpers.*
BulkAllObservable
Elasticsearch::Helpers::BulkHelper
* Submitting bulk requests with cURL
@@ -653,6 +654,7 @@ public CompletableFuture
* Submitting bulk requests with cURL
@@ -831,6 +833,7 @@ public final CompletableFuture
* Submitting bulk requests with cURL
@@ -4186,6 +4189,20 @@ public final CompletableFuture
+ * It's recommended to reindex on indices with a green status. Reindexing can
+ * fail when a node shuts down or crashes.
+ *
* Refer to the linked documentation for examples of how to reindex documents.
*
* @see reindex(ReindexRequest request) {
* until it has successfully indexed
+ * It's recommended to reindex on indices with a green status. Reindexing can
+ * fail when a node shuts down or crashes.
+ *
* Refer to the linked documentation for examples of how to reindex documents.
*
* @param fn
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java
index 96e290446..f653e875b 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java
@@ -475,6 +475,7 @@ public ElasticsearchXpackClient xpack() {
*
* Submitting bulk requests with cURL
@@ -653,6 +654,7 @@ public BulkResponse bulk(BulkRequest request) throws IOException, ElasticsearchE
*
* Submitting bulk requests with cURL
@@ -832,6 +834,7 @@ public final BulkResponse bulk(Function
* Submitting bulk requests with cURL
@@ -4215,6 +4218,20 @@ public final RankEvalResponse rankEval(Function
+ * It's recommended to reindex on indices with a green status. Reindexing can
+ * fail when a node shuts down or crashes.
+ *
* Refer to the linked documentation for examples of how to reindex documents.
*
* @see max_docs documents into the
* target or it has gone through every document in the source query.
*
+ * It's recommended to reindex on indices with a green status. Reindexing can
+ * fail when a node shuts down or crashes.
+ *
* Refer to the linked documentation for examples of how to reindex documents.
*
* @param fn
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/aggregations/ArrayPercentilesItem.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/aggregations/ArrayPercentilesItem.java
index 8abc4ef51..be77e4493 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/aggregations/ArrayPercentilesItem.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/_types/aggregations/ArrayPercentilesItem.java
@@ -61,7 +61,7 @@
*/
@JsonpDeserializable
public class ArrayPercentilesItem implements JsonpSerializable {
- private final String key;
+ private final double key;
@Nullable
private final Double value;
@@ -73,7 +73,7 @@ public class ArrayPercentilesItem implements JsonpSerializable {
private ArrayPercentilesItem(Builder builder) {
- this.key = ApiTypeHelper.requireNonNull(builder.key, this, "key");
+ this.key = ApiTypeHelper.requireNonNull(builder.key, this, "key", 0);
this.value = builder.value;
this.valueAsString = builder.valueAsString;
@@ -86,7 +86,7 @@ public static ArrayPercentilesItem of(Function
* API name: {@code h}
*/
@@ -210,7 +211,8 @@ public final Builder expandWildcards(ExpandWildcard value, ExpandWildcard... val
}
/**
- * List of columns to appear in the response. Supports simple wildcards.
+ * A comma-separated list of columns names to display. It supports simple
+ * wildcards.
*
* API name: {@code h}
*
@@ -222,7 +224,8 @@ public final Builder h(List
* API name: {@code h}
*
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/AllocationRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/AllocationRequest.java
index 1ddec4603..77d9053e0 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/AllocationRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/AllocationRequest.java
@@ -115,7 +115,8 @@ public final Bytes bytes() {
}
/**
- * List of columns to appear in the response. Supports simple wildcards.
+ * A comma-separated list of columns names to display. It supports simple
+ * wildcards.
*
* API name: {@code h}
*/
@@ -206,7 +207,8 @@ public final Builder bytes(@Nullable Bytes value) {
}
/**
- * List of columns to appear in the response. Supports simple wildcards.
+ * A comma-separated list of columns names to display. It supports simple
+ * wildcards.
*
* API name: {@code h}
*
@@ -218,7 +220,8 @@ public final Builder h(List
* API name: {@code h}
*
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CatAliasesColumn.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CatAliasesColumn.java
new file mode 100644
index 000000000..0e2fdde81
--- /dev/null
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/CatAliasesColumn.java
@@ -0,0 +1,98 @@
+/*
+ * 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.
+ */
+
+package co.elastic.clients.elasticsearch.cat;
+
+import co.elastic.clients.json.JsonEnum;
+import co.elastic.clients.json.JsonpDeserializable;
+import co.elastic.clients.json.JsonpDeserializer;
+
+//----------------------------------------------------------------
+// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
+//----------------------------------------------------------------
+//
+// This code is generated from the Elasticsearch API specification
+// at https://github.com/elastic/elasticsearch-specification
+//
+// Manual updates to this file will be lost when the code is
+// re-generated.
+//
+// If you find a property that is missing or wrongly typed, please
+// open an issue or a PR on the API specification repository.
+//
+//----------------------------------------------------------------
+
+/**
+ *
+ * @see API
+ * specification
+ */
+@JsonpDeserializable
+public enum CatAliasesColumn implements JsonEnum {
+ /**
+ * The name of the alias.
+ */
+ Alias("alias", "a"),
+
+ /**
+ * The name of the index the alias points to.
+ */
+ Index("index", "i", "idx"),
+
+ /**
+ * The filter applied to the alias.
+ */
+ Filter("filter", "f", "fi"),
+
+ /**
+ * Index routing value for the alias.
+ */
+ RoutingIndex("routing.index", "ri", "routingIndex"),
+
+ /**
+ * Search routing value for the alias.
+ */
+ RoutingSearch("routing.search", "rs", "routingSearch"),
+
+ /**
+ * Indicates if the index is the write index for the alias.
+ */
+ IsWriteIndex("is_write_index", "w", "isWriteIndex"),
+
+ ;
+
+ private final String jsonValue;
+ private final String[] aliases;
+
+ CatAliasesColumn(String jsonValue, String... aliases) {
+ this.jsonValue = jsonValue;
+ this.aliases = aliases;
+ }
+
+ public String jsonValue() {
+ return this.jsonValue;
+ }
+
+ public String[] aliases() {
+ return this.aliases;
+ }
+
+ public static final JsonEnum.Deserializer
* API name: {@code h}
*
@@ -194,7 +196,8 @@ public final Builder h(List
* API name: {@code h}
*
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 126e5cccd..c1808a28f 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
@@ -92,7 +92,8 @@ public static CountRequest of(Function
* API name: {@code h}
*/
@@ -140,7 +141,8 @@ public static class Builder extends CatRequestBase.AbstractBuilder
* API name: {@code h}
*
@@ -152,7 +154,8 @@ public final Builder h(List
* API name: {@code h}
*
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/FielddataRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/FielddataRequest.java
index b77d03810..adf24c2d0 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/FielddataRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cat/FielddataRequest.java
@@ -116,7 +116,8 @@ public final List
* API name: {@code h}
*/
@@ -193,7 +194,8 @@ public final Builder fields(String value, String... values) {
}
/**
- * List of columns to appear in the response. Supports simple wildcards.
+ * A comma-separated list of columns names to display. It supports simple
+ * wildcards.
*
* API name: {@code h}
*
@@ -205,7 +207,8 @@ public final Builder h(List
* API name: {@code h}
*
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/BulkRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/BulkRequest.java
index 21df7c2eb..25975d43e 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/BulkRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/BulkRequest.java
@@ -170,6 +170,7 @@
*
* Submitting bulk requests with cURL
diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/ReindexRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/ReindexRequest.java
index 095d75239..c20f09dab 100644
--- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/ReindexRequest.java
+++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/ReindexRequest.java
@@ -131,6 +131,20 @@
* until it has successfully indexed
+ * It's recommended to reindex on indices with a green status. Reindexing can
+ * fail when a node shuts down or crashes.
+ *
* Refer to the linked documentation for examples of how to reindex documents.
*
* @see API
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 592ca2624..1c973da52 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#L100-L117',
'_global.bulk.OperationContainer': '_global/bulk/types.ts#L158-L180',
'_global.bulk.OperationType': '_global/bulk/types.ts#L93-L98',
-'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L32-L251',
+'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L32-L252',
'_global.bulk.Response': '_global/bulk/BulkResponse.ts#L24-L45',
'_global.bulk.ResponseItem': '_global/bulk/types.ts#L37-L84',
'_global.bulk.UpdateAction': '_global/bulk/types.ts#L182-L217',
@@ -136,7 +136,7 @@
'_global.rank_eval.UnratedDocument': '_global/rank_eval/types.ts#L150-L153',
'_global.reindex.Destination': '_global/reindex/types.ts#L39-L67',
'_global.reindex.RemoteSource': '_global/reindex/types.ts#L112-L140',
-'_global.reindex.Request': '_global/reindex/ReindexRequest.ts#L27-L178',
+'_global.reindex.Request': '_global/reindex/ReindexRequest.ts#L27-L184',
'_global.reindex.Response': '_global/reindex/ReindexResponse.ts#L26-L92',
'_global.reindex.Source': '_global/reindex/types.ts#L69-L110',
'_global.reindex_rethrottle.ReindexNode': '_global/reindex_rethrottle/types.ts#L33-L35',
@@ -1063,18 +1063,23 @@
'autoscaling.get_autoscaling_policy.Response': 'autoscaling/get_autoscaling_policy/GetAutoscalingPolicyResponse.ts#L22-L25',
'autoscaling.put_autoscaling_policy.Request': 'autoscaling/put_autoscaling_policy/PutAutoscalingPolicyRequest.ts#L25-L57',
'autoscaling.put_autoscaling_policy.Response': 'autoscaling/put_autoscaling_policy/PutAutoscalingPolicyResponse.ts#L22-L25',
+'cat._types.CatAliasesColumn': 'cat/_types/CatBase.ts#L1283-L1315',
+'cat._types.CatAllocationColumn': 'cat/_types/CatBase.ts#L1317-L1382',
'cat._types.CatAnomalyDetectorColumn': 'cat/_types/CatBase.ts#L32-L401',
+'cat._types.CatComponentColumn': 'cat/_types/CatBase.ts#L1384-L1421',
+'cat._types.CatCountColumn': 'cat/_types/CatBase.ts#L1423-L1440',
'cat._types.CatDatafeedColumn': 'cat/_types/CatBase.ts#L405-L471',
'cat._types.CatDfaColumn': 'cat/_types/CatBase.ts#L473-L558',
+'cat._types.CatFieldDataColumn': 'cat/_types/CatBase.ts#L1442-L1472',
'cat._types.CatNodeColumn': 'cat/_types/CatBase.ts#L560-L1012',
'cat._types.CatRecoveryColumn': 'cat/_types/CatBase.ts#L1014-L1145',
'cat._types.CatRequestBase': 'cat/_types/CatBase.ts#L28-L30',
'cat._types.CatSegmentsColumn': 'cat/_types/CatBase.ts#L1147-L1212',
-'cat._types.CatShardColumn': 'cat/_types/CatBase.ts#L1576-L1949',
+'cat._types.CatShardColumn': 'cat/_types/CatBase.ts#L1772-L2145',
'cat._types.CatSnapshotsColumn': 'cat/_types/CatBase.ts#L1214-L1281',
-'cat._types.CatThreadPoolColumn': 'cat/_types/CatBase.ts#L1952-L2052',
-'cat._types.CatTrainedModelsColumn': 'cat/_types/CatBase.ts#L1290-L1364',
-'cat._types.CatTransformColumn': 'cat/_types/CatBase.ts#L1369-L1573',
+'cat._types.CatThreadPoolColumn': 'cat/_types/CatBase.ts#L2148-L2248',
+'cat._types.CatTrainedModelsColumn': 'cat/_types/CatBase.ts#L1486-L1560',
+'cat._types.CatTransformColumn': 'cat/_types/CatBase.ts#L1565-L1769',
'cat.aliases.AliasesRecord': 'cat/aliases/types.ts#L22-L53',
'cat.aliases.Request': 'cat/aliases/CatAliasesRequest.ts#L24-L77',
'cat.aliases.Response': 'cat/aliases/CatAliasesResponse.ts#L22-L25',
@@ -1814,23 +1819,23 @@
'inference._types.CompletionToolType': 'inference/_types/CommonTypes.ts#L118-L121',
'inference._types.ContentObject': 'inference/_types/CommonTypes.ts#L123-L135',
'inference._types.DeleteInferenceEndpointResult': 'inference/_types/Results.ts#L110-L115',
-'inference._types.ElasticsearchServiceSettings': 'inference/_types/CommonTypes.ts#L777-L811',
-'inference._types.ElasticsearchServiceType': 'inference/_types/CommonTypes.ts#L827-L829',
-'inference._types.ElasticsearchTaskSettings': 'inference/_types/CommonTypes.ts#L813-L819',
-'inference._types.ElasticsearchTaskType': 'inference/_types/CommonTypes.ts#L821-L825',
-'inference._types.ElserServiceSettings': 'inference/_types/CommonTypes.ts#L831-L857',
-'inference._types.ElserServiceType': 'inference/_types/CommonTypes.ts#L863-L865',
-'inference._types.ElserTaskType': 'inference/_types/CommonTypes.ts#L859-L861',
-'inference._types.GoogleAiServiceType': 'inference/_types/CommonTypes.ts#L890-L892',
-'inference._types.GoogleAiStudioServiceSettings': 'inference/_types/CommonTypes.ts#L867-L883',
-'inference._types.GoogleAiStudioTaskType': 'inference/_types/CommonTypes.ts#L885-L888',
-'inference._types.GoogleVertexAIServiceSettings': 'inference/_types/CommonTypes.ts#L894-L920',
-'inference._types.GoogleVertexAIServiceType': 'inference/_types/CommonTypes.ts#L938-L940',
-'inference._types.GoogleVertexAITaskSettings': 'inference/_types/CommonTypes.ts#L922-L931',
-'inference._types.GoogleVertexAITaskType': 'inference/_types/CommonTypes.ts#L933-L936',
-'inference._types.HuggingFaceServiceSettings': 'inference/_types/CommonTypes.ts#L942-L963',
-'inference._types.HuggingFaceServiceType': 'inference/_types/CommonTypes.ts#L969-L971',
-'inference._types.HuggingFaceTaskType': 'inference/_types/CommonTypes.ts#L965-L967',
+'inference._types.ElasticsearchServiceSettings': 'inference/_types/CommonTypes.ts#L757-L791',
+'inference._types.ElasticsearchServiceType': 'inference/_types/CommonTypes.ts#L807-L809',
+'inference._types.ElasticsearchTaskSettings': 'inference/_types/CommonTypes.ts#L793-L799',
+'inference._types.ElasticsearchTaskType': 'inference/_types/CommonTypes.ts#L801-L805',
+'inference._types.ElserServiceSettings': 'inference/_types/CommonTypes.ts#L811-L837',
+'inference._types.ElserServiceType': 'inference/_types/CommonTypes.ts#L843-L845',
+'inference._types.ElserTaskType': 'inference/_types/CommonTypes.ts#L839-L841',
+'inference._types.GoogleAiServiceType': 'inference/_types/CommonTypes.ts#L870-L872',
+'inference._types.GoogleAiStudioServiceSettings': 'inference/_types/CommonTypes.ts#L847-L863',
+'inference._types.GoogleAiStudioTaskType': 'inference/_types/CommonTypes.ts#L865-L868',
+'inference._types.GoogleVertexAIServiceSettings': 'inference/_types/CommonTypes.ts#L874-L900',
+'inference._types.GoogleVertexAIServiceType': 'inference/_types/CommonTypes.ts#L918-L920',
+'inference._types.GoogleVertexAITaskSettings': 'inference/_types/CommonTypes.ts#L902-L911',
+'inference._types.GoogleVertexAITaskType': 'inference/_types/CommonTypes.ts#L913-L916',
+'inference._types.HuggingFaceServiceSettings': 'inference/_types/CommonTypes.ts#L922-L943',
+'inference._types.HuggingFaceServiceType': 'inference/_types/CommonTypes.ts#L949-L951',
+'inference._types.HuggingFaceTaskType': 'inference/_types/CommonTypes.ts#L945-L947',
'inference._types.InferenceChunkingSettings': 'inference/_types/Services.ts#L254-L283',
'inference._types.InferenceEndpoint': 'inference/_types/Services.ts#L42-L62',
'inference._types.InferenceEndpointInfo': 'inference/_types/Services.ts#L64-L76',
@@ -1851,21 +1856,21 @@
'inference._types.InferenceEndpointInfoVoyageAI': 'inference/_types/Services.ts#L232-L241',
'inference._types.InferenceEndpointInfoWatsonx': 'inference/_types/Services.ts#L243-L252',
'inference._types.InferenceResult': 'inference/_types/Results.ts#L117-L128',
-'inference._types.JinaAIServiceSettings': 'inference/_types/CommonTypes.ts#L973-L1002',
-'inference._types.JinaAIServiceType': 'inference/_types/CommonTypes.ts#L1032-L1034',
-'inference._types.JinaAISimilarityType': 'inference/_types/CommonTypes.ts#L1036-L1040',
-'inference._types.JinaAITaskSettings': 'inference/_types/CommonTypes.ts#L1004-L1025',
-'inference._types.JinaAITaskType': 'inference/_types/CommonTypes.ts#L1027-L1030',
-'inference._types.JinaAITextEmbeddingTask': 'inference/_types/CommonTypes.ts#L1042-L1047',
+'inference._types.JinaAIServiceSettings': 'inference/_types/CommonTypes.ts#L953-L982',
+'inference._types.JinaAIServiceType': 'inference/_types/CommonTypes.ts#L1012-L1014',
+'inference._types.JinaAISimilarityType': 'inference/_types/CommonTypes.ts#L1016-L1020',
+'inference._types.JinaAITaskSettings': 'inference/_types/CommonTypes.ts#L984-L1005',
+'inference._types.JinaAITaskType': 'inference/_types/CommonTypes.ts#L1007-L1010',
+'inference._types.JinaAITextEmbeddingTask': 'inference/_types/CommonTypes.ts#L1022-L1027',
'inference._types.Message': 'inference/_types/CommonTypes.ts#L174-L228',
'inference._types.MessageContent': 'inference/_types/CommonTypes.ts#L169-L172',
-'inference._types.MistralServiceSettings': 'inference/_types/CommonTypes.ts#L1049-L1076',
-'inference._types.MistralServiceType': 'inference/_types/CommonTypes.ts#L1082-L1084',
-'inference._types.MistralTaskType': 'inference/_types/CommonTypes.ts#L1078-L1080',
-'inference._types.OpenAIServiceSettings': 'inference/_types/CommonTypes.ts#L1086-L1128',
-'inference._types.OpenAIServiceType': 'inference/_types/CommonTypes.ts#L1144-L1146',
-'inference._types.OpenAITaskSettings': 'inference/_types/CommonTypes.ts#L1130-L1136',
-'inference._types.OpenAITaskType': 'inference/_types/CommonTypes.ts#L1138-L1142',
+'inference._types.MistralServiceSettings': 'inference/_types/CommonTypes.ts#L1029-L1056',
+'inference._types.MistralServiceType': 'inference/_types/CommonTypes.ts#L1062-L1064',
+'inference._types.MistralTaskType': 'inference/_types/CommonTypes.ts#L1058-L1060',
+'inference._types.OpenAIServiceSettings': 'inference/_types/CommonTypes.ts#L1066-L1108',
+'inference._types.OpenAIServiceType': 'inference/_types/CommonTypes.ts#L1124-L1126',
+'inference._types.OpenAITaskSettings': 'inference/_types/CommonTypes.ts#L1110-L1116',
+'inference._types.OpenAITaskType': 'inference/_types/CommonTypes.ts#L1118-L1122',
'inference._types.RankedDocument': 'inference/_types/Results.ts#L91-L101',
'inference._types.RateLimitSetting': 'inference/_types/Services.ts#L289-L315',
'inference._types.RequestChatCompletion': 'inference/_types/CommonTypes.ts#L25-L97',
@@ -1894,13 +1899,13 @@
'inference._types.TextEmbeddingResult': 'inference/_types/Results.ts#L60-L65',
'inference._types.ToolCall': 'inference/_types/CommonTypes.ts#L151-L167',
'inference._types.ToolCallFunction': 'inference/_types/CommonTypes.ts#L137-L149',
-'inference._types.VoyageAIServiceSettings': 'inference/_types/CommonTypes.ts#L1148-L1179',
-'inference._types.VoyageAIServiceType': 'inference/_types/CommonTypes.ts#L1212-L1214',
-'inference._types.VoyageAITaskSettings': 'inference/_types/CommonTypes.ts#L1181-L1205',
-'inference._types.VoyageAITaskType': 'inference/_types/CommonTypes.ts#L1207-L1210',
-'inference._types.WatsonxServiceSettings': 'inference/_types/CommonTypes.ts#L1216-L1253',
-'inference._types.WatsonxServiceType': 'inference/_types/CommonTypes.ts#L1259-L1261',
-'inference._types.WatsonxTaskType': 'inference/_types/CommonTypes.ts#L1255-L1257',
+'inference._types.VoyageAIServiceSettings': 'inference/_types/CommonTypes.ts#L1128-L1159',
+'inference._types.VoyageAIServiceType': 'inference/_types/CommonTypes.ts#L1192-L1194',
+'inference._types.VoyageAITaskSettings': 'inference/_types/CommonTypes.ts#L1161-L1185',
+'inference._types.VoyageAITaskType': 'inference/_types/CommonTypes.ts#L1187-L1190',
+'inference._types.WatsonxServiceSettings': 'inference/_types/CommonTypes.ts#L1196-L1233',
+'inference._types.WatsonxServiceType': 'inference/_types/CommonTypes.ts#L1239-L1241',
+'inference._types.WatsonxTaskType': 'inference/_types/CommonTypes.ts#L1235-L1237',
'inference.chat_completion_unified.Request': 'inference/chat_completion_unified/UnifiedRequest.ts#L24-L61',
'inference.chat_completion_unified.Response': 'inference/chat_completion_unified/UnifiedResponse.ts#L22-L25',
'inference.completion.Request': 'inference/completion/CompletionRequest.ts#L25-L63',
@@ -2994,9 +2999,9 @@
'sql.get_async.Response': 'sql/get_async/SqlGetAsyncResponse.ts#L23-L60',
'sql.get_async_status.Request': 'sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L45',
'sql.get_async_status.Response': 'sql/get_async_status/SqlGetAsyncStatusResponse.ts#L23-L55',
-'sql.query.Request': 'sql/query/QuerySqlRequest.ts#L28-L152',
+'sql.query.Request': 'sql/query/QuerySqlRequest.ts#L27-L151',
'sql.query.Response': 'sql/query/QuerySqlResponse.ts#L23-L60',
-'sql.query.SqlFormat': 'sql/query/QuerySqlRequest.ts#L154-L162',
+'sql.query.SqlFormat': 'sql/query/QuerySqlRequest.ts#L153-L161',
'sql.translate.Request': 'sql/translate/TranslateSqlRequest.ts#L25-L65',
'sql.translate.Response': 'sql/translate/TranslateSqlResponse.ts#L27-L37',
'ssl.certificates.CertificateInformation': 'ssl/certificates/types.ts#L22-L57',
@@ -3288,10 +3293,10 @@
if (hash.length > 1) {
hash = hash.substring(1);
}
- window.location = "https://github.com/elastic/elasticsearch-specification/tree/3e1ec6798fc5c8ea1b48ce42a98e9005dc6bde27/specification/" + (paths[hash] || "");
+ window.location = "https://github.com/elastic/elasticsearch-specification/tree/d61890b2deddf1eaaa6c6fd2d663e727d3a3ff26/specification/" + (paths[hash] || "");
- Please see the Elasticsearch API specification.
+ Please see the Elasticsearch API specification.
client.helpers.*
BulkAllObservable
Elasticsearch::Helpers::BulkHelper
client.helpers.*
* BulkAllObservable
Elasticsearch::Helpers::BulkHelper
max_docs
documents into the
* target or it has gone through every document in the source query.
*
+ *
+ * wait_for_completion=true
(default), the
+ * request fails if the node shuts down.wait_for_completion=false
, a task id is
+ * returned, which can be used via the task management API to monitor, debug, or
+ * cancel the task. The task may disappear or fail if the node shuts down. When
+ * retrying a failed reindex operation, it might be necessary to set
+ * conflicts=proceed
or to first delete the partial destination
+ * index. Additionally, dry runs, checking disk space, and fetching index
+ * recovery information can help address the root cause.max_docs
documents into the
* target or it has gone through every document in the source query.
*
+ *
+ * wait_for_completion=true
(default), the
+ * request fails if the node shuts down.wait_for_completion=false
, a task id is
+ * returned, which can be used via the task management API to monitor, debug, or
+ * cancel the task. The task may disappear or fail if the node shuts down. When
+ * retrying a failed reindex operation, it might be necessary to set
+ * conflicts=proceed
or to first delete the partial destination
+ * index. Additionally, dry runs, checking disk space, and fetching index
+ * recovery information can help address the root cause.client.helpers.*
BulkAllObservable
Elasticsearch::Helpers::BulkHelper
client.helpers.*
BulkAllObservable
Elasticsearch::Helpers::BulkHelper
client.helpers.*
* BulkAllObservable
Elasticsearch::Helpers::BulkHelper
+ *
+ * wait_for_completion=true
(default), the
+ * request fails if the node shuts down.wait_for_completion=false
, a task id is
+ * returned, which can be used via the task management API to monitor, debug, or
+ * cancel the task. The task may disappear or fail if the node shuts down. When
+ * retrying a failed reindex operation, it might be necessary to set
+ * conflicts=proceed
or to first delete the partial destination
+ * index. Additionally, dry runs, checking disk space, and fetching index
+ * recovery information can help address the root cause.
+ *
+ * wait_for_completion=true
(default), the
+ * request fails if the node shuts down.wait_for_completion=false
, a task id is
+ * returned, which can be used via the task management API to monitor, debug, or
+ * cancel the task. The task may disappear or fail if the node shuts down. When
+ * retrying a failed reindex operation, it might be necessary to set
+ * conflicts=proceed
or to first delete the partial destination
+ * index. Additionally, dry runs, checking disk space, and fetching index
+ * recovery information can help address the root cause.client.helpers.*
BulkAllObservable
Elasticsearch::Helpers::BulkHelper
max_docs
documents into the
* target or it has gone through every document in the source query.
*
+ *
+ * wait_for_completion=true
(default), the
+ * request fails if the node shuts down.wait_for_completion=false
, a task id is
+ * returned, which can be used via the task management API to monitor, debug, or
+ * cancel the task. The task may disappear or fail if the node shuts down. When
+ * retrying a failed reindex operation, it might be necessary to set
+ * conflicts=proceed
or to first delete the partial destination
+ * index. Additionally, dry runs, checking disk space, and fetching index
+ * recovery information can help address the root cause.