Source code for models_v2.recovery_action_12_enum

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

[docs]class RecoveryAction12Enum(object): """Implementation of the 'RecoveryAction12' enum. Specifies the type of recovery action to be performed. Attributes: RECOVERVMS: TODO: type description here. INSTANTVOLUMEMOUNT: TODO: type description here. RECOVERFILES: TODO: type description here. """ RECOVERVMS = 'RecoverVMs' INSTANTVOLUMEMOUNT = 'InstantVolumeMount' RECOVERFILES = 'RecoverFiles'