403Webshell
Server IP : 103.119.228.120  /  Your IP : 3.141.42.41
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/opsi/models/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/opsi/models/addm_db_finding_aggregation.py
# 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: 20200630


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 AddmDbFindingAggregation(object):
    """
    Summarizes a specific ADDM finding
    """

    def __init__(self, **kwargs):
        """
        Initializes a new AddmDbFindingAggregation object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param id:
            The value to assign to the id property of this AddmDbFindingAggregation.
        :type id: str

        :param finding_id:
            The value to assign to the finding_id property of this AddmDbFindingAggregation.
        :type finding_id: str

        :param category_name:
            The value to assign to the category_name property of this AddmDbFindingAggregation.
        :type category_name: str

        :param category_display_name:
            The value to assign to the category_display_name property of this AddmDbFindingAggregation.
        :type category_display_name: str

        :param name:
            The value to assign to the name property of this AddmDbFindingAggregation.
        :type name: str

        :param message:
            The value to assign to the message property of this AddmDbFindingAggregation.
        :type message: str

        :param impact_overall_percent:
            The value to assign to the impact_overall_percent property of this AddmDbFindingAggregation.
        :type impact_overall_percent: float

        :param impact_max_percent:
            The value to assign to the impact_max_percent property of this AddmDbFindingAggregation.
        :type impact_max_percent: float

        :param impact_avg_active_sessions:
            The value to assign to the impact_avg_active_sessions property of this AddmDbFindingAggregation.
        :type impact_avg_active_sessions: float

        :param frequency_count:
            The value to assign to the frequency_count property of this AddmDbFindingAggregation.
        :type frequency_count: int

        :param recommendation_count:
            The value to assign to the recommendation_count property of this AddmDbFindingAggregation.
        :type recommendation_count: int

        """
        self.swagger_types = {
            'id': 'str',
            'finding_id': 'str',
            'category_name': 'str',
            'category_display_name': 'str',
            'name': 'str',
            'message': 'str',
            'impact_overall_percent': 'float',
            'impact_max_percent': 'float',
            'impact_avg_active_sessions': 'float',
            'frequency_count': 'int',
            'recommendation_count': 'int'
        }

        self.attribute_map = {
            'id': 'id',
            'finding_id': 'findingId',
            'category_name': 'categoryName',
            'category_display_name': 'categoryDisplayName',
            'name': 'name',
            'message': 'message',
            'impact_overall_percent': 'impactOverallPercent',
            'impact_max_percent': 'impactMaxPercent',
            'impact_avg_active_sessions': 'impactAvgActiveSessions',
            'frequency_count': 'frequencyCount',
            'recommendation_count': 'recommendationCount'
        }

        self._id = None
        self._finding_id = None
        self._category_name = None
        self._category_display_name = None
        self._name = None
        self._message = None
        self._impact_overall_percent = None
        self._impact_max_percent = None
        self._impact_avg_active_sessions = None
        self._frequency_count = None
        self._recommendation_count = None

    @property
    def id(self):
        """
        **[Required]** Gets the id of this AddmDbFindingAggregation.
        The `OCID`__ of the Database insight.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :return: The id of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._id

    @id.setter
    def id(self, id):
        """
        Sets the id of this AddmDbFindingAggregation.
        The `OCID`__ of the Database insight.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :param id: The id of this AddmDbFindingAggregation.
        :type: str
        """
        self._id = id

    @property
    def finding_id(self):
        """
        **[Required]** Gets the finding_id of this AddmDbFindingAggregation.
        Unique finding id


        :return: The finding_id of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._finding_id

    @finding_id.setter
    def finding_id(self, finding_id):
        """
        Sets the finding_id of this AddmDbFindingAggregation.
        Unique finding id


        :param finding_id: The finding_id of this AddmDbFindingAggregation.
        :type: str
        """
        self._finding_id = finding_id

    @property
    def category_name(self):
        """
        **[Required]** Gets the category_name of this AddmDbFindingAggregation.
        Category name


        :return: The category_name of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._category_name

    @category_name.setter
    def category_name(self, category_name):
        """
        Sets the category_name of this AddmDbFindingAggregation.
        Category name


        :param category_name: The category_name of this AddmDbFindingAggregation.
        :type: str
        """
        self._category_name = category_name

    @property
    def category_display_name(self):
        """
        **[Required]** Gets the category_display_name of this AddmDbFindingAggregation.
        Category display name


        :return: The category_display_name of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._category_display_name

    @category_display_name.setter
    def category_display_name(self, category_display_name):
        """
        Sets the category_display_name of this AddmDbFindingAggregation.
        Category display name


        :param category_display_name: The category_display_name of this AddmDbFindingAggregation.
        :type: str
        """
        self._category_display_name = category_display_name

    @property
    def name(self):
        """
        **[Required]** Gets the name of this AddmDbFindingAggregation.
        Finding name


        :return: The name of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """
        Sets the name of this AddmDbFindingAggregation.
        Finding name


        :param name: The name of this AddmDbFindingAggregation.
        :type: str
        """
        self._name = name

    @property
    def message(self):
        """
        **[Required]** Gets the message of this AddmDbFindingAggregation.
        Finding message


        :return: The message of this AddmDbFindingAggregation.
        :rtype: str
        """
        return self._message

    @message.setter
    def message(self, message):
        """
        Sets the message of this AddmDbFindingAggregation.
        Finding message


        :param message: The message of this AddmDbFindingAggregation.
        :type: str
        """
        self._message = message

    @property
    def impact_overall_percent(self):
        """
        **[Required]** Gets the impact_overall_percent of this AddmDbFindingAggregation.
        Overall impact in terms of percentage of total activity


        :return: The impact_overall_percent of this AddmDbFindingAggregation.
        :rtype: float
        """
        return self._impact_overall_percent

    @impact_overall_percent.setter
    def impact_overall_percent(self, impact_overall_percent):
        """
        Sets the impact_overall_percent of this AddmDbFindingAggregation.
        Overall impact in terms of percentage of total activity


        :param impact_overall_percent: The impact_overall_percent of this AddmDbFindingAggregation.
        :type: float
        """
        self._impact_overall_percent = impact_overall_percent

    @property
    def impact_max_percent(self):
        """
        **[Required]** Gets the impact_max_percent of this AddmDbFindingAggregation.
        Maximum impact in terms of percentage of total activity


        :return: The impact_max_percent of this AddmDbFindingAggregation.
        :rtype: float
        """
        return self._impact_max_percent

    @impact_max_percent.setter
    def impact_max_percent(self, impact_max_percent):
        """
        Sets the impact_max_percent of this AddmDbFindingAggregation.
        Maximum impact in terms of percentage of total activity


        :param impact_max_percent: The impact_max_percent of this AddmDbFindingAggregation.
        :type: float
        """
        self._impact_max_percent = impact_max_percent

    @property
    def impact_avg_active_sessions(self):
        """
        Gets the impact_avg_active_sessions of this AddmDbFindingAggregation.
        Impact in terms of average active sessions


        :return: The impact_avg_active_sessions of this AddmDbFindingAggregation.
        :rtype: float
        """
        return self._impact_avg_active_sessions

    @impact_avg_active_sessions.setter
    def impact_avg_active_sessions(self, impact_avg_active_sessions):
        """
        Sets the impact_avg_active_sessions of this AddmDbFindingAggregation.
        Impact in terms of average active sessions


        :param impact_avg_active_sessions: The impact_avg_active_sessions of this AddmDbFindingAggregation.
        :type: float
        """
        self._impact_avg_active_sessions = impact_avg_active_sessions

    @property
    def frequency_count(self):
        """
        **[Required]** Gets the frequency_count of this AddmDbFindingAggregation.
        Number of occurrences for this finding


        :return: The frequency_count of this AddmDbFindingAggregation.
        :rtype: int
        """
        return self._frequency_count

    @frequency_count.setter
    def frequency_count(self, frequency_count):
        """
        Sets the frequency_count of this AddmDbFindingAggregation.
        Number of occurrences for this finding


        :param frequency_count: The frequency_count of this AddmDbFindingAggregation.
        :type: int
        """
        self._frequency_count = frequency_count

    @property
    def recommendation_count(self):
        """
        **[Required]** Gets the recommendation_count of this AddmDbFindingAggregation.
        Number of recommendations for this finding


        :return: The recommendation_count of this AddmDbFindingAggregation.
        :rtype: int
        """
        return self._recommendation_count

    @recommendation_count.setter
    def recommendation_count(self, recommendation_count):
        """
        Sets the recommendation_count of this AddmDbFindingAggregation.
        Number of recommendations for this finding


        :param recommendation_count: The recommendation_count of this AddmDbFindingAggregation.
        :type: int
        """
        self._recommendation_count = recommendation_count

    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

Youez - 2016 - github.com/yon3zu
LinuXploit