1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/compute/describe_addresses.rb

31 lines
648 B
Ruby
Raw Normal View History

module Fog
module Parsers
module Compute
module AWS
class DescribeAddresses < Fog::Parsers::Base
def reset
@address = {}
2009-08-01 04:15:44 -04:00
@response = { 'addressesSet' => [] }
end
def end_element(name)
case name
2012-02-20 16:16:52 -05:00
when 'instanceId', 'publicIp', 'domain', 'allocationId', 'associationId'
@address[name] = value
when 'item'
2009-08-01 04:15:44 -04:00
@response['addressesSet'] << @address
2009-10-23 16:40:56 -04:00
@address = {}
when 'requestId'
@response[name] = value
end
end
end
end
end
end
end