Skip to content

Commit 41c5d24

Browse files
committed
feat: update generated APIs
1 parent 7ed8bf5 commit 41c5d24

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
204204
}
205205

206206
return {
207+
aclAvailable: data.acl_available,
207208
admissionPlugins: data.admission_plugins,
208209
apiserverCertSans: data.apiserver_cert_sans,
209210
autoUpgrade: data.auto_upgrade
@@ -219,7 +220,6 @@ export const unmarshalCluster = (data: unknown): Cluster => {
219220
description: data.description,
220221
dnsWildcard: data.dns_wildcard,
221222
featureGates: data.feature_gates,
222-
fullVpcIntegratonEnabled: data.full_vpc_integraton_enabled,
223223
id: data.id,
224224
name: data.name,
225225
openIdConnectConfig: data.open_id_connect_config
@@ -229,7 +229,6 @@ export const unmarshalCluster = (data: unknown): Cluster => {
229229
privateNetworkId: data.private_network_id,
230230
projectId: data.project_id,
231231
region: data.region,
232-
routedIpEnabled: data.routed_ip_enabled,
233232
sbsCsiEnabled: data.sbs_csi_enabled,
234233
status: data.status,
235234
tags: data.tags,

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -585,18 +585,13 @@ export interface Cluster {
585585
privateNetworkId?: string
586586
/** Date on which it will be possible to switch to a smaller offer. */
587587
commitmentEndsAt?: Date
588-
/**
589-
* @deprecated Defines whether routed IPs are enabled for nodes of this
590-
* cluster.
591-
*/
592-
routedIpEnabled?: boolean
593588
/**
594589
* @deprecated Defines whether the SBS-enabled CSI starting from v0.3 is
595590
* installed on the cluster.
596591
*/
597592
sbsCsiEnabled?: boolean
598-
/** @deprecated Defines whether VPC is fully integrated on the cluster. */
599-
fullVpcIntegratonEnabled?: boolean
593+
/** @deprecated Defines whether ACL is available on the cluster. */
594+
aclAvailable?: boolean
600595
}
601596

602597
export interface Node {

0 commit comments

Comments
 (0)