public void MergeFrom(TapDSConfig other)
 {
     if (other == null)
     {
         return;
     }
     if (other.configSource_ != null)
     {
         if (configSource_ == null)
         {
             ConfigSource = new global::Envoy.Api.V2.Core.ConfigSource();
         }
         ConfigSource.MergeFrom(other.ConfigSource);
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }