class Seahorse::Client::Plugins::ParamValidation
@seahorse.client.option [Boolean] :validate_params (true)
When `true`, request parameters are validated before sending the request.
Public Instance Methods
add_handlers(handlers, config)
click to toggle source
# File lib/seahorse/client/plugins/param_validation.rb, line 12 def add_handlers(handlers, config) if config.validate_params handlers.add(Handler, step: :validate, priority: 50) end end