Server IP : 103.119.228.120 / Your IP : 3.149.254.25 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/local/ssl/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 MaintenanceWindow(object): """ The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window. """ #: A constant which can be used with the preference property of a MaintenanceWindow. #: This constant has a value of "NO_PREFERENCE" PREFERENCE_NO_PREFERENCE = "NO_PREFERENCE" #: A constant which can be used with the preference property of a MaintenanceWindow. #: This constant has a value of "CUSTOM_PREFERENCE" PREFERENCE_CUSTOM_PREFERENCE = "CUSTOM_PREFERENCE" #: A constant which can be used with the patching_mode property of a MaintenanceWindow. #: This constant has a value of "ROLLING" PATCHING_MODE_ROLLING = "ROLLING" #: A constant which can be used with the patching_mode property of a MaintenanceWindow. #: This constant has a value of "NONROLLING" PATCHING_MODE_NONROLLING = "NONROLLING" def __init__(self, **kwargs): """ Initializes a new MaintenanceWindow object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param preference: The value to assign to the preference property of this MaintenanceWindow. Allowed values for this property are: "NO_PREFERENCE", "CUSTOM_PREFERENCE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type preference: str :param patching_mode: The value to assign to the patching_mode property of this MaintenanceWindow. Allowed values for this property are: "ROLLING", "NONROLLING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type patching_mode: str :param is_custom_action_timeout_enabled: The value to assign to the is_custom_action_timeout_enabled property of this MaintenanceWindow. :type is_custom_action_timeout_enabled: bool :param custom_action_timeout_in_mins: The value to assign to the custom_action_timeout_in_mins property of this MaintenanceWindow. :type custom_action_timeout_in_mins: int :param is_monthly_patching_enabled: The value to assign to the is_monthly_patching_enabled property of this MaintenanceWindow. :type is_monthly_patching_enabled: bool :param months: The value to assign to the months property of this MaintenanceWindow. :type months: list[oci.database.models.Month] :param weeks_of_month: The value to assign to the weeks_of_month property of this MaintenanceWindow. :type weeks_of_month: list[int] :param days_of_week: The value to assign to the days_of_week property of this MaintenanceWindow. :type days_of_week: list[oci.database.models.DayOfWeek] :param hours_of_day: The value to assign to the hours_of_day property of this MaintenanceWindow. :type hours_of_day: list[int] :param lead_time_in_weeks: The value to assign to the lead_time_in_weeks property of this MaintenanceWindow. :type lead_time_in_weeks: int :param skip_ru: The value to assign to the skip_ru property of this MaintenanceWindow. :type skip_ru: list[bool] """ self.swagger_types = { 'preference': 'str', 'patching_mode': 'str', 'is_custom_action_timeout_enabled': 'bool', 'custom_action_timeout_in_mins': 'int', 'is_monthly_patching_enabled': 'bool', 'months': 'list[Month]', 'weeks_of_month': 'list[int]', 'days_of_week': 'list[DayOfWeek]', 'hours_of_day': 'list[int]', 'lead_time_in_weeks': 'int', 'skip_ru': 'list[bool]' } self.attribute_map = { 'preference': 'preference', 'patching_mode': 'patchingMode', 'is_custom_action_timeout_enabled': 'isCustomActionTimeoutEnabled', 'custom_action_timeout_in_mins': 'customActionTimeoutInMins', 'is_monthly_patching_enabled': 'isMonthlyPatchingEnabled', 'months': 'months', 'weeks_of_month': 'weeksOfMonth', 'days_of_week': 'daysOfWeek', 'hours_of_day': 'hoursOfDay', 'lead_time_in_weeks': 'leadTimeInWeeks', 'skip_ru': 'skipRu' } self._preference = None self._patching_mode = None self._is_custom_action_timeout_enabled = None self._custom_action_timeout_in_mins = None self._is_monthly_patching_enabled = None self._months = None self._weeks_of_month = None self._days_of_week = None self._hours_of_day = None self._lead_time_in_weeks = None self._skip_ru = None @property def preference(self): """ Gets the preference of this MaintenanceWindow. The maintenance window scheduling preference. Allowed values for this property are: "NO_PREFERENCE", "CUSTOM_PREFERENCE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The preference of this MaintenanceWindow. :rtype: str """ return self._preference @preference.setter def preference(self, preference): """ Sets the preference of this MaintenanceWindow. The maintenance window scheduling preference. :param preference: The preference of this MaintenanceWindow. :type: str """ allowed_values = ["NO_PREFERENCE", "CUSTOM_PREFERENCE"] if not value_allowed_none_or_none_sentinel(preference, allowed_values): preference = 'UNKNOWN_ENUM_VALUE' self._preference = preference @property def patching_mode(self): """ Gets the patching_mode of this MaintenanceWindow. Cloud Exadata infrastructure node patching method, either \"ROLLING\" or \"NONROLLING\". Default value is ROLLING. *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See `Oracle-Managed Infrastructure Maintenance Updates`__ for more information. __ https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle Allowed values for this property are: "ROLLING", "NONROLLING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The patching_mode of this MaintenanceWindow. :rtype: str """ return self._patching_mode @patching_mode.setter def patching_mode(self, patching_mode): """ Sets the patching_mode of this MaintenanceWindow. Cloud Exadata infrastructure node patching method, either \"ROLLING\" or \"NONROLLING\". Default value is ROLLING. *IMPORTANT*: Non-rolling infrastructure patching involves system down time. See `Oracle-Managed Infrastructure Maintenance Updates`__ for more information. __ https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/examaintenance.htm#Oracle :param patching_mode: The patching_mode of this MaintenanceWindow. :type: str """ allowed_values = ["ROLLING", "NONROLLING"] if not value_allowed_none_or_none_sentinel(patching_mode, allowed_values): patching_mode = 'UNKNOWN_ENUM_VALUE' self._patching_mode = patching_mode @property def is_custom_action_timeout_enabled(self): """ Gets the is_custom_action_timeout_enabled of this MaintenanceWindow. If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations. :return: The is_custom_action_timeout_enabled of this MaintenanceWindow. :rtype: bool """ return self._is_custom_action_timeout_enabled @is_custom_action_timeout_enabled.setter def is_custom_action_timeout_enabled(self, is_custom_action_timeout_enabled): """ Sets the is_custom_action_timeout_enabled of this MaintenanceWindow. If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations. :param is_custom_action_timeout_enabled: The is_custom_action_timeout_enabled of this MaintenanceWindow. :type: bool """ self._is_custom_action_timeout_enabled = is_custom_action_timeout_enabled @property def custom_action_timeout_in_mins(self): """ Gets the custom_action_timeout_in_mins of this MaintenanceWindow. Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive). :return: The custom_action_timeout_in_mins of this MaintenanceWindow. :rtype: int """ return self._custom_action_timeout_in_mins @custom_action_timeout_in_mins.setter def custom_action_timeout_in_mins(self, custom_action_timeout_in_mins): """ Sets the custom_action_timeout_in_mins of this MaintenanceWindow. Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive). :param custom_action_timeout_in_mins: The custom_action_timeout_in_mins of this MaintenanceWindow. :type: int """ self._custom_action_timeout_in_mins = custom_action_timeout_in_mins @property def is_monthly_patching_enabled(self): """ Gets the is_monthly_patching_enabled of this MaintenanceWindow. If true, enables the monthly patching option. :return: The is_monthly_patching_enabled of this MaintenanceWindow. :rtype: bool """ return self._is_monthly_patching_enabled @is_monthly_patching_enabled.setter def is_monthly_patching_enabled(self, is_monthly_patching_enabled): """ Sets the is_monthly_patching_enabled of this MaintenanceWindow. If true, enables the monthly patching option. :param is_monthly_patching_enabled: The is_monthly_patching_enabled of this MaintenanceWindow. :type: bool """ self._is_monthly_patching_enabled = is_monthly_patching_enabled @property def months(self): """ Gets the months of this MaintenanceWindow. Months during the year when maintenance should be performed. :return: The months of this MaintenanceWindow. :rtype: list[oci.database.models.Month] """ return self._months @months.setter def months(self, months): """ Sets the months of this MaintenanceWindow. Months during the year when maintenance should be performed. :param months: The months of this MaintenanceWindow. :type: list[oci.database.models.Month] """ self._months = months @property def weeks_of_month(self): """ Gets the weeks_of_month of this MaintenanceWindow. Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. :return: The weeks_of_month of this MaintenanceWindow. :rtype: list[int] """ return self._weeks_of_month @weeks_of_month.setter def weeks_of_month(self, weeks_of_month): """ Sets the weeks_of_month of this MaintenanceWindow. Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed. :param weeks_of_month: The weeks_of_month of this MaintenanceWindow. :type: list[int] """ self._weeks_of_month = weeks_of_month @property def days_of_week(self): """ Gets the days_of_week of this MaintenanceWindow. Days during the week when maintenance should be performed. :return: The days_of_week of this MaintenanceWindow. :rtype: list[oci.database.models.DayOfWeek] """ return self._days_of_week @days_of_week.setter def days_of_week(self, days_of_week): """ Sets the days_of_week of this MaintenanceWindow. Days during the week when maintenance should be performed. :param days_of_week: The days_of_week of this MaintenanceWindow. :type: list[oci.database.models.DayOfWeek] """ self._days_of_week = days_of_week @property def hours_of_day(self): """ Gets the hours_of_day of this MaintenanceWindow. The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC :return: The hours_of_day of this MaintenanceWindow. :rtype: list[int] """ return self._hours_of_day @hours_of_day.setter def hours_of_day(self, hours_of_day): """ Sets the hours_of_day of this MaintenanceWindow. The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC :param hours_of_day: The hours_of_day of this MaintenanceWindow. :type: list[int] """ self._hours_of_day = hours_of_day @property def lead_time_in_weeks(self): """ Gets the lead_time_in_weeks of this MaintenanceWindow. Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. :return: The lead_time_in_weeks of this MaintenanceWindow. :rtype: int """ return self._lead_time_in_weeks @lead_time_in_weeks.setter def lead_time_in_weeks(self, lead_time_in_weeks): """ Sets the lead_time_in_weeks of this MaintenanceWindow. Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4. :param lead_time_in_weeks: The lead_time_in_weeks of this MaintenanceWindow. :type: int """ self._lead_time_in_weeks = lead_time_in_weeks @property def skip_ru(self): """ Gets the skip_ru of this MaintenanceWindow. If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter. :return: The skip_ru of this MaintenanceWindow. :rtype: list[bool] """ return self._skip_ru @skip_ru.setter def skip_ru(self, skip_ru): """ Sets the skip_ru of this MaintenanceWindow. If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter. :param skip_ru: The skip_ru of this MaintenanceWindow. :type: list[bool] """ self._skip_ru = skip_ru 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