Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.52 KB

File metadata and controls

40 lines (31 loc) · 1.52 KB

TunnelRange

The Tunnel Range assigned to the current test configuration

Properties

Name Type Description Notes
cisco_any_connect_settings CiscoAnyConnectSettings [optional]
dcp_request_timeout int [optional]
dns_resolver DNSResolver [optional]
f5_settings F5Settings [optional]
fortinet_settings FortinetSettings [optional]
pangp_settings PANGPSettings [optional]
tcp_dst_port int
tunnel_count_per_outer_ip int
tunnel_establishment_timeout int [optional]
vendor_type str
links List[APILink] [optional]

Example

from cyperf.models.tunnel_range import TunnelRange

# TODO update the JSON string below
json = "{}"
# create an instance of TunnelRange from a JSON string
tunnel_range_instance = TunnelRange.from_json(json)
# print the JSON string representation of the object
print(TunnelRange.to_json())

# convert the object into a dict
tunnel_range_dict = tunnel_range_instance.to_dict()
# create an instance of TunnelRange from a dict
tunnel_range_from_dict = TunnelRange.from_dict(tunnel_range_dict)

[Back to Model list] [Back to API list] [Back to README]