lib/elasticsearch/api/actions/search_application/get.rb in elasticsearch-api-8.12.2 vs lib/elasticsearch/api/actions/search_application/get.rb in elasticsearch-api-8.13.0
- old
+ new
@@ -29,17 +29,16 @@
# support SLA of official GA features.
#
# @option arguments [String] :name The name of the search application
# @option arguments [Hash] :headers Custom HTTP headers
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/get-search-application.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/get-search-application.html
#
def get(arguments = {})
- request_opts = { endpoint: arguments[:endpoint] || "search_application.get" }
+ request_opts = { endpoint: arguments[:endpoint] || 'search_application.get' }
- defined_params = [:name].inject({}) do |set_variables, variable|
+ defined_params = [:name].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 'name' missing" unless arguments[:name]