Skip to content

Commit 23b862e

Browse files
committed
[API] Updates generated code to 98ec7ac24c4fbb1acb2abccf8325251ad4a1e4c6
1 parent 3fffdac commit 23b862e

File tree

13 files changed

+29
-21
lines changed

13 files changed

+29
-21
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
#
3636
# @option arguments [String] :time The unit used to display time values.
3737
# @option arguments [Boolean] :ts If true, returns `HH:MM:SS` and Unix epoch timestamps. Server default: true.
38-
# @option arguments [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
38+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3939
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
4040
# Sorting defaults to ascending and can be changed by setting `:asc`
4141
# or `:desc` as a suffix to the column name.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module Actions
4444
# @option arguments [Boolean] :pri If true, the response only includes information from primary shards.
4545
# @option arguments [String] :time The unit used to display time values.
4646
# @option arguments [Time] :master_timeout Period to wait for a connection to the master node. Server default: 30s.
47-
# @option arguments [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
47+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
4848
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
4949
# Sorting defaults to ascending and can be changed by setting `:asc`
5050
# or `:desc` as a suffix to the column name.

elasticsearch-api/lib/elasticsearch/api/actions/cat/master.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 master node, including the ID, bound IP address, and name.
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 [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
29+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3030
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3131
# Sorting defaults to ascending and can be changed by setting `:asc`
3232
# or `:desc` as a suffix to the column name.

elasticsearch-api/lib/elasticsearch/api/actions/cat/nodeattrs.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 custom node attributes.
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 [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
29+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3030
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3131
# Sorting defaults to ascending and can be changed by setting `:asc`
3232
# or `:desc` as a suffix to the column name.

elasticsearch-api/lib/elasticsearch/api/actions/cat/pending_tasks.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 cluster-level changes that have not yet taken effect.
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 pending cluster tasks API.
2828
#
29-
# @option arguments [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
29+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3030
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3131
# Sorting defaults to ascending and can be changed by setting `:asc`
3232
# or `:desc` as a suffix to the column name.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# Get a list of plugins running on each node of 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 [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
29+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3030
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3131
# Sorting defaults to ascending and can be changed by setting `:asc`
3232
# or `:desc` as a suffix to the column name.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :detailed If `true`, the response includes detailed information about shard recoveries.
3535
# @option arguments [Array<String>] :nodes Unique node identifiers, which are used to limit the response.
3636
# @option arguments [String] :parent_task_id The parent task identifier, which is used to limit the response.
37-
# @option arguments [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
37+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3838
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3939
# Sorting defaults to ascending and can be changed by setting `:asc`
4040
# or `:desc` as a suffix to the column name.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
#
3030
# @option arguments [String] :name The name of the template to return.
3131
# Accepts wildcard expressions. If omitted, all templates are returned.
32-
# @option arguments [String, Array<String>] :h List of columns to appear in the response. Supports simple wildcards.
32+
# @option arguments [String, Array<String>] :h A comma-separated list of columns names to display. It supports simple wildcards.
3333
# @option arguments [String, Array<String>] :s List of columns that determine how the table should be sorted.
3434
# Sorting defaults to ascending and can be changed by setting `:asc`
3535
# or `:desc` as a suffix to the column name.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :allow_no_indices If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices.
3636
# This behavior applies even if the request targets other open indices.
3737
# For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`. Server default: true.
38+
# @option arguments [String, Array<String>] :mode Filter indices by index mode - standard, lookup, time_series, etc. Comma-separated list of IndexMode. Empty means no filter.
3839
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3940
# when they occur.
4041
# @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/rollover.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module API
2323
module Indices
2424
module Actions
2525
# Roll over to a new index.
26-
# TIP: It is recommended to use the index lifecycle rollover action to automate rollovers.
26+
# TIP: We recommend using the index lifecycle rollover action to automate rollovers. However, Serverless does not support Index Lifecycle Management (ILM), so don't use this approach in the Serverless context.
2727
# The rollover API creates a new index for a data stream or index alias.
2828
# The API behavior depends on the rollover target.
2929
# **Roll over a data stream**

0 commit comments

Comments
 (0)