Source code for models_v2.cassandra_auth_type_enum

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

[docs]class CassandraAuthTypeEnum(object): """Implementation of the 'CassandraAuthType' enum. Enumeration of all the Cassandra Authentication. Attributes: PASSWORD: TODO: type description here. KERBEROS: TODO: type description here. LDAP: TODO: type description here. """ PASSWORD = 'PASSWORD' KERBEROS = 'KERBEROS' LDAP = 'LDAP'