lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-8.11.2 vs lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-8.12.0
- old
+ new
@@ -26,17 +26,18 @@
#
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
# @option arguments [Time] :master_timeout Specify timeout for connection to master
# @option arguments [Time] :timeout Explicit operation timeout
# @option arguments [Boolean] :preserve_existing Whether to update existing settings. If set to `true` existing settings on an index remain unchanged, the default is `false`
+ # @option arguments [Boolean] :reopen Whether to close and reopen the index to apply non-dynamic settings. If set to `true` the indices to which the settings are being applied will be closed temporarily and then reopened in order to apply the changes. The default is `false`
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
# @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] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, hidden, none, all)
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The index settings to be updated (*Required*)
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.11/indices-update-settings.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/indices-update-settings.html
#
def put_settings(arguments = {})
request_opts = { endpoint: arguments[:endpoint] || "indices.put_settings" }
defined_params = [:index].inject({}) do |set_variables, variable|