The VxLAN stack assigned to the current test configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| inner_ip_range | IPRange | [optional] | |
| outer_ip_range | IPRange | [optional] | |
| vx_lan_range | VxLANRange | [optional] | |
| vx_lan_stack_name | str | ||
| id | str | ||
| links | List[APILink] | [optional] |
from cyperf.models.vx_lan_stack import VxLANStack
# TODO update the JSON string below
json = "{}"
# create an instance of VxLANStack from a JSON string
vx_lan_stack_instance = VxLANStack.from_json(json)
# print the JSON string representation of the object
print(VxLANStack.to_json())
# convert the object into a dict
vx_lan_stack_dict = vx_lan_stack_instance.to_dict()
# create an instance of VxLANStack from a dict
vx_lan_stack_from_dict = VxLANStack.from_dict(vx_lan_stack_dict)