Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.67 KB

IPSecStack.md

File metadata and controls

47 lines (38 loc) · 1.67 KB

IPSecStack

Properties

Name Type Description Notes
ca_certificate_file Params The authentication CA certificate file of the IPsec tunnel(s). [optional]
emulated_sub_config EmulatedSubnetConfig [optional]
enable_rekey bool
ip_sec_range IPSecRange [optional]
ip_sec_stack_name str
log_keys bool
max_initiation_rate int
max_pending int
outer_ip_range IPRange [optional]
rekey_margin int
rekey_retry_count int
retransmission_timeout int
retry_count int
retry_interval int
retry_interval_increment int [optional]
setup_timeout int
stack_role str
id str
links List[APILink] [optional]

Example

from cyperf.models.ip_sec_stack import IPSecStack

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

# convert the object into a dict
ip_sec_stack_dict = ip_sec_stack_instance.to_dict()
# create an instance of IPSecStack from a dict
ip_sec_stack_from_dict = IPSecStack.from_dict(ip_sec_stack_dict)

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