Source code for models_v2.hyperv_object_type_enum

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

[docs]class HypervObjectTypeEnum(object): """Implementation of the 'hypervObjectType' enum. TODO: type enum description here. Attributes: KSCVMMSERVER: TODO: type description here. KSTANDALONEHOST: TODO: type description here. KSTANDALONECLUSTER: TODO: type description here. KHOSTGROUP: TODO: type description here. KHYPERVHOST: TODO: type description here. KHOSTCLUSTER: TODO: type description here. KVIRTUALMACHINE: TODO: type description here. KNETWORK: TODO: type description here. KDATASTORE: TODO: type description here. KTAG: TODO: type description here. KCUSTOMPROPERTY: TODO: type description here. """ KSCVMMSERVER = 'kSCVMMServer' KSTANDALONEHOST = 'kStandaloneHost' KSTANDALONECLUSTER = 'kStandaloneCluster' KHOSTGROUP = 'kHostGroup' K_HYPERV_HOST = 'kHypervHost' KHOSTCLUSTER = 'kHostCluster' KVIRTUALMACHINE = 'kVirtualMachine' KNETWORK = 'kNetwork' KDATASTORE = 'kDatastore' KTAG = 'kTag' KCUSTOMPROPERTY = 'kCustomProperty'