Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

File metadata and controls

34 lines (25 loc) · 1.27 KB

FortinetSettings

Properties

Name Type Description Notes
var_auth_settings AuthSettings [optional]
outer_tcp_profile TcpProfile [optional]
links List[APILink] [optional]
fortinet_encapsulation FortinetEncapsulation [optional]
outer_tls_client_profile TLSProfile [optional]
vpn_gateway str [optional]

Example

from cyperf.models.fortinet_settings import FortinetSettings

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

# convert the object into a dict
fortinet_settings_dict = fortinet_settings_instance.to_dict()
# create an instance of FortinetSettings from a dict
fortinet_settings_from_dict = FortinetSettings.from_dict(fortinet_settings_dict)

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