Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

KawaiiNetIp

A Kawaii Network IP settings.

Properties

Name Type Description Notes
public List[str] The Kawaii global public gateways virtual IP addresses (read-only).
private List[str] The Kawaii global private gateways virtual IP addresses (read-only).
zones List[KawaiiNetIpZone] The Kawaii per-zone list of Kowabunga virtual IP addresses.

Example

from kowabunga.models.kawaii_net_ip import KawaiiNetIp

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

# convert the object into a dict
kawaii_net_ip_dict = kawaii_net_ip_instance.to_dict()
# create an instance of KawaiiNetIp from a dict
kawaii_net_ip_from_dict = KawaiiNetIp.from_dict(kawaii_net_ip_dict)

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