The Tunnel Range assigned to the current test configuration
| 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] |
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)