Source code for models_v2.recover_method_enum
# -*- coding: utf-8 -*-
[docs]class RecoverMethodEnum(object):
"""Implementation of the 'RecoverMethod' enum.
Specifies the method to recover files and folders.
Attributes:
AUTODEPLOY: TODO: type description here.
USEEXISTINGAGENT: TODO: type description here.
USEHYPERVISORAPIS: TODO: type description here.
"""
AUTODEPLOY = 'AutoDeploy'
USEEXISTINGAGENT = 'UseExistingAgent'
USE_HYPERV_ISOR_APIS = 'UseHypervisorApis'