lib/elasticsearch/api/actions/indices/rollover.rb in elasticsearch-api-7.6.0 vs lib/elasticsearch/api/actions/indices/rollover.rb in elasticsearch-api-7.7.0.pre
- old
+ new
@@ -14,18 +14,20 @@
# @option arguments [Boolean] :include_type_name Whether a type should be included in the body of the mappings.
# @option arguments [Time] :timeout Explicit operation timeout
# @option arguments [Boolean] :dry_run If set to true the rollover action will only be validated but not actually performed even if a condition matches. The default is false
# @option arguments [Time] :master_timeout Specify timeout for connection to master
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the newly created rollover index before the operation returns.
-
+ # @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The conditions that needs to be met for executing rollover
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-rollover-index.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-rollover-index.html
#
def rollover(arguments = {})
raise ArgumentError, "Required argument 'alias' missing" unless arguments[:alias]
+ headers = arguments.delete(:headers) || {}
+
arguments = arguments.clone
_alias = arguments.delete(:alias)
_new_index = arguments.delete(:new_index)
@@ -37,10 +39,10 @@
"#{Utils.__listify(_alias)}/_rollover"
end
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
body = arguments[:body]
- perform_request(method, path, params, body).body
+ perform_request(method, path, params, body, headers).body
end
# Register this action with its valid params when the module is loaded.
#
# @since 6.2.0