HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //lib/mysqlsh/lib/python3.8/site-packages/oci/psql/models/management_policy_details.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates.  All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.

# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915


from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel  # noqa: F401
from oci.decorators import init_model_state_from_kwargs


@init_model_state_from_kwargs
class ManagementPolicyDetails(object):
    """
    PostgreSQL database system management policy update details.
    """

    def __init__(self, **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):

        :param maintenance_window_start:
            The value to assign to the maintenance_window_start property of this ManagementPolicyDetails.
        :type maintenance_window_start: str

        :param backup_policy:
            The value to assign to the backup_policy property of this ManagementPolicyDetails.
        :type backup_policy: oci.psql.models.BackupPolicy

        """
        self.swagger_types = {
            'maintenance_window_start': 'str',
            'backup_policy': 'BackupPolicy'
        }
        self.attribute_map = {
            'maintenance_window_start': 'maintenanceWindowStart',
            'backup_policy': 'backupPolicy'
        }
        self._maintenance_window_start = None
        self._backup_policy = None

    @property
    def maintenance_window_start(self):
        """
        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.


        :return: The maintenance_window_start of this ManagementPolicyDetails.
        :rtype: str
        """
        return self._maintenance_window_start

    @maintenance_window_start.setter
    def maintenance_window_start(self, maintenance_window_start):
        """
        Sets 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.


        :param maintenance_window_start: The maintenance_window_start of this ManagementPolicyDetails.
        :type: str
        """
        self._maintenance_window_start = maintenance_window_start

    @property
    def backup_policy(self):
        """
        Gets the backup_policy of this ManagementPolicyDetails.

        :return: The backup_policy of this ManagementPolicyDetails.
        :rtype: oci.psql.models.BackupPolicy
        """
        return self._backup_policy

    @backup_policy.setter
    def backup_policy(self, backup_policy):
        """
        Sets the backup_policy of this ManagementPolicyDetails.

        :param backup_policy: The backup_policy of this ManagementPolicyDetails.
        :type: oci.psql.models.BackupPolicy
        """
        self._backup_policy = backup_policy

    def __repr__(self):
        return formatted_flat_dict(self)

    def __eq__(self, other):
        if other is None:
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        return not self == other