| Name | Type | Description | Notes |
|---|---|---|---|
| var_auth_settings | AuthenticationSettings | [optional] | |
| ike_phase1_config | P1Config | [optional] | |
| ike_phase2_config | P2Config | [optional] | |
| ip_sec_range_name | str | ||
| identification_config | IdentificationConfig | [optional] | |
| local_sub_config | LocalSubnetConfig | [optional] | |
| multi_p2_over_p1 | bool | ||
| pqckem_enabled | bool | ||
| public_peer | str | ||
| public_peer_increment | str | ||
| remote_access | RemoteAccess | [optional] | |
| remote_sub_config | RemoteSubnetConfig | [optional] | |
| test_scenario | str | ||
| timers | Timers | [optional] | |
| tunnel_count_per_outer_ip | int | ||
| id | str | ||
| links | List[APILink] | [optional] |
from cyperf.models.inner_ip_sec_range import InnerIPSecRange
# TODO update the JSON string below
json = "{}"
# create an instance of InnerIPSecRange from a JSON string
inner_ip_sec_range_instance = InnerIPSecRange.from_json(json)
# print the JSON string representation of the object
print(InnerIPSecRange.to_json())
# convert the object into a dict
inner_ip_sec_range_dict = inner_ip_sec_range_instance.to_dict()
# create an instance of InnerIPSecRange from a dict
inner_ip_sec_range_from_dict = InnerIPSecRange.from_dict(inner_ip_sec_range_dict)