lib/elasticsearch/api/actions/index.rb in elasticsearch-api-8.10.0 vs lib/elasticsearch/api/actions/index.rb in elasticsearch-api-8.11.0

- old
+ new

@@ -37,13 +37,21 @@ # @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 [Hash] :headers Custom HTTP headers # @option arguments [Hash] :body The document (*Required*) # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.10/docs-index_.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.11/docs-index_.html # def index(arguments = {}) + request_opts = { endpoint: arguments[:endpoint] || "index" } + + defined_params = [:index, :id].inject({}) do |set_variables, variable| + 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] arguments = arguments.clone headers = arguments.delete(:headers) || {} @@ -61,10 +69,10 @@ "#{Utils.__listify(_index)}/_doc" end params = Utils.process_params(arguments) Elasticsearch::API::Response.new( - perform_request(method, path, params, body, headers) + perform_request(method, path, params, body, headers, request_opts) ) end end end end