| Name | Type | Description | Notes |
|---|---|---|---|
| var_auth_settings | AuthSettings | [optional] | |
| outer_tcp_profile | TcpProfile | [optional] | |
| links | List[APILink] | [optional] | |
| f5_encapsulation | F5Encapsulation | [optional] | |
| outer_tls_client_profile | TLSProfile | [optional] | |
| vpn_gateway | str | [optional] |
from cyperf.models.f5_settings import F5Settings
# TODO update the JSON string below
json = "{}"
# create an instance of F5Settings from a JSON string
f5_settings_instance = F5Settings.from_json(json)
# print the JSON string representation of the object
print(F5Settings.to_json())
# convert the object into a dict
f5_settings_dict = f5_settings_instance.to_dict()
# create an instance of F5Settings from a dict
f5_settings_from_dict = F5Settings.from_dict(f5_settings_dict)