Source code for models_v2.source_type_1_enum

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

[docs]class SourceType1Enum(object): """Implementation of the 'SourceType1' enum. Specifies the type of HyperV source to which the VMs are being restored. Attributes: KSCVMMSERVER: TODO: type description here. KSTANDALONEHOST: TODO: type description here. KSTANDALONECLUSTER: TODO: type description here. """ KSCVMMSERVER = 'kSCVMMServer' KSTANDALONEHOST = 'kStandaloneHost' KSTANDALONECLUSTER = 'kStandaloneCluster'