Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

PSPStack

The PSP (PSP Security Protocol) stack for M×N tunnel mapping

Properties

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]

Example

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)

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