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):
15
15
class LinodeInterfaceVPCIPv4Address (JSONObject ):
16
16
address : str = ""
17
17
primary : bool = False
18
+ nat_1_1_address : Optional [str ] = None
18
19
19
20
20
21
@dataclass
@@ -65,13 +66,13 @@ class LinodeInterfacePublicIPv6SLAAC(JSONObject):
65
66
@dataclass
66
67
class LinodeInterfacePublicIPv6Shared (JSONObject ):
67
68
range : str = ""
68
- route_target : Optional [str ] = ""
69
+ route_target : Optional [str ] = None
69
70
70
71
71
72
@dataclass
72
73
class LinodeInterfacePublicIPv6Range (JSONObject ):
73
74
range : str = ""
74
- route_target : Optional [str ] = ""
75
+ route_target : Optional [str ] = None
75
76
76
77
77
78
@dataclass
@@ -90,7 +91,7 @@ class LinodeInterfacePublic(JSONObject):
90
91
@dataclass
91
92
class LinodeInterfaceVLAN (JSONObject ):
92
93
vlan_label : str = ""
93
- ipam_address : Optional [str ] = ""
94
+ ipam_address : Optional [str ] = None
94
95
95
96
96
97
class LinodeInterface (Base ):
You can’t perform that action at this time.
0 commit comments