# File lib/fog/parsers/terremark/internet_service.rb, line 10 def start_element(name, attributes) super case name when "Href" data = extract_attributes(attributes) if @in_public_ip_address @response["PublicIpAddress"][name] = data else @response[name] = data end when "PublicIpAddress" @in_public_ip_address = true end end