Source code for models.auth_type_mongodb_connect_params_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class AuthTypeMongoDBConnectParamsEnum(object): """Implementation of the 'AuthType_MongoDBConnectParams' enum. Specifies whether authentication is configured on this MongoDB cluster. Specifies the type of an MongoDB source entity. 'SCRAM' 'LDAP' 'NONE' Attributes: SCRAM: TODO: type description here. LDAP: TODO: type description here. NONE: TODO: type description here. KERBEROS: TODO: type description here. """ SCRAM = 'SCRAM' LDAP = 'LDAP' NONE = 'NONE' KERBEROS = 'KERBEROS'