ruạṛ
a ���f|+ � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ sH e Zd ZdZdZdZdZdZdZdd� Z e d d � �Zejdd � �Ze dd � �Z e jdd � �Z e dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejd d� �Ze d!d"� �Zejd#d"� �Ze d$d%� �Zejd&d%� �Zd'd(� Zd)d*� Zd+d,� Zd-S ).�Nodez& Details of the network node. �SOURCE�DESTINATION� ANONYMOUS�INTERNAL�DANGLINGc K sx ddddddddddd� | _ dddd d ddd ddd� | _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _dS )a9 Initializes a new Node 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 Node. :type id: str :param ip_address: The value to assign to the ip_address property of this Node. :type ip_address: str :param display_name: The value to assign to the display_name property of this Node. :type display_name: str :param geo_info: The value to assign to the geo_info property of this Node. :type geo_info: str :param outgoing_links: The value to assign to the outgoing_links property of this Node. :type outgoing_links: list[str] :param consecutive_anonymous_count: The value to assign to the consecutive_anonymous_count property of this Node. :type consecutive_anonymous_count: int :param level: The value to assign to the level property of this Node. :type level: int :param avg_packet_response_time_in_ms: The value to assign to the avg_packet_response_time_in_ms property of this Node. :type avg_packet_response_time_in_ms: float :param avg_packet_loss_percent: The value to assign to the avg_packet_loss_percent property of this Node. :type avg_packet_loss_percent: float :param type: The value to assign to the type property of this Node. Allowed values for this property are: "SOURCE", "DESTINATION", "ANONYMOUS", "INTERNAL", "DANGLING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type type: str �strz list[str]�int�float) �id� ip_address�display_name�geo_info�outgoing_links�consecutive_anonymous_count�level�avg_packet_response_time_in_ms�avg_packet_loss_percent�typer Z ipAddressZdisplayNameZgeoInfoZ outgoingLinksZconsecutiveAnonymousCountr ZavgPacketResponseTimeInMsZavgPacketLossPercentr N)Z swagger_typesZ attribute_map�_id�_ip_address� _display_name� _geo_info�_outgoing_links�_consecutive_anonymous_count�_level�_avg_packet_response_time_in_ms�_avg_packet_loss_percent�_type)�self�kwargs� r% �B/usr/lib/python3.9/site-packages/oci/apm_synthetics/models/node.py�__init__&