Source code for models_v2.auth_type_enum
# -*- coding: utf-8 -*-
[docs]class AuthTypeEnum(object):
"""Implementation of the 'AuthType' enum.
Authentication type.
Attributes:
KERBEROS: TODO: type description here.
NONE: TODO: type description here.
"""
KERBEROS = 'KERBEROS'
NONE = 'NONE'