A Kawaii Network IP settings.
| 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. |
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)