Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

CiscoEncapsulation

Properties

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

Example

from cyperf.models.cisco_encapsulation import CiscoEncapsulation

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

# convert the object into a dict
cisco_encapsulation_dict = cisco_encapsulation_instance.to_dict()
# create an instance of CiscoEncapsulation from a dict
cisco_encapsulation_from_dict = CiscoEncapsulation.from_dict(cisco_encapsulation_dict)

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