File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -453,6 +453,10 @@ def unmarshal_Cluster(data: Any) -> Cluster:
453453 parser .isoparse (field ) if isinstance (field , str ) else field
454454 )
455455
456+ field = data .get ("routed_ip_enabled" , None )
457+ if field is not None :
458+ args ["routed_ip_enabled" ] = field
459+
456460 return Cluster (** args )
457461
458462
Original file line number Diff line number Diff line change @@ -857,6 +857,11 @@ class Cluster:
857857 Date on which it will be possible to switch to a smaller offer.
858858 """
859859
860+ routed_ip_enabled : Optional [bool ]
861+ """
862+ Defines whether routed IPs are enabled for nodes of this cluster.
863+ """
864+
860865
861866@dataclass
862867class Node :
Original file line number Diff line number Diff line change @@ -453,6 +453,10 @@ def unmarshal_Cluster(data: Any) -> Cluster:
453453 parser .isoparse (field ) if isinstance (field , str ) else field
454454 )
455455
456+ field = data .get ("routed_ip_enabled" , None )
457+ if field is not None :
458+ args ["routed_ip_enabled" ] = field
459+
456460 return Cluster (** args )
457461
458462
Original file line number Diff line number Diff line change @@ -857,6 +857,11 @@ class Cluster:
857857 Date on which it will be possible to switch to a smaller offer.
858858 """
859859
860+ routed_ip_enabled : Optional [bool ]
861+ """
862+ Defines whether routed IPs are enabled for nodes of this cluster.
863+ """
864+
860865
861866@dataclass
862867class Node :
You can’t perform that action at this time.
0 commit comments