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