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/allocate_address.rb

20 lines
347 B
Ruby
Raw Normal View History

module Fog
module Parsers
module Compute
module AWS
class AllocateAddress < Fog::Parsers::Base
def end_element(name)
case name
2012-02-13 21:14:15 -05:00
when 'publicIp', 'requestId', 'domain', 'allocationId'
@response[name] = value
end
end
end
end
end
end
end