A Kawaii (Kowabunga Adapative WAn Intelligent Interface) is a network gateway used for your Internet inbound and outbound traffic.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The Kawaii ID (auto-generated). | [optional] |
| name | str | The Kawaii name. | [optional] |
| description | str | The Kawaii description. | [optional] |
| netip | KawaiiNetIp | [optional] | |
| firewall | KawaiiFirewall | [optional] | |
| dnat | List[KawaiiDNatRule] | The Kawaii list of NAT forwarding entries. Kawaii will forward public Internet traffic from all public virtual IPs to requested private subnet IP addresses. | [optional] |
| vpc_peerings | List[KawaiiVpcPeering] | The Kawaii list of Kowabunga private VPC subnet peering entries. | [optional] |
| ipsec_connections | List[KawaiiIpSec] | The Kawaii list of Kowabunga IPsec connections. | [optional] |
from kowabunga.models.kawaii import Kawaii
# TODO update the JSON string below
json = "{}"
# create an instance of Kawaii from a JSON string
kawaii_instance = Kawaii.from_json(json)
# print the JSON string representation of the object
print(Kawaii.to_json())
# convert the object into a dict
kawaii_dict = kawaii_instance.to_dict()
# create an instance of Kawaii from a dict
kawaii_from_dict = Kawaii.from_dict(kawaii_dict)