From 1587acd9f47927b3272310b94e7e9476375c5f92 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Tue, 18 Mar 2025 15:06:22 +0000 Subject: [PATCH] feat: update generated APIs --- packages/clients/src/api/k8s/v1/marshalling.gen.ts | 1 + packages/clients/src/api/k8s/v1/types.gen.ts | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/packages/clients/src/api/k8s/v1/marshalling.gen.ts b/packages/clients/src/api/k8s/v1/marshalling.gen.ts index 46614bd64..16496dcbc 100644 --- a/packages/clients/src/api/k8s/v1/marshalling.gen.ts +++ b/packages/clients/src/api/k8s/v1/marshalling.gen.ts @@ -220,6 +220,7 @@ export const unmarshalCluster = (data: unknown): Cluster => { description: data.description, dnsWildcard: data.dns_wildcard, featureGates: data.feature_gates, + iamNodesGroupId: data.iam_nodes_group_id, id: data.id, name: data.name, openIdConnectConfig: data.open_id_connect_config diff --git a/packages/clients/src/api/k8s/v1/types.gen.ts b/packages/clients/src/api/k8s/v1/types.gen.ts index f89a267ed..6dcd9518e 100644 --- a/packages/clients/src/api/k8s/v1/types.gen.ts +++ b/packages/clients/src/api/k8s/v1/types.gen.ts @@ -614,6 +614,11 @@ export interface Cluster { sbsCsiEnabled?: boolean /** @deprecated Defines whether ACL is available on the cluster. */ aclAvailable?: boolean + /** + * IAM group that nodes are members of (this field might be empty during early + * stage of cluster creation). + */ + iamNodesGroupId: string } export interface Node {