ManagementPolicyDetails¶
-
class
oci.psql.models.
ManagementPolicyDetails
(**kwargs)¶ Bases:
object
PostgreSQL database system management policy update details.
Methods
__init__
(**kwargs)Initializes a new ManagementPolicyDetails object with values from keyword arguments. Attributes
backup_policy
Gets the backup_policy of this ManagementPolicyDetails. maintenance_window_start
Gets the maintenance_window_start of this ManagementPolicyDetails. -
__init__
(**kwargs)¶ Initializes a new ManagementPolicyDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - maintenance_window_start (str) – The value to assign to the maintenance_window_start property of this ManagementPolicyDetails.
- backup_policy (oci.psql.models.BackupPolicy) – The value to assign to the backup_policy property of this ManagementPolicyDetails.
-
backup_policy
¶ Gets the backup_policy of this ManagementPolicyDetails.
Returns: The backup_policy of this ManagementPolicyDetails. Return type: oci.psql.models.BackupPolicy
-
maintenance_window_start
¶ Gets the maintenance_window_start of this ManagementPolicyDetails. The start of the maintenance window in UTC.
This string is of the format: “{day-of-week} {time-of-day}”. “{day-of-week}” is a case-insensitive string like “mon”, “tue”, &c. “{time-of-day}” is the “Time” portion of an RFC3339-formatted timestamp. Any second or sub-second time data will be truncated to zero.
Returns: The maintenance_window_start of this ManagementPolicyDetails. Return type: str
-