File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ class LinodeInterfaceDefaultRoute(JSONObject):
1515class LinodeInterfaceVPCIPv4Address (JSONObject ):
1616 address : str = ""
1717 primary : bool = False
18+ nat_1_1_address : Optional [str ] = None
1819
1920
2021@dataclass
@@ -65,13 +66,13 @@ class LinodeInterfacePublicIPv6SLAAC(JSONObject):
6566@dataclass
6667class LinodeInterfacePublicIPv6Shared (JSONObject ):
6768 range : str = ""
68- route_target : Optional [str ] = ""
69+ route_target : Optional [str ] = None
6970
7071
7172@dataclass
7273class LinodeInterfacePublicIPv6Range (JSONObject ):
7374 range : str = ""
74- route_target : Optional [str ] = ""
75+ route_target : Optional [str ] = None
7576
7677
7778@dataclass
@@ -90,7 +91,7 @@ class LinodeInterfacePublic(JSONObject):
9091@dataclass
9192class LinodeInterfaceVLAN (JSONObject ):
9293 vlan_label : str = ""
93- ipam_address : Optional [str ] = ""
94+ ipam_address : Optional [str ] = None
9495
9596
9697class LinodeInterface (Base ):
You can’t perform that action at this time.
0 commit comments