lib/elasticsearch/api/actions/index.rb in elasticsearch-api-8.12.2 vs lib/elasticsearch/api/actions/index.rb in elasticsearch-api-8.13.0
- old
+ new
@@ -34,20 +34,20 @@
# @option arguments [String] :version_type Specific version type (options: internal, external, external_gte)
# @option arguments [Number] :if_seq_no only perform the index operation if the last operation that has changed the document has the specified sequence number
# @option arguments [Number] :if_primary_term only perform the index operation if the last operation that has changed the document has the specified primary term
# @option arguments [String] :pipeline The pipeline id to preprocess incoming documents with
# @option arguments [Boolean] :require_alias When true, requires destination to be an alias. Default is false
+ # @option arguments [Boolean] :require_data_stream When true, requires the destination to be a data stream (existing or to-be-created). Default is false
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The document (*Required*)
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/docs-index_.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/docs-index_.html
#
def index(arguments = {})
- request_opts = { endpoint: arguments[:endpoint] || "index" }
+ request_opts = { endpoint: arguments[:endpoint] || 'index' }
- defined_params = [:index, :id].inject({}) do |set_variables, variable|
+ defined_params = %i[index id].each_with_object({}) do |variable, set_variables|
set_variables[variable] = arguments[variable] if arguments.key?(variable)
- set_variables
end
request_opts[:defined_params] = defined_params unless defined_params.empty?
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]