Skip to content

Commit 391c75e

Browse files
authored
feat(k8s): add routedIpEnabled field to Cluster (#1243)
1 parent 40437b0 commit 391c75e

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
@@ -219,6 +219,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
219219
privateNetworkId: data.private_network_id,
220220
projectId: data.project_id,
221221
region: data.region,
222+
routedIpEnabled: data.routed_ip_enabled,
222223
status: data.status,
223224
tags: data.tags,
224225
type: data.type,

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,11 @@ export interface Cluster {
542542
privateNetworkId?: string
543543
/** Date on which it will be possible to switch to a smaller offer. */
544544
commitmentEndsAt?: Date
545+
/**
546+
* @deprecated Defines whether routed IPs are enabled for nodes of this
547+
* cluster.
548+
*/
549+
routedIpEnabled?: boolean
545550
}
546551

547552
export interface Node {

0 commit comments

Comments
 (0)