Source code for models_v2.target_environment_enum

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

[docs]class TargetEnvironmentEnum(object): """Implementation of the 'TargetEnvironment' enum. Specifies the environment of the recovery target. The corresponding params below must be filled out. Attributes: KELASTIFILE: TODO: type description here. KFLASHBLADE: TODO: type description here. KGENERICNAS: TODO: type description here. KGPFS: TODO: type description here. KISILON: TODO: type description here. KNETAPP: TODO: type description here. KVIEW: TODO: type description here. """ KELASTIFILE = 'kElastifile' KFLASHBLADE = 'kFlashBlade' KGENERICNAS = 'kGenericNas' KGPFS = 'kGPFS' KISILON = 'kIsilon' KNETAPP = 'kNetapp' KVIEW = 'kView'