Source code for models_v2.recovery_process_type_1_enum

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

[docs]class RecoveryProcessType1Enum(object): """Implementation of the 'RecoveryProcessType1' enum. Specifies type of Recovery Process to be used. InstantRecovery/CopyRecovery etc... Default value is InstantRecovery. Attributes: INSTANTRECOVERY: TODO: type description here. COPYRECOVERY: TODO: type description here. """ INSTANTRECOVERY = 'InstantRecovery' COPYRECOVERY = 'CopyRecovery'