Source code for models_v2.hive_object_type_enum

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

[docs]class HiveObjectTypeEnum(object): """Implementation of the 'HiveObjectType' enum. TODO: type enum description here. Attributes: HIVEDATABASES: TODO: type description here. HIVETABLES: TODO: type description here. HIVEPARTITIONS: TODO: type description here. """ HIVEDATABASES = 'HiveDatabases' HIVETABLES = 'HiveTables' HIVEPARTITIONS = 'HivePartitions'