Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

F5Encapsulation

Properties

Name Type Description Notes
encapsulation_mode str The encapsulation mode for inner traffic.
ppp_over_dtls_enabled bool
ppp_over_dtls_settings DTLSSettings [optional]
udp_port int
links List[APILink] [optional]

Example

from cyperf.models.f5_encapsulation import F5Encapsulation

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

# convert the object into a dict
f5_encapsulation_dict = f5_encapsulation_instance.to_dict()
# create an instance of F5Encapsulation from a dict
f5_encapsulation_from_dict = F5Encapsulation.from_dict(f5_encapsulation_dict)

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