Server IP : 103.119.228.120 / Your IP : 18.227.114.218 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/data_safe/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: 20181201 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 SecurityAssessmentStatistics(object): """ Statistics showing the number of findings for each category grouped by risk levels for all the targets in the specified security assessment. The categories include Auditing, Authorization Control, Data Encryption, Database Configuration, Fine-Grained Access Control, Privileges and Roles, and User Accounts. The risk levels include High Risk, Medium Risk, Low Risk, Advisory, Evaluate, and Pass. """ def __init__(self, **kwargs): """ Initializes a new SecurityAssessmentStatistics object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param targets_count: The value to assign to the targets_count property of this SecurityAssessmentStatistics. :type targets_count: int :param high_risk: The value to assign to the high_risk property of this SecurityAssessmentStatistics. :type high_risk: oci.data_safe.models.SectionStatistics :param medium_risk: The value to assign to the medium_risk property of this SecurityAssessmentStatistics. :type medium_risk: oci.data_safe.models.SectionStatistics :param low_risk: The value to assign to the low_risk property of this SecurityAssessmentStatistics. :type low_risk: oci.data_safe.models.SectionStatistics :param advisory: The value to assign to the advisory property of this SecurityAssessmentStatistics. :type advisory: oci.data_safe.models.SectionStatistics :param evaluate: The value to assign to the evaluate property of this SecurityAssessmentStatistics. :type evaluate: oci.data_safe.models.SectionStatistics :param _pass: The value to assign to the _pass property of this SecurityAssessmentStatistics. :type _pass: oci.data_safe.models.SectionStatistics :param deferred: The value to assign to the deferred property of this SecurityAssessmentStatistics. :type deferred: oci.data_safe.models.SectionStatistics """ self.swagger_types = { 'targets_count': 'int', 'high_risk': 'SectionStatistics', 'medium_risk': 'SectionStatistics', 'low_risk': 'SectionStatistics', 'advisory': 'SectionStatistics', 'evaluate': 'SectionStatistics', '_pass': 'SectionStatistics', 'deferred': 'SectionStatistics' } self.attribute_map = { 'targets_count': 'targetsCount', 'high_risk': 'highRisk', 'medium_risk': 'mediumRisk', 'low_risk': 'lowRisk', 'advisory': 'advisory', 'evaluate': 'evaluate', '_pass': 'pass', 'deferred': 'deferred' } self._targets_count = None self._high_risk = None self._medium_risk = None self._low_risk = None self._advisory = None self._evaluate = None self.__pass = None self._deferred = None @property def targets_count(self): """ Gets the targets_count of this SecurityAssessmentStatistics. The total number of targets in this security assessment. :return: The targets_count of this SecurityAssessmentStatistics. :rtype: int """ return self._targets_count @targets_count.setter def targets_count(self, targets_count): """ Sets the targets_count of this SecurityAssessmentStatistics. The total number of targets in this security assessment. :param targets_count: The targets_count of this SecurityAssessmentStatistics. :type: int """ self._targets_count = targets_count @property def high_risk(self): """ Gets the high_risk of this SecurityAssessmentStatistics. :return: The high_risk of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._high_risk @high_risk.setter def high_risk(self, high_risk): """ Sets the high_risk of this SecurityAssessmentStatistics. :param high_risk: The high_risk of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._high_risk = high_risk @property def medium_risk(self): """ Gets the medium_risk of this SecurityAssessmentStatistics. :return: The medium_risk of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._medium_risk @medium_risk.setter def medium_risk(self, medium_risk): """ Sets the medium_risk of this SecurityAssessmentStatistics. :param medium_risk: The medium_risk of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._medium_risk = medium_risk @property def low_risk(self): """ Gets the low_risk of this SecurityAssessmentStatistics. :return: The low_risk of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._low_risk @low_risk.setter def low_risk(self, low_risk): """ Sets the low_risk of this SecurityAssessmentStatistics. :param low_risk: The low_risk of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._low_risk = low_risk @property def advisory(self): """ Gets the advisory of this SecurityAssessmentStatistics. :return: The advisory of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._advisory @advisory.setter def advisory(self, advisory): """ Sets the advisory of this SecurityAssessmentStatistics. :param advisory: The advisory of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._advisory = advisory @property def evaluate(self): """ Gets the evaluate of this SecurityAssessmentStatistics. :return: The evaluate of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._evaluate @evaluate.setter def evaluate(self, evaluate): """ Sets the evaluate of this SecurityAssessmentStatistics. :param evaluate: The evaluate of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._evaluate = evaluate @property def _pass(self): """ Gets the _pass of this SecurityAssessmentStatistics. :return: The _pass of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self.__pass @_pass.setter def _pass(self, _pass): """ Sets the _pass of this SecurityAssessmentStatistics. :param _pass: The _pass of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self.__pass = _pass @property def deferred(self): """ Gets the deferred of this SecurityAssessmentStatistics. :return: The deferred of this SecurityAssessmentStatistics. :rtype: oci.data_safe.models.SectionStatistics """ return self._deferred @deferred.setter def deferred(self, deferred): """ Sets the deferred of this SecurityAssessmentStatistics. :param deferred: The deferred of this SecurityAssessmentStatistics. :type: oci.data_safe.models.SectionStatistics """ self._deferred = deferred 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