Source code for models_v2.oracle_object_type_enum

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

[docs]class OracleObjectTypeEnum(object): """Implementation of the 'oracleObjectType' enum. TODO: type enum description here. Attributes: KRACROOTCONTAINER: TODO: type description here. KROOTCONTAINER: TODO: type description here. KHOST: TODO: type description here. KDATABASE: TODO: type description here. KTABLESPACE: TODO: type description here. KTABLE: TODO: type description here. KPDB: TODO: type description here. """ KRACROOTCONTAINER = 'kRACRootContainer' KROOTCONTAINER = 'kRootContainer' KHOST = 'kHost' KDATABASE = 'kDatabase' KTABLESPACE = 'kTableSpace' KTABLE = 'kTable' KPDB = 'kPDB'