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