Skip to content

Commit 4374b92

Browse files
committed
feat: update generated APIs
1 parent 7ed8bf5 commit 4374b92

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@ export interface Cluster {
595595
* installed on the cluster.
596596
*/
597597
sbsCsiEnabled?: boolean
598-
/** @deprecated Defines whether VPC is fully integrated on the cluster. */
599-
fullVpcIntegratonEnabled?: boolean
598+
/** @deprecated Defines whether ACL is available on the cluster. */
599+
aclAvailable?: boolean
600600
}
601601

602602
export interface Node {

0 commit comments

Comments
 (0)