diff --git a/scaleway-async/scaleway_async/k8s/v1/marshalling.py b/scaleway-async/scaleway_async/k8s/v1/marshalling.py index 767127773..e14047db0 100644 --- a/scaleway-async/scaleway_async/k8s/v1/marshalling.py +++ b/scaleway-async/scaleway_async/k8s/v1/marshalling.py @@ -488,12 +488,6 @@ def unmarshal_Cluster(data: Any) -> Cluster: else: args["commitment_ends_at"] = None - field = data.get("routed_ip_enabled", None) - if field is not None: - args["routed_ip_enabled"] = field - else: - args["routed_ip_enabled"] = None - field = data.get("sbs_csi_enabled", None) if field is not None: args["sbs_csi_enabled"] = field diff --git a/scaleway-async/scaleway_async/k8s/v1/types.py b/scaleway-async/scaleway_async/k8s/v1/types.py index 2176cf549..cd0c4deb5 100644 --- a/scaleway-async/scaleway_async/k8s/v1/types.py +++ b/scaleway-async/scaleway_async/k8s/v1/types.py @@ -893,11 +893,6 @@ class Cluster: Date on which it will be possible to switch to a smaller offer. """ - routed_ip_enabled: Optional[bool] - """ - Defines whether routed IPs are enabled for nodes of this cluster. - """ - sbs_csi_enabled: Optional[bool] """ Defines whether the SBS-enabled CSI starting from v0.3 is installed on the cluster. diff --git a/scaleway/scaleway/k8s/v1/marshalling.py b/scaleway/scaleway/k8s/v1/marshalling.py index 767127773..e14047db0 100644 --- a/scaleway/scaleway/k8s/v1/marshalling.py +++ b/scaleway/scaleway/k8s/v1/marshalling.py @@ -488,12 +488,6 @@ def unmarshal_Cluster(data: Any) -> Cluster: else: args["commitment_ends_at"] = None - field = data.get("routed_ip_enabled", None) - if field is not None: - args["routed_ip_enabled"] = field - else: - args["routed_ip_enabled"] = None - field = data.get("sbs_csi_enabled", None) if field is not None: args["sbs_csi_enabled"] = field diff --git a/scaleway/scaleway/k8s/v1/types.py b/scaleway/scaleway/k8s/v1/types.py index 2176cf549..cd0c4deb5 100644 --- a/scaleway/scaleway/k8s/v1/types.py +++ b/scaleway/scaleway/k8s/v1/types.py @@ -893,11 +893,6 @@ class Cluster: Date on which it will be possible to switch to a smaller offer. """ - routed_ip_enabled: Optional[bool] - """ - Defines whether routed IPs are enabled for nodes of this cluster. - """ - sbs_csi_enabled: Optional[bool] """ Defines whether the SBS-enabled CSI starting from v0.3 is installed on the cluster.