Source code for models_v2.mongo_db_object_type_enum

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

[docs]class MongoDBObjectTypeEnum(object): """Implementation of the 'MongoDBObjectType' enum. TODO: type enum description here. Attributes: MONGODATABASES: TODO: type description here. MONGOCOLLECTIONS: TODO: type description here. """ MONGODATABASES = 'MongoDatabases' MONGOCOLLECTIONS = 'MongoCollections'