From 45a07325af81f17b821b20cf1910fa44ad2a0764 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Fri, 14 Nov 2025 09:47:15 +0000 Subject: [PATCH] [API] Adds note about Serverless only to project.tags Generates 469fd6b822a8ad039ffde61fd2ce755205d14292 --- .../lib/elasticsearch/api/actions/async_search/submit.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb | 2 +- .../lib/elasticsearch/api/actions/cluster/health.rb | 2 +- .../lib/elasticsearch/api/actions/cluster/state.rb | 2 +- .../lib/elasticsearch/api/actions/indices/data_streams_stats.rb | 2 +- .../lib/elasticsearch/api/actions/indices/delete.rb | 2 +- .../elasticsearch/api/actions/indices/delete_data_lifecycle.rb | 2 +- .../api/actions/indices/delete_data_stream_options.rb | 2 +- .../lib/elasticsearch/api/actions/indices/exists_alias.rb | 2 +- .../lib/elasticsearch/api/actions/indices/field_usage_stats.rb | 2 +- .../lib/elasticsearch/api/actions/indices/forcemerge.rb | 2 +- .../lib/elasticsearch/api/actions/indices/get_alias.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/actions/indices/open.rb | 2 +- .../api/actions/indices/reload_search_analyzers.rb | 2 +- .../lib/elasticsearch/api/actions/indices/stats.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/actions/msearch.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/actions/project/tags.rb | 1 + elasticsearch-api/lib/elasticsearch/api/actions/rank_eval.rb | 2 +- .../lib/elasticsearch/api/actions/search_template.rb | 2 +- .../api/actions/searchable_snapshots/clear_cache.rb | 2 +- .../lib/elasticsearch/api/actions/update_by_query.rb | 2 +- elasticsearch-api/lib/elasticsearch/api/version.rb | 2 +- 23 files changed, 23 insertions(+), 22 deletions(-) diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb b/elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb index cd5a2c9240..f29bcff300 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb @@ -44,7 +44,7 @@ module Actions # @option arguments [String] :default_operator The default operator for query string query (AND or OR) Server default: or. # @option arguments [String] :df The field to use as default where no field prefix is given in the query string # @option arguments [String, Array] :docvalue_fields A comma-separated list of fields to return as the docvalue representation of a field for each hit - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :explain Specify whether to return detailed information about score computation as part of a hit # @option arguments [Boolean] :ignore_throttled Whether specified concrete, expanded or aliased indices should be ignored when throttled # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb b/elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb index 4e704ea7d3..f1fae4b37d 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb @@ -34,7 +34,7 @@ module Actions # or `:desc` as a suffix to the column name. # @option arguments [String, Array] :expand_wildcards The type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # It supports comma-separated values, such as `open,hidden`. + # It supports comma-separated values, such as `open,hidden`. Server default: all. # @option arguments [Time] :master_timeout The period to wait for a connection to the master node. # If the master node is not available before the timeout expires, the request fails and returns an error. # To indicated that the request should never timeout, you can set it to `-1`. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb b/elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb index c2da534a04..e6819e856a 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/cat/indices.rb @@ -37,7 +37,7 @@ module Actions # # @option arguments [String, Array] :index Comma-separated list of data streams, indices, and aliases used to limit the request. # Supports wildcards (`*`). To target all data streams and indices, omit this parameter or use `*` or `_all`. - # @option arguments [String, Array] :expand_wildcards The type of index that wildcard patterns can match. + # @option arguments [String, Array] :expand_wildcards The type of index that wildcard patterns can match. Server default: all. # @option arguments [String] :health The health status used to limit returned indices. By default, the response includes indices of any health status. # @option arguments [Boolean] :include_unloaded_segments If true, the response includes information from segments that are not loaded into memory. # @option arguments [Boolean] :pri If true, the response only includes information from primary shards. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/cluster/health.rb b/elasticsearch-api/lib/elasticsearch/api/actions/cluster/health.rb index f911af0d26..88302fd8fc 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/cluster/health.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/cluster/health.rb @@ -32,7 +32,7 @@ module Actions # The cluster status is controlled by the worst index status. # # @option arguments [String, Array] :index Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (`*`) are supported. To target all data streams and indices in a cluster, omit this parameter or use _all or `*`. - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: all. # @option arguments [String] :level Can be one of cluster, indices or shards. Controls the details level of the health information returned. Server default: cluster. # @option arguments [Boolean] :local If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the master node. # @option arguments [Time] :master_timeout Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/cluster/state.rb b/elasticsearch-api/lib/elasticsearch/api/actions/cluster/state.rb index bd74fc097c..60be0a88ec 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/cluster/state.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/cluster/state.rb @@ -40,7 +40,7 @@ module Actions # @option arguments [String, Array] :metric Limit the information returned to the specified metrics # @option arguments [String, Array] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) Server default: true. - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :flat_settings Return settings in flat format (default: false) # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false) diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/data_streams_stats.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/data_streams_stats.rb index 4a1e32b7c7..7444b14b17 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/data_streams_stats.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/data_streams_stats.rb @@ -29,7 +29,7 @@ module Actions # Wildcard expressions (`*`) are supported. # To target all data streams in a cluster, omit this parameter or use `*`. # @option arguments [String, Array] :expand_wildcards Type of data stream that wildcard patterns can match. - # Supports comma-separated values, such as `open,hidden`. Server default: open. + # Supports comma-separated values, such as `open,hidden`. Server default: open,closed. # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors # when they occur. # @option arguments [String, Array] :filter_path Comma-separated list of filters in dot notation which reduce the response diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete.rb index 0e1cf95530..38308d813f 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete.rb @@ -37,7 +37,7 @@ module Actions # This behavior applies even if the request targets other open indices. Server default: true. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. Server default: open. + # Supports comma-separated values, such as `open,hidden`. Server default: open,closed. # @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index. # @option arguments [Time] :master_timeout Period to wait for a connection to the master node. # If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_lifecycle.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_lifecycle.rb index 85322f6e3d..001d29db48 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_lifecycle.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_lifecycle.rb @@ -26,7 +26,7 @@ module Actions # Removes the data stream lifecycle from a data stream, rendering it not managed by the data stream lifecycle. # # @option arguments [String, Array] :name A comma-separated list of data streams of which the data stream lifecycle will be deleted; use `*` to get all data streams (*Required*) - # @option arguments [String, Array] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) + # @option arguments [String, Array] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) Server default: open. # @option arguments [Time] :master_timeout Specify timeout for connection to master Server default: 30s. # @option arguments [Time] :timeout Explicit timestamp for the document # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_stream_options.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_stream_options.rb index 231cf83857..832c4f2f01 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_stream_options.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/delete_data_stream_options.rb @@ -26,7 +26,7 @@ module Actions # Removes the data stream options from a data stream. # # @option arguments [String, Array] :name A comma-separated list of data streams of which the data stream options will be deleted; use `*` to get all data streams (*Required*) - # @option arguments [String, Array] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) + # @option arguments [String, Array] :expand_wildcards Whether wildcard expressions should get expanded to open or closed indices (default: open) Server default: open. # @option arguments [Time] :master_timeout Specify timeout for connection to master Server default: 30s. # @option arguments [Time] :timeout Explicit timestamp for the document # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/exists_alias.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/exists_alias.rb index 9b104710c4..77b0286c06 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/exists_alias.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/exists_alias.rb @@ -32,7 +32,7 @@ module Actions # This behavior applies even if the request targets other open indices. Server default: true. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. Server default: open. + # Supports comma-separated values, such as `open,hidden`. Server default: all. # @option arguments [Boolean] :ignore_unavailable If `false`, requests that include a missing data stream or index in the target indices or data streams return an error. # @option arguments [Time] :master_timeout Period to wait for a connection to the master node. # If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/field_usage_stats.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/field_usage_stats.rb index 981fd1b68a..eb4a9a6458 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/field_usage_stats.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/field_usage_stats.rb @@ -38,7 +38,7 @@ module Actions # For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. + # Supports comma-separated values, such as `open,hidden`. Server default: open. # @option arguments [Boolean] :ignore_unavailable If `true`, missing or closed indices are not included in the response. # @option arguments [String, Array] :fields Comma-separated list or wildcard expressions of fields to include in the statistics. # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/forcemerge.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/forcemerge.rb index 3355b76ab3..d125b45372 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/forcemerge.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/forcemerge.rb @@ -65,7 +65,7 @@ module Actions # # @option arguments [String, Array] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :flush Specify whether the index should be flushed after performing the operation (default: true) # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) # @option arguments [Integer] :max_num_segments The number of segments the index should be merged into (default: dynamic) diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/get_alias.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/get_alias.rb index 364dfe4bc7..ae383b9122 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/get_alias.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/get_alias.rb @@ -35,7 +35,7 @@ module Actions # This behavior applies even if the request targets other open indices. Server default: true. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. Server default: open. + # Supports comma-separated values, such as `open,hidden`. Server default: all. # @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index. # @option arguments [Time] :master_timeout Period to wait for a connection to the master node. # If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/open.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/open.rb index 8f81debf9c..5d57c98cf5 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/open.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/open.rb @@ -49,7 +49,7 @@ module Actions # This behavior applies even if the request targets other open indices. Server default: true. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. Server default: open. + # Supports comma-separated values, such as `open,hidden`. Server default: closed. # @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index. # @option arguments [Time] :master_timeout Period to wait for a connection to the master node. # If no response is received before the timeout expires, the request fails and returns an error. Server default: 30s. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/reload_search_analyzers.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/reload_search_analyzers.rb index 86667f0a8e..ec3423d6a2 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/reload_search_analyzers.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/reload_search_analyzers.rb @@ -36,7 +36,7 @@ module Actions # # @option arguments [String, Array] :index A comma-separated list of index names to reload analyzers for (*Required*) # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) # @option arguments [String] :resource Changed resource to reload analyzers from if applicable # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/indices/stats.rb b/elasticsearch-api/lib/elasticsearch/api/actions/indices/stats.rb index 187e81da8d..fa31a2e34a 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/indices/stats.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/indices/stats.rb @@ -36,7 +36,7 @@ module Actions # @option arguments [String, Array] :completion_fields Comma-separated list or wildcard expressions of fields to include in fielddata and suggest statistics. # @option arguments [String, Array] :expand_wildcards Type of index that wildcard patterns can match. If the request can target data streams, this argument # determines whether wildcard expressions match hidden data streams. Supports comma-separated values, - # such as `open,hidden`. + # such as `open,hidden`. Server default: open. # @option arguments [String, Array] :fielddata_fields Comma-separated list or wildcard expressions of fields to include in fielddata statistics. # @option arguments [String, Array] :fields Comma-separated list or wildcard expressions of fields to include in the statistics. # @option arguments [Boolean] :forbid_closed_indices If true, statistics are not collected from closed indices. Server default: true. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/msearch.rb b/elasticsearch-api/lib/elasticsearch/api/actions/msearch.rb index b4eb1e173e..328fc06e93 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/msearch.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/msearch.rb @@ -44,7 +44,7 @@ module Actions # @option arguments [String, Array] :index Comma-separated list of data streams, indices, and index aliases to search. # @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. This behavior applies even if the request targets other open indices. For example, a request targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar. # @option arguments [Boolean] :ccs_minimize_roundtrips If true, network roundtrips between the coordinating node and remote clusters are minimized for cross-cluster search requests. Server default: true. - # @option arguments [String, Array] :expand_wildcards Type of index that wildcard expressions can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. + # @option arguments [String, Array] :expand_wildcards Type of index that wildcard expressions can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Server default: open. # @option arguments [Boolean] :ignore_throttled If true, concrete, expanded or aliased indices are ignored when frozen. # @option arguments [Boolean] :ignore_unavailable If true, missing or closed indices are not included in the response. # @option arguments [Boolean] :include_named_queries_score Indicates whether hit.matched_queries should be rendered as a map that includes diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/project/tags.rb b/elasticsearch-api/lib/elasticsearch/api/actions/project/tags.rb index 09674b04f1..8ffafb3f1f 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/project/tags.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/project/tags.rb @@ -24,6 +24,7 @@ module Project module Actions # Get tags. # Get the tags that are defined for the project. + # This API is only available in Serverless. # This functionality is in technical preview and may be changed or removed in a future # release. Elastic will apply best effort to fix any issues, but features in technical # preview are not subject to the support SLA of official GA features. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/rank_eval.rb b/elasticsearch-api/lib/elasticsearch/api/actions/rank_eval.rb index eeec317a6d..ea0f23e8b0 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/rank_eval.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/rank_eval.rb @@ -28,7 +28,7 @@ module Actions # Wildcard (`*`) expressions are supported. # To target all data streams and indices in a cluster, omit this parameter or use `_all` or `*`. # @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. This behavior applies even if the request targets other open indices. 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. - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :ignore_unavailable If `true`, missing or closed indices are not included in the response. # @option arguments [String] :search_type Search operation type # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/search_template.rb b/elasticsearch-api/lib/elasticsearch/api/actions/search_template.rb index 57509caec8..142bee5041 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/search_template.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/search_template.rb @@ -31,7 +31,7 @@ module Actions # @option arguments [Boolean] :ccs_minimize_roundtrips If `true`, network round-trips are minimized for cross-cluster search requests. # @option arguments [String, Array] :expand_wildcards The type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # Supports comma-separated values, such as `open,hidden`. + # Supports comma-separated values, such as `open,hidden`. Server default: open. # @option arguments [Boolean] :explain If `true`, the response includes additional details about score computation as part of a hit. # @option arguments [Boolean] :ignore_throttled If `true`, specified concrete, expanded, or aliased indices are not included in the response when throttled. Server default: true. # @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index. diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/searchable_snapshots/clear_cache.rb b/elasticsearch-api/lib/elasticsearch/api/actions/searchable_snapshots/clear_cache.rb index 54a5a7015f..ff9813efe0 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/searchable_snapshots/clear_cache.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/searchable_snapshots/clear_cache.rb @@ -30,7 +30,7 @@ module Actions # # @option arguments [String, Array] :index A comma-separated list of data streams, indices, and aliases to clear from the cache. # It supports wildcards (`*`). - # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. + # @option arguments [String, Array] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. Server default: open. # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) # @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/update_by_query.rb b/elasticsearch-api/lib/elasticsearch/api/actions/update_by_query.rb index a2dae457d6..bb976b2180 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/update_by_query.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/update_by_query.rb @@ -109,7 +109,7 @@ module Actions # This parameter can be used only when the `q` query string parameter is specified. # @option arguments [String, Array] :expand_wildcards The type of index that wildcard patterns can match. # If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. - # It supports comma-separated values, such as `open,hidden`. + # It supports comma-separated values, such as `open,hidden`. Server default: open. # @option arguments [Integer] :from Skips the specified number of documents. Server default: 0. # @option arguments [Boolean] :ignore_unavailable If `false`, the request returns an error if it targets a missing or closed index. # @option arguments [Boolean] :lenient If `true`, format-based query failures (such as providing text to a numeric field) in the query string will be ignored. diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index 03708c1884..df2f0ab3a7 100644 --- a/elasticsearch-api/lib/elasticsearch/api/version.rb +++ b/elasticsearch-api/lib/elasticsearch/api/version.rb @@ -18,6 +18,6 @@ module Elasticsearch module API VERSION = '9.3.0'.freeze - ES_SPECIFICATION_COMMIT = '4d3b72eea82e09226241e8b6837c8a1c15d02eca'.freeze + ES_SPECIFICATION_COMMIT = '469fd6b822a8ad039ffde61fd2ce755205d14292'.freeze end end