Skip to content

Commit 6828e76

Browse files
committed
[API] Generates code to ddbb639a46f7019d7f8cc479b623dd4b23969112
1 parent ee423bf commit 6828e76

6 files changed

Lines changed: 6 additions & 5 deletions

File tree

elasticsearch-api/lib/elasticsearch/api/actions/esql/delete_view.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# release. Elastic will apply best effort to fix any issues, but features in technical
2929
# preview are not subject to the support SLA of official GA features.
3030
#
31-
# @option arguments [String] :name The view name to remove. (*Required*)
31+
# @option arguments [String, Array] :name The view name to remove. (*Required*)
3232
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3333
# when they occur.
3434
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response

elasticsearch-api/lib/elasticsearch/api/actions/indices/split.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module Actions
4747
# * The target index must not exist.
4848
# * The source index must have fewer primary shards than the target index.
4949
# * The number of primary shards in the target index must be a multiple of the number of primary shards in the source index.
50+
# * The number of primary shards in the target index must be a divisor of the source index's `index.number_of_routing_shards`.
5051
# * The node handling the split process must have sufficient free disk space to accommodate a second copy of the existing index.
5152
#
5253
# @option arguments [String] :index Name of the source index to split. (*Required*)

elasticsearch-api/lib/elasticsearch/api/actions/inference/chat_completion_unified.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# To determine whether a given inference service supports this task type, please see the page for that service.
3232
#
3333
# @option arguments [String] :inference_id The inference Id (*Required*)
34-
# @option arguments [Time] :timeout Specifies the amount of time to wait for the inference request to complete. Server default: 30s.
34+
# @option arguments [Time] :timeout Specifies the amount of time to wait for the inference request to complete. Server default: 120s.
3535
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3636
# when they occur.
3737
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response

elasticsearch-api/lib/elasticsearch/api/actions/inference/completion.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# This API requires the `monitor_inference` cluster privilege (the built-in `inference_admin` and `inference_user` roles grant this privilege).
3030
#
3131
# @option arguments [String] :inference_id The inference Id (*Required*)
32-
# @option arguments [Time] :timeout Specifies the amount of time to wait for the inference request to complete. Server default: 30s.
32+
# @option arguments [Time] :timeout Specifies the amount of time to wait for the inference request to complete. Server default: 120s.
3333
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3434
# when they occur.
3535
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response

elasticsearch-api/lib/elasticsearch/api/actions/inference/stream_completion.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module Actions
4444
# @option arguments [Hash] :headers Custom HTTP headers
4545
# @option arguments [Hash] :body request body
4646
#
47-
# @see https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-stream-inference
47+
# @see https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-inference-stream-completion
4848
#
4949
def stream_completion(arguments = {})
5050
request_opts = { endpoint: arguments[:endpoint] || 'inference.stream_completion' }

elasticsearch-api/lib/elasticsearch/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
module Elasticsearch
1919
module API
2020
VERSION = '9.5.0'.freeze
21-
ES_SPECIFICATION_COMMIT = '1bd5fad6c1ba96a1678b69ca77537cbabd69e7f5'.freeze
21+
ES_SPECIFICATION_COMMIT = 'ddbb639a46f7019d7f8cc479b623dd4b23969112'.freeze
2222
end
2323
end

0 commit comments

Comments
 (0)