Source code for models_v2.physical_object_type_enum

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

[docs]class PhysicalObjectTypeEnum(object): """Implementation of the 'physicalObjectType' enum. TODO: type enum description here. Attributes: KGROUP: TODO: type description here. KHOST: TODO: type description here. KWINDOWSCLUSTER: TODO: type description here. KORACLERACCLUSTER: TODO: type description here. KORACLEAPCLUSTER: TODO: type description here. """ KGROUP = 'kGroup' KHOST = 'kHost' KWINDOWSCLUSTER = 'kWindowsCluster' KORACLERACCLUSTER = 'kOracleRACCluster' KORACLEAPCLUSTER = 'kOracleAPCluster'