Source code for models_v2.auth_type_3_enum

# -*- coding: utf-8 -*-

[docs]class AuthType3Enum(object): """Implementation of the 'AuthType3' enum. MongoDB authentication type. Attributes: SCRAM: TODO: type description here. LDAP: TODO: type description here. NONE: TODO: type description here. """ SCRAM = 'SCRAM' LDAP = 'LDAP' NONE = 'NONE'