Source code for models.auth_type_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class AuthTypeEnum(object):
"""Implementation of the 'AuthType' enum.
Specifies the authentication type used while connecting to LDAP servers.
Authentication level.
'kAnonymous' indicates LDAP authentication type 'Anonymous'
'kSimple' indicates LDAP authentication type 'Simple'
Attributes:
KANONYMOUS: TODO: type description here.
KSIMPLE: TODO: type description here.
"""
KANONYMOUS = 'kAnonymous'
KSIMPLE = 'kSimple'