mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
386 B
Ruby
22 lines
386 B
Ruby
|
module Fog
|
||
|
module Parsers
|
||
|
module AWS
|
||
|
module EC2
|
||
|
|
||
|
class AllocateAddress < Fog::Parsers::Base
|
||
|
|
||
|
def end_element(name)
|
||
|
case name
|
||
|
when 'requestId'
|
||
|
@response[:request_id] = @value
|
||
|
when 'publicIp'
|
||
|
@response[:public_ip] = @value
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|