NoneBackupPolicy

class oci.psql.models.NoneBackupPolicy(**kwargs)

Bases: oci.psql.models.backup_policy.BackupPolicy

No backup policy.

Attributes

KIND_DAILY str(object=’’) -> str
KIND_MONTHLY str(object=’’) -> str
KIND_NONE str(object=’’) -> str
KIND_WEEKLY str(object=’’) -> str
kind Gets the kind of this BackupPolicy.
retention_days Gets the retention_days of this BackupPolicy.

Methods

__init__(**kwargs) Initializes a new NoneBackupPolicy 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 NoneBackupPolicy object with values from keyword arguments. The default value of the kind attribute of this class is NONE 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 NoneBackupPolicy. Allowed values for this property are: “DAILY”, “WEEKLY”, “MONTHLY”, “NONE”
  • retention_days (int) – The value to assign to the retention_days property of this NoneBackupPolicy.
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