func()

in graph/registry_credential.go [128:143]


func (s *RegistryCredential) Equals(t *RegistryCredential) bool {
	if s == nil && t == nil {
		return true
	}
	if s == nil || t == nil {
		return false
	}

	return s.Registry == t.Registry &&
		s.Username == t.Username &&
		s.UsernameType == t.UsernameType &&
		s.Password == t.Password &&
		s.PasswordType == t.PasswordType &&
		s.Identity == t.Identity &&
		s.AadResourceID == t.AadResourceID
}