Skip to content

Commit fb53cf8

Browse files
committed
[API] Updates source code docs to 1aa68abf07e4d0f9cbc162eef64d0ae508e65366
1 parent 05fd4f3 commit fb53cf8

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/cat/nodes.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# Get information about the nodes in a cluster.
2727
# IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API.
2828
#
29-
# @option arguments [Boolean, String] :full_id If `true`, return the full node ID. If `false`, return the shortened node ID. Server default: false.
29+
# @option arguments [Boolean] :full_id If `true`, return the full node ID. If `false`, return the shortened node ID.
3030
# @option arguments [Boolean] :include_unloaded_segments If true, the response includes information from segments that are not loaded into memory.
3131
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display.
3232
# It supports simple wildcards. Server default: ip,hp,rp,r,m,n,cpu,l.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ module Actions
2727
# For data streams, the API runs the refresh operation on the stream’s backing indices.
2828
# By default, Elasticsearch periodically refreshes indices every second, but only on indices that have received one search request or more in the last 30 seconds.
2929
# You can change this default interval with the `index.refresh_interval` setting.
30+
# In Elastic Cloud Serverless, the default refresh interval is 5 seconds across all indices.
3031
# Refresh requests are synchronous and do not return a response until the refresh operation completes.
3132
# Refreshes are resource-intensive.
3233
# To ensure good cluster performance, it's recommended to wait for Elasticsearch's periodic refresh rather than performing an explicit refresh when possible.

elasticsearch-api/lib/elasticsearch/api/actions/machine_learning/get_overall_buckets.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module Actions
5959
# the optional `bucket_span` parameter.
6060
# @option arguments [String, Time] :end Returns overall buckets with timestamps earlier than this time.
6161
# @option arguments [Boolean] :exclude_interim If `true`, the output excludes interim results.
62-
# @option arguments [Float, String] :overall_score Returns overall buckets with overall scores greater than or equal to this
62+
# @option arguments [Float] :overall_score Returns overall buckets with overall scores greater than or equal to this
6363
# value.
6464
# @option arguments [String, Time] :start Returns overall buckets with timestamps after this time.
6565
# @option arguments [Integer] :top_n The number of top anomaly detection job bucket scores to be used in the

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.2.0'.freeze
21-
ES_SPECIFICATION_COMMIT = '06148858372b097641efbe3b712259eee63b8e11'.freeze
21+
ES_SPECIFICATION_COMMIT = '1aa68abf07e4d0f9cbc162eef64d0ae508e65366'.freeze
2222
end
2323
end

0 commit comments

Comments
 (0)