lib/elasticsearch/api/actions/watcher/ack_watch.rb in elasticsearch-api-8.12.2 vs lib/elasticsearch/api/actions/watcher/ack_watch.rb in elasticsearch-api-8.13.0

- old
+ new

@@ -26,17 +26,16 @@ # # @option arguments [String] :watch_id Watch ID # @option arguments [List] :action_id A comma-separated list of the action ids to be acked # @option arguments [Hash] :headers Custom HTTP headers # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/watcher-api-ack-watch.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/watcher-api-ack-watch.html # def ack_watch(arguments = {}) - request_opts = { endpoint: arguments[:endpoint] || "watcher.ack_watch" } + request_opts = { endpoint: arguments[:endpoint] || 'watcher.ack_watch' } - defined_params = [:watch_id, :action_id].inject({}) do |set_variables, variable| + defined_params = %i[watch_id action_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 'watch_id' missing" unless arguments[:watch_id]