File tree 4 files changed +18
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -714,6 +714,10 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
714
714
if field is not None :
715
715
args ["audit_logs_supported" ] = field
716
716
717
+ field = data .get ("max_etcd_size" , None )
718
+ if field is not None :
719
+ args ["max_etcd_size" ] = field
720
+
717
721
field = data .get ("commitment_delay" , None )
718
722
if field is not None :
719
723
args ["commitment_delay" ] = field
Original file line number Diff line number Diff line change @@ -686,6 +686,11 @@ class ClusterType:
686
686
True if the offer allows activation of the audit log functionality. Please note that audit logs are sent to Cockpit.
687
687
"""
688
688
689
+ max_etcd_size : int
690
+ """
691
+ Maximum amount of data that can be stored in etcd for the offer.
692
+ """
693
+
689
694
commitment_delay : Optional [str ]
690
695
"""
691
696
Time period during which you can no longer switch to a lower offer.
Original file line number Diff line number Diff line change @@ -714,6 +714,10 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
714
714
if field is not None :
715
715
args ["audit_logs_supported" ] = field
716
716
717
+ field = data .get ("max_etcd_size" , None )
718
+ if field is not None :
719
+ args ["max_etcd_size" ] = field
720
+
717
721
field = data .get ("commitment_delay" , None )
718
722
if field is not None :
719
723
args ["commitment_delay" ] = field
Original file line number Diff line number Diff line change @@ -686,6 +686,11 @@ class ClusterType:
686
686
True if the offer allows activation of the audit log functionality. Please note that audit logs are sent to Cockpit.
687
687
"""
688
688
689
+ max_etcd_size : int
690
+ """
691
+ Maximum amount of data that can be stored in etcd for the offer.
692
+ """
693
+
689
694
commitment_delay : Optional [str ]
690
695
"""
691
696
Time period during which you can no longer switch to a lower offer.
You can’t perform that action at this time.
0 commit comments