���� 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 AutonomousDbVersionSummary(object): """ The supported Autonomous Database version. """ #: A constant which can be used with the db_workload property of a AutonomousDbVersionSummary. #: This constant has a value of "OLTP" DB_WORKLOAD_OLTP = "OLTP" #: A constant which can be used with the db_workload property of a AutonomousDbVersionSummary. #: This constant has a value of "DW" DB_WORKLOAD_DW = "DW" def __init__(self, **kwargs): """ Initializes a new AutonomousDbVersionSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param version: The value to assign to the version property of this AutonomousDbVersionSummary. :type version: str :param db_workload: The value to assign to the db_workload property of this AutonomousDbVersionSummary. Allowed values for this property are: "OLTP", "DW", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type db_workload: str :param is_dedicated: The value to assign to the is_dedicated property of this AutonomousDbVersionSummary. :type is_dedicated: bool :param details: The value to assign to the details property of this AutonomousDbVersionSummary. :type details: str """ self.swagger_types = { 'version': 'str', 'db_workload': 'str', 'is_dedicated': 'bool', 'details': 'str' } self.attribute_map = { 'version': 'version', 'db_workload': 'dbWorkload', 'is_dedicated': 'isDedicated', 'details': 'details' } self._version = None self._db_workload = None self._is_dedicated = None self._details = None @property def version(self): """ **[Required]** Gets the version of this AutonomousDbVersionSummary. A valid Oracle Database version for Autonomous Database. :return: The version of this AutonomousDbVersionSummary. :rtype: str """ return self._version @version.setter def version(self, version): """ Sets the version of this AutonomousDbVersionSummary. A valid Oracle Database version for Autonomous Database. :param version: The version of this AutonomousDbVersionSummary. :type: str """ self._version = version @property def db_workload(self): """ Gets the db_workload of this AutonomousDbVersionSummary. The Autonomous Database workload type. The following values are valid: - OLTP - indicates an Autonomous Transaction Processing database - DW - indicates an Autonomous Data Warehouse database Allowed values for this property are: "OLTP", "DW", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The db_workload of this AutonomousDbVersionSummary. :rtype: str """ return self._db_workload @db_workload.setter def db_workload(self, db_workload): """ Sets the db_workload of this AutonomousDbVersionSummary. The Autonomous Database workload type. The following values are valid: - OLTP - indicates an Autonomous Transaction Processing database - DW - indicates an Autonomous Data Warehouse database :param db_workload: The db_workload of this AutonomousDbVersionSummary. :type: str """ allowed_values = ["OLTP", "DW"] if not value_allowed_none_or_none_sentinel(db_workload, allowed_values): db_workload = 'UNKNOWN_ENUM_VALUE' self._db_workload = db_workload @property def is_dedicated(self): """ Gets the is_dedicated of this AutonomousDbVersionSummary. True if the database uses `dedicated Exadata infrastructure`__. __ https://docs.cloud.oracle.com/Content/Database/Concepts/adbddoverview.htm :return: The is_dedicated of this AutonomousDbVersionSummary. :rtype: bool """ return self._is_dedicated @is_dedicated.setter def is_dedicated(self, is_dedicated): """ Sets the is_dedicated of this AutonomousDbVersionSummary. True if the database uses `dedicated Exadata infrastructure`__. __ https://docs.cloud.oracle.com/Content/Database/Concepts/adbddoverview.htm :param is_dedicated: The is_dedicated of this AutonomousDbVersionSummary. :type: bool """ self._is_dedicated = is_dedicated @property def details(self): """ Gets the details of this AutonomousDbVersionSummary. A URL that points to a detailed description of the Autonomous Database version. :return: The details of this AutonomousDbVersionSummary. :rtype: str """ return self._details @details.setter def details(self, details): """ Sets the details of this AutonomousDbVersionSummary. A URL that points to a detailed description of the Autonomous Database version. :param details: The details of this AutonomousDbVersionSummary. :type: str """ self._details = details 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