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

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /lib/mysqlsh/lib/python3.9/site-packages/oci/apm_synthetics/models/link.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 Link(object):
    """
    Details of the link between two nodes.
    """

    def __init__(self, **kwargs):
        """
        Initializes a new Link 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 Link.
        :type id: str

        :param source:
            The value to assign to the source property of this Link.
        :type source: str

        :param destination:
            The value to assign to the destination property of this Link.
        :type destination: str

        :param repeat_count:
            The value to assign to the repeat_count property of this Link.
        :type repeat_count: int

        :param forwarding_loss:
            The value to assign to the forwarding_loss property of this Link.
        :type forwarding_loss: float

        :param delay_in_milliseconds:
            The value to assign to the delay_in_milliseconds property of this Link.
        :type delay_in_milliseconds: float

        :param min_delay_in_milliseconds:
            The value to assign to the min_delay_in_milliseconds property of this Link.
        :type min_delay_in_milliseconds: float

        :param max_delay_in_milliseconds:
            The value to assign to the max_delay_in_milliseconds property of this Link.
        :type max_delay_in_milliseconds: float

        :param paths:
            The value to assign to the paths property of this Link.
        :type paths: list[str]

        """
        self.swagger_types = {
            'id': 'str',
            'source': 'str',
            'destination': 'str',
            'repeat_count': 'int',
            'forwarding_loss': 'float',
            'delay_in_milliseconds': 'float',
            'min_delay_in_milliseconds': 'float',
            'max_delay_in_milliseconds': 'float',
            'paths': 'list[str]'
        }

        self.attribute_map = {
            'id': 'id',
            'source': 'source',
            'destination': 'destination',
            'repeat_count': 'repeatCount',
            'forwarding_loss': 'forwardingLoss',
            'delay_in_milliseconds': 'delayInMilliseconds',
            'min_delay_in_milliseconds': 'minDelayInMilliseconds',
            'max_delay_in_milliseconds': 'maxDelayInMilliseconds',
            'paths': 'paths'
        }

        self._id = None
        self._source = None
        self._destination = None
        self._repeat_count = None
        self._forwarding_loss = None
        self._delay_in_milliseconds = None
        self._min_delay_in_milliseconds = None
        self._max_delay_in_milliseconds = None
        self._paths = None

    @property
    def id(self):
        """
        **[Required]** Gets the id of this Link.
        ID of the link.


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

    @id.setter
    def id(self, id):
        """
        Sets the id of this Link.
        ID of the link.


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

    @property
    def source(self):
        """
        Gets the source of this Link.
        ID of the source node.


        :return: The source of this Link.
        :rtype: str
        """
        return self._source

    @source.setter
    def source(self, source):
        """
        Sets the source of this Link.
        ID of the source node.


        :param source: The source of this Link.
        :type: str
        """
        self._source = source

    @property
    def destination(self):
        """
        Gets the destination of this Link.
        ID of the destination node.


        :return: The destination of this Link.
        :rtype: str
        """
        return self._destination

    @destination.setter
    def destination(self, destination):
        """
        Sets the destination of this Link.
        ID of the destination node.


        :param destination: The destination of this Link.
        :type: str
        """
        self._destination = destination

    @property
    def repeat_count(self):
        """
        Gets the repeat_count of this Link.
        Number of times the link is repeated.


        :return: The repeat_count of this Link.
        :rtype: int
        """
        return self._repeat_count

    @repeat_count.setter
    def repeat_count(self, repeat_count):
        """
        Sets the repeat_count of this Link.
        Number of times the link is repeated.


        :param repeat_count: The repeat_count of this Link.
        :type: int
        """
        self._repeat_count = repeat_count

    @property
    def forwarding_loss(self):
        """
        Gets the forwarding_loss of this Link.
        Average packet loss.


        :return: The forwarding_loss of this Link.
        :rtype: float
        """
        return self._forwarding_loss

    @forwarding_loss.setter
    def forwarding_loss(self, forwarding_loss):
        """
        Sets the forwarding_loss of this Link.
        Average packet loss.


        :param forwarding_loss: The forwarding_loss of this Link.
        :type: float
        """
        self._forwarding_loss = forwarding_loss

    @property
    def delay_in_milliseconds(self):
        """
        Gets the delay_in_milliseconds of this Link.
        Difference of the packet response time between source and destination nodes, in milliseconds.


        :return: The delay_in_milliseconds of this Link.
        :rtype: float
        """
        return self._delay_in_milliseconds

    @delay_in_milliseconds.setter
    def delay_in_milliseconds(self, delay_in_milliseconds):
        """
        Sets the delay_in_milliseconds of this Link.
        Difference of the packet response time between source and destination nodes, in milliseconds.


        :param delay_in_milliseconds: The delay_in_milliseconds of this Link.
        :type: float
        """
        self._delay_in_milliseconds = delay_in_milliseconds

    @property
    def min_delay_in_milliseconds(self):
        """
        Gets the min_delay_in_milliseconds of this Link.
        Minimum delay in milliseconds.


        :return: The min_delay_in_milliseconds of this Link.
        :rtype: float
        """
        return self._min_delay_in_milliseconds

    @min_delay_in_milliseconds.setter
    def min_delay_in_milliseconds(self, min_delay_in_milliseconds):
        """
        Sets the min_delay_in_milliseconds of this Link.
        Minimum delay in milliseconds.


        :param min_delay_in_milliseconds: The min_delay_in_milliseconds of this Link.
        :type: float
        """
        self._min_delay_in_milliseconds = min_delay_in_milliseconds

    @property
    def max_delay_in_milliseconds(self):
        """
        Gets the max_delay_in_milliseconds of this Link.
        Maximum delay in milliseconds.


        :return: The max_delay_in_milliseconds of this Link.
        :rtype: float
        """
        return self._max_delay_in_milliseconds

    @max_delay_in_milliseconds.setter
    def max_delay_in_milliseconds(self, max_delay_in_milliseconds):
        """
        Sets the max_delay_in_milliseconds of this Link.
        Maximum delay in milliseconds.


        :param max_delay_in_milliseconds: The max_delay_in_milliseconds of this Link.
        :type: float
        """
        self._max_delay_in_milliseconds = max_delay_in_milliseconds

    @property
    def paths(self):
        """
        Gets the paths of this Link.
        List of all path IDs of which this link is part of.


        :return: The paths of this Link.
        :rtype: list[str]
        """
        return self._paths

    @paths.setter
    def paths(self, paths):
        """
        Sets the paths of this Link.
        List of all path IDs of which this link is part of.


        :param paths: The paths of this Link.
        :type: list[str]
        """
        self._paths = paths

    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