fog--fog/lib/fog/terremark/parsers/shared/public_ip.rb

27 lines
449 B
Ruby

module Fog
module Parsers
module Terremark
module Shared
class PublicIp < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'Href', 'Name'
@response[name.downcase] = @value
when 'Id'
@response['id'] = @value.to_i
end
end
end
end
end
end
end