Source code for models_v2.mongo_db_auth_type_enum

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

[docs]class MongoDBAuthTypeEnum(object): """Implementation of the 'MongoDBAuthType' enum. Enumeration of all the MongoDB Authentication. Attributes: SCRAM: TODO: type description here. LDAP: TODO: type description here. NONE: TODO: type description here. """ SCRAM = 'SCRAM' LDAP = 'LDAP' NONE = 'NONE'