Skip to content

Commit 7dd576d

Browse files
feat(k8s): expose iam ids (#1934)
Co-authored-by: Jonathan R. <[email protected]>
1 parent 44d8dfc commit 7dd576d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

packages/clients/src/api/k8s/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
220220
description: data.description,
221221
dnsWildcard: data.dns_wildcard,
222222
featureGates: data.feature_gates,
223+
iamNodesGroupId: data.iam_nodes_group_id,
223224
id: data.id,
224225
name: data.name,
225226
openIdConnectConfig: data.open_id_connect_config

packages/clients/src/api/k8s/v1/types.gen.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,11 @@ export interface Cluster {
614614
sbsCsiEnabled?: boolean
615615
/** @deprecated Defines whether ACL is available on the cluster. */
616616
aclAvailable?: boolean
617+
/**
618+
* IAM group that nodes are members of (this field might be empty during early
619+
* stage of cluster creation).
620+
*/
621+
iamNodesGroupId: string
617622
}
618623

619624
export interface Node {

0 commit comments

Comments
 (0)