Source code for models_v2.db_recovery_over_writing_policy_1_enum
# -*- coding: utf-8 -*-
[docs]class DbRecoveryOverWritingPolicy1Enum(object):
    """Implementation of the 'DbRecoveryOverWritingPolicy1' enum.
    Specifies the overwriting policies in case of SQL App Recoveries.
    Attributes:
        FAILIFEXISTS: TODO: type description here.
        OVERWRITE: TODO: type description here.
    """
    FAILIFEXISTS = 'FailIfExists'
    OVERWRITE = 'Overwrite'