The PSP (PSP Security Protocol) stack for M×N tunnel mapping
| Name | Type | Description | Notes |
|---|---|---|---|
| inner_ip_range | IPRange | [optional] | |
| outer_ip_range | IPRange | [optional] | |
| psp_range | PSPRange | [optional] | |
| psp_stack_name | str | ||
| id | str | ||
| links | List[APILink] | [optional] |
from cyperf.models.psp_stack import PSPStack
# TODO update the JSON string below
json = "{}"
# create an instance of PSPStack from a JSON string
psp_stack_instance = PSPStack.from_json(json)
# print the JSON string representation of the object
print(PSPStack.to_json())
# convert the object into a dict
psp_stack_dict = psp_stack_instance.to_dict()
# create an instance of PSPStack from a dict
psp_stack_from_dict = PSPStack.from_dict(psp_stack_dict)