# File lib/fog/terremark/parsers/shared/internet_service.rb, line 13
          def start_element(name, attributes)
            super
            case name
            when 'Href'
              data = {}
              until attributes.empty?
                data[attributes.shift] = attributes.shift
              end
              if @in_public_ip_address
                @response['PublicIpAddress'][name] = data
              else
                @response[name] = data
              end
            when 'PublicIpAddress'
              @in_public_ip_address = true
            end
          end