Source code for models_v2.object_type_2_enum

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

[docs]class ObjectType2Enum(object): """Implementation of the 'ObjectType2' enum. Specifies the object type. Attributes: EMAILS: TODO: type description here. FILES: TODO: type description here. CASSANDRAOBJECTS: TODO: type description here. COUCHBASEOBJECTS: TODO: type description here. HBASEOBJECTS: TODO: type description here. HIVEOBJECTS: TODO: type description here. MONGOOBJECTS: TODO: type description here. HDFSOBJECTS: TODO: type description here. PUBLICFOLDERS: TODO: type description here. """ EMAILS = 'Emails' FILES = 'Files' CASSANDRAOBJECTS = 'CassandraObjects' COUCHBASEOBJECTS = 'CouchbaseObjects' HBASEOBJECTS = 'HbaseObjects' HIVEOBJECTS = 'HiveObjects' MONGOOBJECTS = 'MongoObjects' HDFSOBJECTS = 'HDFSObjects' PUBLICFOLDERS = 'PublicFolders'