Source code for models_v2.recovery_action_1_enum

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

[docs]class RecoveryAction1Enum(object): """Implementation of the 'RecoveryAction1' enum. Specifies the type of recovery action to be performed. Attributes: RECOVERVMS: TODO: type description here. RECOVERFILES: TODO: type description here. INSTANTVOLUMEMOUNT: TODO: type description here. RECOVERVMDISKS: TODO: type description here. RECOVERVAPPS: TODO: type description here. RECOVERVAPPTEMPLATES: TODO: type description here. """ RECOVERVMS = 'RecoverVMs' RECOVERFILES = 'RecoverFiles' INSTANTVOLUMEMOUNT = 'InstantVolumeMount' RECOVERVMDISKS = 'RecoverVmDisks' RECOVERVAPPS = 'RecoverVApps' RECOVERVAPPTEMPLATES = 'RecoverVAppTemplates'