Class: Aws::Stubbing::Protocols::RestJson Private
- Defined in:
- lib/aws-sdk-core/stubbing/protocols/rest_json.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
Methods inherited from Rest
Instance Method Details
#body_for(_, _, rules, data) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
6 7 8 |
# File 'lib/aws-sdk-core/stubbing/protocols/rest_json.rb', line 6 def body_for(_, _, rules, data) Aws::Json::Builder.new(rules).serialize(data) end |
#stub_error(error_code) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/aws-sdk-core/stubbing/protocols/rest_json.rb', line 10 def stub_error(error_code) http_resp = Seahorse::Client::Http::Response.new http_resp.status_code = 400 http_resp.body = <<-JSON.strip { "code": #{error_code.inspect}, "message": "stubbed-response-error-message" } JSON http_resp end |