Class: Fog::Parsers::Compute::AWS::DescribeAddresses
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::Compute::AWS::DescribeAddresses
- Defined in:
- lib/fog/aws/parsers/compute/describe_addresses.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/aws/parsers/compute/describe_addresses.rb', line 11 def end_element(name) case name when 'instanceId', 'publicIp', 'domain', 'allocationId', 'associationId', 'networkInterfaceId', 'networkInterfaceOwnerId' @address[name] = value when 'item' @response['addressesSet'] << @address @address = {} when 'requestId' @response[name] = value end end |
#reset ⇒ Object
6 7 8 9 |
# File 'lib/fog/aws/parsers/compute/describe_addresses.rb', line 6 def reset @address = {} @response = { 'addressesSet' => [] } end |