ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/usr/share/mysqlsh/oci_sdk/oci/database/models/ |
# coding: utf-8 # Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. 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 AutonomousDatabaseBackup(object): """ An Autonomous Database backup. """ #: A constant which can be used with the type property of a AutonomousDatabaseBackup. #: This constant has a value of "INCREMENTAL" TYPE_INCREMENTAL = "INCREMENTAL" #: A constant which can be used with the type property of a AutonomousDatabaseBackup. #: This constant has a value of "FULL" TYPE_FULL = "FULL" #: A constant which can be used with the lifecycle_state property of a AutonomousDatabaseBackup. #: This constant has a value of "CREATING" LIFECYCLE_STATE_CREATING = "CREATING" #: A constant which can be used with the lifecycle_state property of a AutonomousDatabaseBackup. #: This constant has a value of "ACTIVE" LIFECYCLE_STATE_ACTIVE = "ACTIVE" #: A constant which can be used with the lifecycle_state property of a AutonomousDatabaseBackup. #: This constant has a value of "DELETING" LIFECYCLE_STATE_DELETING = "DELETING" #: A constant which can be used with the lifecycle_state property of a AutonomousDatabaseBackup. #: This constant has a value of "DELETED" LIFECYCLE_STATE_DELETED = "DELETED" #: A constant which can be used with the lifecycle_state property of a AutonomousDatabaseBackup. #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" def __init__(self, **kwargs): """ Initializes a new AutonomousDatabaseBackup object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this AutonomousDatabaseBackup. :type id: str :param compartment_id: The value to assign to the compartment_id property of this AutonomousDatabaseBackup. :type compartment_id: str :param autonomous_database_id: The value to assign to the autonomous_database_id property of this AutonomousDatabaseBackup. :type autonomous_database_id: str :param display_name: The value to assign to the display_name property of this AutonomousDatabaseBackup. :type display_name: str :param type: The value to assign to the type property of this AutonomousDatabaseBackup. Allowed values for this property are: "INCREMENTAL", "FULL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type type: str :param is_automatic: The value to assign to the is_automatic property of this AutonomousDatabaseBackup. :type is_automatic: bool :param time_started: The value to assign to the time_started property of this AutonomousDatabaseBackup. :type time_started: datetime :param time_ended: The value to assign to the time_ended property of this AutonomousDatabaseBackup. :type time_ended: datetime :param lifecycle_details: The value to assign to the lifecycle_details property of this AutonomousDatabaseBackup. :type lifecycle_details: str :param database_size_in_tbs: The value to assign to the database_size_in_tbs property of this AutonomousDatabaseBackup. :type database_size_in_tbs: float :param lifecycle_state: The value to assign to the lifecycle_state property of this AutonomousDatabaseBackup. Allowed values for this property are: "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param is_restorable: The value to assign to the is_restorable property of this AutonomousDatabaseBackup. :type is_restorable: bool """ self.swagger_types = { 'id': 'str', 'compartment_id': 'str', 'autonomous_database_id': 'str', 'display_name': 'str', 'type': 'str', 'is_automatic': 'bool', 'time_started': 'datetime', 'time_ended': 'datetime', 'lifecycle_details': 'str', 'database_size_in_tbs': 'float', 'lifecycle_state': 'str', 'is_restorable': 'bool' } self.attribute_map = { 'id': 'id', 'compartment_id': 'compartmentId', 'autonomous_database_id': 'autonomousDatabaseId', 'display_name': 'displayName', 'type': 'type', 'is_automatic': 'isAutomatic', 'time_started': 'timeStarted', 'time_ended': 'timeEnded', 'lifecycle_details': 'lifecycleDetails', 'database_size_in_tbs': 'databaseSizeInTBs', 'lifecycle_state': 'lifecycleState', 'is_restorable': 'isRestorable' } self._id = None self._compartment_id = None self._autonomous_database_id = None self._display_name = None self._type = None self._is_automatic = None self._time_started = None self._time_ended = None self._lifecycle_details = None self._database_size_in_tbs = None self._lifecycle_state = None self._is_restorable = None @property def id(self): """ **[Required]** Gets the id of this AutonomousDatabaseBackup. The `OCID`__ of the Autonomous Database backup. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :return: The id of this AutonomousDatabaseBackup. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this AutonomousDatabaseBackup. The `OCID`__ of the Autonomous Database backup. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :param id: The id of this AutonomousDatabaseBackup. :type: str """ self._id = id @property def compartment_id(self): """ **[Required]** Gets the compartment_id of this AutonomousDatabaseBackup. The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :return: The compartment_id of this AutonomousDatabaseBackup. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this AutonomousDatabaseBackup. The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :param compartment_id: The compartment_id of this AutonomousDatabaseBackup. :type: str """ self._compartment_id = compartment_id @property def autonomous_database_id(self): """ **[Required]** Gets the autonomous_database_id of this AutonomousDatabaseBackup. The `OCID`__ of the Autonomous Database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :return: The autonomous_database_id of this AutonomousDatabaseBackup. :rtype: str """ return self._autonomous_database_id @autonomous_database_id.setter def autonomous_database_id(self, autonomous_database_id): """ Sets the autonomous_database_id of this AutonomousDatabaseBackup. The `OCID`__ of the Autonomous Database. __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm :param autonomous_database_id: The autonomous_database_id of this AutonomousDatabaseBackup. :type: str """ self._autonomous_database_id = autonomous_database_id @property def display_name(self): """ **[Required]** Gets the display_name of this AutonomousDatabaseBackup. The user-friendly name for the backup. The name does not have to be unique. :return: The display_name of this AutonomousDatabaseBackup. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this AutonomousDatabaseBackup. The user-friendly name for the backup. The name does not have to be unique. :param display_name: The display_name of this AutonomousDatabaseBackup. :type: str """ self._display_name = display_name @property def type(self): """ **[Required]** Gets the type of this AutonomousDatabaseBackup. The type of backup. Allowed values for this property are: "INCREMENTAL", "FULL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The type of this AutonomousDatabaseBackup. :rtype: str """ return self._type @type.setter def type(self, type): """ Sets the type of this AutonomousDatabaseBackup. The type of backup. :param type: The type of this AutonomousDatabaseBackup. :type: str """ allowed_values = ["INCREMENTAL", "FULL"] if not value_allowed_none_or_none_sentinel(type, allowed_values): type = 'UNKNOWN_ENUM_VALUE' self._type = type @property def is_automatic(self): """ **[Required]** Gets the is_automatic of this AutonomousDatabaseBackup. Indicates whether the backup is user-initiated or automatic. :return: The is_automatic of this AutonomousDatabaseBackup. :rtype: bool """ return self._is_automatic @is_automatic.setter def is_automatic(self, is_automatic): """ Sets the is_automatic of this AutonomousDatabaseBackup. Indicates whether the backup is user-initiated or automatic. :param is_automatic: The is_automatic of this AutonomousDatabaseBackup. :type: bool """ self._is_automatic = is_automatic @property def time_started(self): """ Gets the time_started of this AutonomousDatabaseBackup. The date and time the backup started. :return: The time_started of this AutonomousDatabaseBackup. :rtype: datetime """ return self._time_started @time_started.setter def time_started(self, time_started): """ Sets the time_started of this AutonomousDatabaseBackup. The date and time the backup started. :param time_started: The time_started of this AutonomousDatabaseBackup. :type: datetime """ self._time_started = time_started @property def time_ended(self): """ Gets the time_ended of this AutonomousDatabaseBackup. The date and time the backup completed. :return: The time_ended of this AutonomousDatabaseBackup. :rtype: datetime """ return self._time_ended @time_ended.setter def time_ended(self, time_ended): """ Sets the time_ended of this AutonomousDatabaseBackup. The date and time the backup completed. :param time_ended: The time_ended of this AutonomousDatabaseBackup. :type: datetime """ self._time_ended = time_ended @property def lifecycle_details(self): """ Gets the lifecycle_details of this AutonomousDatabaseBackup. Additional information about the current lifecycle state. :return: The lifecycle_details of this AutonomousDatabaseBackup. :rtype: str """ return self._lifecycle_details @lifecycle_details.setter def lifecycle_details(self, lifecycle_details): """ Sets the lifecycle_details of this AutonomousDatabaseBackup. Additional information about the current lifecycle state. :param lifecycle_details: The lifecycle_details of this AutonomousDatabaseBackup. :type: str """ self._lifecycle_details = lifecycle_details @property def database_size_in_tbs(self): """ Gets the database_size_in_tbs of this AutonomousDatabaseBackup. The size of the database in terabytes at the time the backup was taken. :return: The database_size_in_tbs of this AutonomousDatabaseBackup. :rtype: float """ return self._database_size_in_tbs @database_size_in_tbs.setter def database_size_in_tbs(self, database_size_in_tbs): """ Sets the database_size_in_tbs of this AutonomousDatabaseBackup. The size of the database in terabytes at the time the backup was taken. :param database_size_in_tbs: The database_size_in_tbs of this AutonomousDatabaseBackup. :type: float """ self._database_size_in_tbs = database_size_in_tbs @property def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this AutonomousDatabaseBackup. The current state of the backup. Allowed values for this property are: "CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The lifecycle_state of this AutonomousDatabaseBackup. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this AutonomousDatabaseBackup. The current state of the backup. :param lifecycle_state: The lifecycle_state of this AutonomousDatabaseBackup. :type: str """ allowed_values = ["CREATING", "ACTIVE", "DELETING", "DELETED", "FAILED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state @property def is_restorable(self): """ Gets the is_restorable of this AutonomousDatabaseBackup. Indicates whether the backup can be used to restore the associated Autonomous Database. :return: The is_restorable of this AutonomousDatabaseBackup. :rtype: bool """ return self._is_restorable @is_restorable.setter def is_restorable(self, is_restorable): """ Sets the is_restorable of this AutonomousDatabaseBackup. Indicates whether the backup can be used to restore the associated Autonomous Database. :param is_restorable: The is_restorable of this AutonomousDatabaseBackup. :type: bool """ self._is_restorable = is_restorable 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