@@ -19,6 +19,7 @@ class VPCIPv4DefaultRange(JSONObject):
1919 ipv4_ranges : Optional [List [str ]] = None
2020 forbidden_ipv4_ranges : Optional [List [str ]] = None
2121
22+
2223@dataclass
2324class VPCIPv4RangeOptions (JSONObject ):
2425 """
@@ -38,6 +39,7 @@ class VPCIPv4Range(JSONObject):
3839
3940 range : str = ""
4041
42+
4143@dataclass
4244class VPCIPv6RangeOptions (JSONObject ):
4345 """
@@ -58,6 +60,7 @@ class VPCIPv6Range(JSONObject):
5860
5961 range : str = ""
6062
63+
6164@dataclass
6265class VPCSubnetIPv6RangeOptions (JSONObject ):
6366 """
@@ -135,7 +138,9 @@ class VPC(Base):
135138 "label" : Property (mutable = True ),
136139 "description" : Property (mutable = True ),
137140 "region" : Property (slug_relationship = Region ),
138- "ipv4" : Property (json_object = VPCIPv4Range , mutable = True , unordered = True ),
141+ "ipv4" : Property (
142+ json_object = VPCIPv4Range , mutable = True , unordered = True
143+ ),
139144 "ipv6" : Property (json_object = VPCIPv6Range , unordered = True ),
140145 "subnets" : Property (derived_class = VPCSubnet ),
141146 "created" : Property (is_datetime = True ),
0 commit comments