Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

Kiwi

A Kiwi (Kowabunga Inner Wan Interface) provides edge-network services..

Properties

Name Type Description Notes
id str The Kiwi (Kowabunga Inner Wan Interface) provides edge-network services. ID (auto-generated). [optional]
name str The Kiwi (Kowabunga Inner Wan Interface) provides edge-network services. name.
description str The Kiwi (Kowabunga Inner Wan Interface) provides edge-network services. description. [optional]
agents List[str] a list of existing remote agents managing the network gateway. [optional]

Example

from kowabunga.models.kiwi import Kiwi

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

# convert the object into a dict
kiwi_dict = kiwi_instance.to_dict()
# create an instance of Kiwi from a dict
kiwi_from_dict = Kiwi.from_dict(kiwi_dict)

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