Class: Aws::Rest::Response::Body Private
- Inherits:
-
Object
- Object
- Aws::Rest::Response::Body
- Includes:
- Seahorse::Model::Shapes
- Defined in:
- lib/aws-sdk-core/rest/response/body.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
- #apply(body, data) ⇒ Object private
-
#initialize(parser_class, rules) ⇒ Body
constructor
private
A new instance of Body.
Constructor Details
#initialize(parser_class, rules) ⇒ Body
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.
Returns a new instance of Body.
10 11 12 13 |
# File 'lib/aws-sdk-core/rest/response/body.rb', line 10 def initialize(parser_class, rules) @parser_class = parser_class @rules = rules end |
Instance Method Details
#apply(body, 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.
17 18 19 20 21 22 23 24 25 |
# File 'lib/aws-sdk-core/rest/response/body.rb', line 17 def apply(body, data) if streaming? data[@rules[:payload]] = body elsif @rules[:payload] data[@rules[:payload]] = parse(body.read, @rules[:payload_member]) elsif !@rules.shape.member_names.empty? parse(body.read, @rules, data) end end |