Method: Harbor2Client::LdapConf#==

Defined in:
lib/harbor2_client/models/ldap_conf.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/harbor2_client/models/ldap_conf.rb', line 135

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      ldap_url == o.ldap_url &&
      ldap_search_dn == o.ldap_search_dn &&
      ldap_search_password == o.ldap_search_password &&
      ldap_base_dn == o.ldap_base_dn &&
      ldap_filter == o.ldap_filter &&
      ldap_uid == o.ldap_uid &&
      ldap_scope == o.ldap_scope &&
      ldap_connection_timeout == o.ldap_connection_timeout &&
      ldap_verify_cert == o.ldap_verify_cert
end