Server IP : 103.119.228.120 / Your IP : 52.14.166.224 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 : /lib/mysqlsh/lib/python3.9/site-packages/oci/cloud_guard/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: 20200131 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 ProblemEntitySummary(object): """ Summary information about problem entities for a data source for a problem. """ def __init__(self, **kwargs): """ Initializes a new ProblemEntitySummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param regions: The value to assign to the regions property of this ProblemEntitySummary. :type regions: list[str] :param time_first_detected: The value to assign to the time_first_detected property of this ProblemEntitySummary. :type time_first_detected: datetime :param problem_id: The value to assign to the problem_id property of this ProblemEntitySummary. :type problem_id: str :param time_last_detected: The value to assign to the time_last_detected property of this ProblemEntitySummary. :type time_last_detected: datetime :param result_url: The value to assign to the result_url property of this ProblemEntitySummary. :type result_url: str :param entity_details: The value to assign to the entity_details property of this ProblemEntitySummary. :type entity_details: list[oci.cloud_guard.models.EntityDetails] """ self.swagger_types = { 'regions': 'list[str]', 'time_first_detected': 'datetime', 'problem_id': 'str', 'time_last_detected': 'datetime', 'result_url': 'str', 'entity_details': 'list[EntityDetails]' } self.attribute_map = { 'regions': 'regions', 'time_first_detected': 'timeFirstDetected', 'problem_id': 'problemId', 'time_last_detected': 'timeLastDetected', 'result_url': 'resultUrl', 'entity_details': 'entityDetails' } self._regions = None self._time_first_detected = None self._problem_id = None self._time_last_detected = None self._result_url = None self._entity_details = None @property def regions(self): """ **[Required]** Gets the regions of this ProblemEntitySummary. Data source problem entities region :return: The regions of this ProblemEntitySummary. :rtype: list[str] """ return self._regions @regions.setter def regions(self, regions): """ Sets the regions of this ProblemEntitySummary. Data source problem entities region :param regions: The regions of this ProblemEntitySummary. :type: list[str] """ self._regions = regions @property def time_first_detected(self): """ **[Required]** Gets the time_first_detected of this ProblemEntitySummary. Data source problem entities first detected time :return: The time_first_detected of this ProblemEntitySummary. :rtype: datetime """ return self._time_first_detected @time_first_detected.setter def time_first_detected(self, time_first_detected): """ Sets the time_first_detected of this ProblemEntitySummary. Data source problem entities first detected time :param time_first_detected: The time_first_detected of this ProblemEntitySummary. :type: datetime """ self._time_first_detected = time_first_detected @property def problem_id(self): """ **[Required]** Gets the problem_id of this ProblemEntitySummary. Attached problem ID :return: The problem_id of this ProblemEntitySummary. :rtype: str """ return self._problem_id @problem_id.setter def problem_id(self, problem_id): """ Sets the problem_id of this ProblemEntitySummary. Attached problem ID :param problem_id: The problem_id of this ProblemEntitySummary. :type: str """ self._problem_id = problem_id @property def time_last_detected(self): """ **[Required]** Gets the time_last_detected of this ProblemEntitySummary. Data source problem entities last detected time :return: The time_last_detected of this ProblemEntitySummary. :rtype: datetime """ return self._time_last_detected @time_last_detected.setter def time_last_detected(self, time_last_detected): """ Sets the time_last_detected of this ProblemEntitySummary. Data source problem entities last detected time :param time_last_detected: The time_last_detected of this ProblemEntitySummary. :type: datetime """ self._time_last_detected = time_last_detected @property def result_url(self): """ Gets the result_url of this ProblemEntitySummary. Log result query URL for a data source query :return: The result_url of this ProblemEntitySummary. :rtype: str """ return self._result_url @result_url.setter def result_url(self, result_url): """ Sets the result_url of this ProblemEntitySummary. Log result query URL for a data source query :param result_url: The result_url of this ProblemEntitySummary. :type: str """ self._result_url = result_url @property def entity_details(self): """ Gets the entity_details of this ProblemEntitySummary. List of entity details related to a data source :return: The entity_details of this ProblemEntitySummary. :rtype: list[oci.cloud_guard.models.EntityDetails] """ return self._entity_details @entity_details.setter def entity_details(self, entity_details): """ Sets the entity_details of this ProblemEntitySummary. List of entity details related to a data source :param entity_details: The entity_details of this ProblemEntitySummary. :type: list[oci.cloud_guard.models.EntityDetails] """ self._entity_details = entity_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