DailyBackupPolicy¶
-
class
oci.psql.models.
DailyBackupPolicy
(**kwargs)¶ Bases:
oci.psql.models.backup_policy.BackupPolicy
Daily backup policy.
Attributes
KIND_DAILY
str(object=’’) -> str KIND_MONTHLY
str(object=’’) -> str KIND_NONE
str(object=’’) -> str KIND_WEEKLY
str(object=’’) -> str backup_start
[Required] Gets the backup_start of this DailyBackupPolicy. kind
Gets the kind of this BackupPolicy. retention_days
Gets the retention_days of this BackupPolicy. Methods
__init__
(**kwargs)Initializes a new DailyBackupPolicy object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
KIND_DAILY
= 'DAILY'¶
-
KIND_MONTHLY
= 'MONTHLY'¶
-
KIND_NONE
= 'NONE'¶
-
KIND_WEEKLY
= 'WEEKLY'¶
-
__init__
(**kwargs)¶ Initializes a new DailyBackupPolicy object with values from keyword arguments. The default value of the
kind
attribute of this class isDAILY
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - kind (str) – The value to assign to the kind property of this DailyBackupPolicy. Allowed values for this property are: “DAILY”, “WEEKLY”, “MONTHLY”, “NONE”
- retention_days (int) – The value to assign to the retention_days property of this DailyBackupPolicy.
- backup_start (str) – The value to assign to the backup_start property of this DailyBackupPolicy.
-
backup_start
¶ [Required] Gets the backup_start of this DailyBackupPolicy. Hour of the day when the backup starts.
Returns: The backup_start of this DailyBackupPolicy. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
kind
¶ Gets the kind of this BackupPolicy. The kind of backup policy.
Allowed values for this property are: “DAILY”, “WEEKLY”, “MONTHLY”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The kind of this BackupPolicy. Return type: str
-
retention_days
¶ Gets the retention_days of this BackupPolicy. How many days the data should be stored after the database system deletion.
Returns: The retention_days of this BackupPolicy. Return type: int
-