lib/elasticsearch/api/actions/mtermvectors.rb in elasticsearch-api-7.17.11 vs lib/elasticsearch/api/actions/mtermvectors.rb in elasticsearch-api-8.0.0.pre1

- old
+ new

@@ -19,11 +19,10 @@ module API module Actions # Returns multiple termvectors in one request. # # @option arguments [String] :index The index in which the document resides. - # @option arguments [String] :type The type of the document. # @option arguments [List] :ids A comma-separated list of documents ids. You must define ids as parameter or set "ids" or "docs" in the request body # @option arguments [Boolean] :term_statistics Specifies if total term frequency and document frequency should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [Boolean] :field_statistics Specifies if document count, sum of document frequencies and sum of total term frequencies should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [List] :fields A comma-separated list of fields to return. Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [Boolean] :offsets Specifies if term offsets should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs". @@ -31,69 +30,44 @@ # @option arguments [Boolean] :payloads Specifies if term payloads should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random) .Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [String] :routing Specific routing value. Applies to all returned documents unless otherwise specified in body "params" or "docs". # @option arguments [Boolean] :realtime Specifies if requests are real-time as opposed to near-real-time (default: true). # @option arguments [Number] :version Explicit version number for concurrency control - # @option arguments [String] :version_type Specific version type (options: internal, external, external_gte, force) + # @option arguments [String] :version_type Specific version type (options: internal, external, external_gte) # @option arguments [Hash] :headers Custom HTTP headers # @option arguments [Hash] :body Define ids, documents, parameters or a list of parameters per document here. You must at least provide a list of document ids. See documentation. # - # *Deprecation notice*: - # Specifying types in urls has been deprecated - # Deprecated since version 7.0.0 + # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-multi-termvectors.html # - # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.17/docs-multi-termvectors.html - # def mtermvectors(arguments = {}) headers = arguments.delete(:headers) || {} + body = if (ids = arguments.delete(:ids)) + { :ids => ids } + else + arguments.delete(:body) + end + arguments = arguments.clone - ids = arguments.delete(:ids) _index = arguments.delete(:index) - _type = arguments.delete(:type) - - method = if arguments[:body] + method = if body Elasticsearch::API::HTTP_POST else Elasticsearch::API::HTTP_GET end - path = if _index && _type - "#{Utils.__listify(_index)}/#{Utils.__listify(_type)}/_mtermvectors" - elsif _index + path = if _index "#{Utils.__listify(_index)}/_mtermvectors" else "_mtermvectors" end - params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) + params = Utils.process_params(arguments) - if ids - body = { :ids => ids } - else - body = arguments[:body] - end - perform_request(method, path, params, body, headers).body + Elasticsearch::API::Response.new( + perform_request(method, path, params, body, headers) + ) end - - # Register this action with its valid params when the module is loaded. - # - # @since 6.2.0 - ParamsRegistry.register(:mtermvectors, [ - :ids, - :term_statistics, - :field_statistics, - :fields, - :offsets, - :positions, - :payloads, - :preference, - :routing, - :realtime, - :version, - :version_type - ].freeze) end end end