Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

KawaiiNetIpZone

A Kawaii Network IP zone settings.

Properties

Name Type Description Notes
zone str The Kawaii zone name (read-only).
public str The Kawaii zone gateway public virtual IP (read-only).
private str The Kawaii zone gateway private virtual IP (read-only).

Example

from kowabunga.models.kawaii_net_ip_zone import KawaiiNetIpZone

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

# convert the object into a dict
kawaii_net_ip_zone_dict = kawaii_net_ip_zone_instance.to_dict()
# create an instance of KawaiiNetIpZone from a dict
kawaii_net_ip_zone_from_dict = KawaiiNetIpZone.from_dict(kawaii_net_ip_zone_dict)

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