File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,9 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
284
284
field = data .get ("availability" , None )
285
285
args ["availability" ] = field
286
286
287
+ field = data .get ("commitment_delay" , None )
288
+ args ["commitment_delay" ] = field
289
+
287
290
field = data .get ("max_nodes" , None )
288
291
args ["max_nodes" ] = field
289
292
Original file line number Diff line number Diff line change @@ -455,6 +455,11 @@ class ClusterType:
455
455
Maximum number of nodes supported by the offer.
456
456
"""
457
457
458
+ commitment_delay : Optional [str ]
459
+ """
460
+ Time period during which you can no longer switch to a lower offer.
461
+ """
462
+
458
463
459
464
@dataclass
460
465
class CreateClusterRequestAutoUpgrade :
Original file line number Diff line number Diff line change @@ -284,6 +284,9 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
284
284
field = data .get ("availability" , None )
285
285
args ["availability" ] = field
286
286
287
+ field = data .get ("commitment_delay" , None )
288
+ args ["commitment_delay" ] = field
289
+
287
290
field = data .get ("max_nodes" , None )
288
291
args ["max_nodes" ] = field
289
292
Original file line number Diff line number Diff line change @@ -455,6 +455,11 @@ class ClusterType:
455
455
Maximum number of nodes supported by the offer.
456
456
"""
457
457
458
+ commitment_delay : Optional [str ]
459
+ """
460
+ Time period during which you can no longer switch to a lower offer.
461
+ """
462
+
458
463
459
464
@dataclass
460
465
class CreateClusterRequestAutoUpgrade :
You can’t perform that action at this time.
0 commit comments