Server IP : 103.119.228.120 / Your IP : 3.15.31.27 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/database/models/ |
Upload File : |
# coding: utf-8 # Copyright (c) 2016, 2024, 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: 20160918 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" #: A constant which can be used with the db_workload property of a AutonomousDbVersionSummary. #: This constant has a value of "AJD" DB_WORKLOAD_AJD = "AJD" #: A constant which can be used with the db_workload property of a AutonomousDbVersionSummary. #: This constant has a value of "APEX" DB_WORKLOAD_APEX = "APEX" 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", "AJD", "APEX", '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 :param is_free_tier_enabled: The value to assign to the is_free_tier_enabled property of this AutonomousDbVersionSummary. :type is_free_tier_enabled: bool :param is_paid_enabled: The value to assign to the is_paid_enabled property of this AutonomousDbVersionSummary. :type is_paid_enabled: bool :param is_default_for_free: The value to assign to the is_default_for_free property of this AutonomousDbVersionSummary. :type is_default_for_free: bool :param is_default_for_paid: The value to assign to the is_default_for_paid property of this AutonomousDbVersionSummary. :type is_default_for_paid: bool """ self.swagger_types = { 'version': 'str', 'db_workload': 'str', 'is_dedicated': 'bool', 'details': 'str', 'is_free_tier_enabled': 'bool', 'is_paid_enabled': 'bool', 'is_default_for_free': 'bool', 'is_default_for_paid': 'bool' } self.attribute_map = { 'version': 'version', 'db_workload': 'dbWorkload', 'is_dedicated': 'isDedicated', 'details': 'details', 'is_free_tier_enabled': 'isFreeTierEnabled', 'is_paid_enabled': 'isPaidEnabled', 'is_default_for_free': 'isDefaultForFree', 'is_default_for_paid': 'isDefaultForPaid' } self._version = None self._db_workload = None self._is_dedicated = None self._details = None self._is_free_tier_enabled = None self._is_paid_enabled = None self._is_default_for_free = None self._is_default_for_paid = 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 - AJD - indicates an Autonomous JSON Database - APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. Allowed values for this property are: "OLTP", "DW", "AJD", "APEX", '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 - AJD - indicates an Autonomous JSON Database - APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type. This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. :param db_workload: The db_workload of this AutonomousDbVersionSummary. :type: str """ allowed_values = ["OLTP", "DW", "AJD", "APEX"] 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.oracle.com/en/cloud/paas/autonomous-database/index.html :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.oracle.com/en/cloud/paas/autonomous-database/index.html :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 @property def is_free_tier_enabled(self): """ Gets the is_free_tier_enabled of this AutonomousDbVersionSummary. True if this version of the Oracle Database software can be used for Always-Free Autonomous Databases. :return: The is_free_tier_enabled of this AutonomousDbVersionSummary. :rtype: bool """ return self._is_free_tier_enabled @is_free_tier_enabled.setter def is_free_tier_enabled(self, is_free_tier_enabled): """ Sets the is_free_tier_enabled of this AutonomousDbVersionSummary. True if this version of the Oracle Database software can be used for Always-Free Autonomous Databases. :param is_free_tier_enabled: The is_free_tier_enabled of this AutonomousDbVersionSummary. :type: bool """ self._is_free_tier_enabled = is_free_tier_enabled @property def is_paid_enabled(self): """ Gets the is_paid_enabled of this AutonomousDbVersionSummary. True if this version of the Oracle Database software has payments enabled. :return: The is_paid_enabled of this AutonomousDbVersionSummary. :rtype: bool """ return self._is_paid_enabled @is_paid_enabled.setter def is_paid_enabled(self, is_paid_enabled): """ Sets the is_paid_enabled of this AutonomousDbVersionSummary. True if this version of the Oracle Database software has payments enabled. :param is_paid_enabled: The is_paid_enabled of this AutonomousDbVersionSummary. :type: bool """ self._is_paid_enabled = is_paid_enabled @property def is_default_for_free(self): """ Gets the is_default_for_free of this AutonomousDbVersionSummary. True if this version of the Oracle Database software's default is free. :return: The is_default_for_free of this AutonomousDbVersionSummary. :rtype: bool """ return self._is_default_for_free @is_default_for_free.setter def is_default_for_free(self, is_default_for_free): """ Sets the is_default_for_free of this AutonomousDbVersionSummary. True if this version of the Oracle Database software's default is free. :param is_default_for_free: The is_default_for_free of this AutonomousDbVersionSummary. :type: bool """ self._is_default_for_free = is_default_for_free @property def is_default_for_paid(self): """ Gets the is_default_for_paid of this AutonomousDbVersionSummary. True if this version of the Oracle Database software's default is paid. :return: The is_default_for_paid of this AutonomousDbVersionSummary. :rtype: bool """ return self._is_default_for_paid @is_default_for_paid.setter def is_default_for_paid(self, is_default_for_paid): """ Sets the is_default_for_paid of this AutonomousDbVersionSummary. True if this version of the Oracle Database software's default is paid. :param is_default_for_paid: The is_default_for_paid of this AutonomousDbVersionSummary. :type: bool """ self._is_default_for_paid = is_default_for_paid 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