Source code for models_v2.hdfs_type_enum

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

[docs]class HdfsTypeEnum(object): """Implementation of the 'HdfsType' enum. TODO: type enum description here. Attributes: HDFSFOLDERS: TODO: type description here. HDFSFILES: TODO: type description here. """ HDFSFOLDERS = 'HDFSFolders' HDFSFILES = 'HDFSFiles'