diff --git a/packages/clients/src/api/k8s/v1/marshalling.gen.ts b/packages/clients/src/api/k8s/v1/marshalling.gen.ts index 03133500b..1e974c7ea 100644 --- a/packages/clients/src/api/k8s/v1/marshalling.gen.ts +++ b/packages/clients/src/api/k8s/v1/marshalling.gen.ts @@ -219,6 +219,7 @@ export const unmarshalCluster = (data: unknown): Cluster => { privateNetworkId: data.private_network_id, projectId: data.project_id, region: data.region, + routedIpEnabled: data.routed_ip_enabled, status: data.status, tags: data.tags, type: data.type, diff --git a/packages/clients/src/api/k8s/v1/types.gen.ts b/packages/clients/src/api/k8s/v1/types.gen.ts index c3bf872e5..1836acde7 100644 --- a/packages/clients/src/api/k8s/v1/types.gen.ts +++ b/packages/clients/src/api/k8s/v1/types.gen.ts @@ -542,6 +542,11 @@ export interface Cluster { privateNetworkId?: string /** Date on which it will be possible to switch to a smaller offer. */ commitmentEndsAt?: Date + /** + * @deprecated Defines whether routed IPs are enabled for nodes of this + * cluster. + */ + routedIpEnabled?: boolean } export interface Node {