# File lib/fog/aws/parsers/compute/network_interface_parser.rb, line 19
          def start_element(name, attrs = [])
            super
            case name
            when 'tagSet'
              @in_tag_set = true
              @tag        = {}
            when 'groupSet'
              @in_group_set = true
              @group        = {}
            when 'attachment'
              @in_attachment = true
              @attachment    = {}
            when 'association'
              @in_association = true
              @association    = {}
            when 'privateIpAddressesSet'
              @in_private_ip_addresses = true
              @private_ip_addresses  = []
              @private_ip_address = {}
            end
          end