Source code for models_v2.recovery_action_2_enum
# -*- coding: utf-8 -*-
[docs]class RecoveryAction2Enum(object):
"""Implementation of the 'RecoveryAction2' enum.
Specifies the type of recover action to be performed.
Attributes:
RECOVERVMS: TODO: type description here.
RECOVERRDS: TODO: type description here.
RECOVERFILES: TODO: type description here.
"""
RECOVERVMS = 'RecoverVMs'
RECOVERRDS = 'RecoverRDS'
RECOVERFILES = 'RecoverFiles'