���� 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/mysql/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 BackupSummary(object): """ BackupSummary model. """ #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "CREATING" LIFECYCLE_STATE_CREATING = "CREATING" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "ACTIVE" LIFECYCLE_STATE_ACTIVE = "ACTIVE" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "INACTIVE" LIFECYCLE_STATE_INACTIVE = "INACTIVE" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "UPDATING" LIFECYCLE_STATE_UPDATING = "UPDATING" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "DELETING" LIFECYCLE_STATE_DELETING = "DELETING" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "DELETED" LIFECYCLE_STATE_DELETED = "DELETED" #: A constant which can be used with the lifecycle_state property of a BackupSummary. #: This constant has a value of "FAILED" LIFECYCLE_STATE_FAILED = "FAILED" #: A constant which can be used with the backup_type property of a BackupSummary. #: This constant has a value of "FULL" BACKUP_TYPE_FULL = "FULL" #: A constant which can be used with the backup_type property of a BackupSummary. #: This constant has a value of "INCREMENTAL" BACKUP_TYPE_INCREMENTAL = "INCREMENTAL" def __init__(self, **kwargs): """ Initializes a new BackupSummary 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 BackupSummary. :type id: str :param display_name: The value to assign to the display_name property of this BackupSummary. :type display_name: str :param description: The value to assign to the description property of this BackupSummary. :type description: str :param time_created: The value to assign to the time_created property of this BackupSummary. :type time_created: datetime :param lifecycle_state: The value to assign to the lifecycle_state property of this BackupSummary. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "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 backup_type: The value to assign to the backup_type property of this BackupSummary. Allowed values for this property are: "FULL", "INCREMENTAL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type backup_type: str :param db_system_id: The value to assign to the db_system_id property of this BackupSummary. :type db_system_id: str :param size_in_mbs: The value to assign to the size_in_mbs property of this BackupSummary. :type size_in_mbs: int :param retention_days: The value to assign to the retention_days property of this BackupSummary. :type retention_days: int :param freeform_tags: The value to assign to the freeform_tags property of this BackupSummary. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this BackupSummary. :type defined_tags: dict(str, dict(str, object)) """ self.swagger_types = { 'id': 'str', 'display_name': 'str', 'description': 'str', 'time_created': 'datetime', 'lifecycle_state': 'str', 'backup_type': 'str', 'db_system_id': 'str', 'size_in_mbs': 'int', 'retention_days': 'int', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))' } self.attribute_map = { 'id': 'id', 'display_name': 'displayName', 'description': 'description', 'time_created': 'timeCreated', 'lifecycle_state': 'lifecycleState', 'backup_type': 'backupType', 'db_system_id': 'dbSystemId', 'size_in_mbs': 'sizeInMBs', 'retention_days': 'retentionDays', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags' } self._id = None self._display_name = None self._description = None self._time_created = None self._lifecycle_state = None self._backup_type = None self._db_system_id = None self._size_in_mbs = None self._retention_days = None self._freeform_tags = None self._defined_tags = None @property def id(self): """ **[Required]** Gets the id of this BackupSummary. OCID of the backup itself :return: The id of this BackupSummary. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this BackupSummary. OCID of the backup itself :param id: The id of this BackupSummary. :type: str """ self._id = id @property def display_name(self): """ Gets the display_name of this BackupSummary. A user-supplied display name for the backup. :return: The display_name of this BackupSummary. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this BackupSummary. A user-supplied display name for the backup. :param display_name: The display_name of this BackupSummary. :type: str """ self._display_name = display_name @property def description(self): """ Gets the description of this BackupSummary. A user-supplied description about the backup. :return: The description of this BackupSummary. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this BackupSummary. A user-supplied description about the backup. :param description: The description of this BackupSummary. :type: str """ self._description = description @property def time_created(self): """ **[Required]** Gets the time_created of this BackupSummary. The time the backup was created. :return: The time_created of this BackupSummary. :rtype: datetime """ return self._time_created @time_created.setter def time_created(self, time_created): """ Sets the time_created of this BackupSummary. The time the backup was created. :param time_created: The time_created of this BackupSummary. :type: datetime """ self._time_created = time_created @property def lifecycle_state(self): """ **[Required]** Gets the lifecycle_state of this BackupSummary. The state of the backup. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "UPDATING", "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 BackupSummary. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this BackupSummary. The state of the backup. :param lifecycle_state: The lifecycle_state of this BackupSummary. :type: str """ allowed_values = ["CREATING", "ACTIVE", "INACTIVE", "UPDATING", "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 backup_type(self): """ **[Required]** Gets the backup_type of this BackupSummary. The type of backup. Allowed values for this property are: "FULL", "INCREMENTAL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The backup_type of this BackupSummary. :rtype: str """ return self._backup_type @backup_type.setter def backup_type(self, backup_type): """ Sets the backup_type of this BackupSummary. The type of backup. :param backup_type: The backup_type of this BackupSummary. :type: str """ allowed_values = ["FULL", "INCREMENTAL"] if not value_allowed_none_or_none_sentinel(backup_type, allowed_values): backup_type = 'UNKNOWN_ENUM_VALUE' self._backup_type = backup_type @property def db_system_id(self): """ Gets the db_system_id of this BackupSummary. The OCID of the DbSystem the Backup is associated to. :return: The db_system_id of this BackupSummary. :rtype: str """ return self._db_system_id @db_system_id.setter def db_system_id(self, db_system_id): """ Sets the db_system_id of this BackupSummary. The OCID of the DbSystem the Backup is associated to. :param db_system_id: The db_system_id of this BackupSummary. :type: str """ self._db_system_id = db_system_id @property def size_in_mbs(self): """ **[Required]** Gets the size_in_mbs of this BackupSummary. The size of the backup in base-2 (IEC) mebibytes (aka MiB). :return: The size_in_mbs of this BackupSummary. :rtype: int """ return self._size_in_mbs @size_in_mbs.setter def size_in_mbs(self, size_in_mbs): """ Sets the size_in_mbs of this BackupSummary. The size of the backup in base-2 (IEC) mebibytes (aka MiB). :param size_in_mbs: The size_in_mbs of this BackupSummary. :type: int """ self._size_in_mbs = size_in_mbs @property def retention_days(self): """ Gets the retention_days of this BackupSummary. Number of days to retain this backup. :return: The retention_days of this BackupSummary. :rtype: int """ return self._retention_days @retention_days.setter def retention_days(self, retention_days): """ Sets the retention_days of this BackupSummary. Number of days to retain this backup. :param retention_days: The retention_days of this BackupSummary. :type: int """ self._retention_days = retention_days @property def freeform_tags(self): """ Gets the freeform_tags of this BackupSummary. Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :return: The freeform_tags of this BackupSummary. :rtype: dict(str, str) """ return self._freeform_tags @freeform_tags.setter def freeform_tags(self, freeform_tags): """ Sets the freeform_tags of this BackupSummary. Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :param freeform_tags: The freeform_tags of this BackupSummary. :type: dict(str, str) """ self._freeform_tags = freeform_tags @property def defined_tags(self): """ Gets the defined_tags of this BackupSummary. Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :return: The defined_tags of this BackupSummary. :rtype: dict(str, dict(str, object)) """ return self._defined_tags @defined_tags.setter def defined_tags(self, defined_tags): """ Sets the defined_tags of this BackupSummary. Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :param defined_tags: The defined_tags of this BackupSummary. :type: dict(str, dict(str, object)) """ self._defined_tags = defined_tags 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