Source code for models_v2.hadoop_auth_type_enum

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

[docs]class HadoopAuthTypeEnum(object): """Implementation of the 'HadoopAuthType' enum. Enumeration of all the Hadoop Authentication types. Attributes: KERBEROS: TODO: type description here. NONE: TODO: type description here. """ KERBEROS = 'KERBEROS' NONE = 'NONE'