Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/clients/src/api/k8s/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ export const unmarshalCluster = (data: unknown): Cluster => {
}

return {
aclAvailable: data.acl_available,
admissionPlugins: data.admission_plugins,
apiserverCertSans: data.apiserver_cert_sans,
autoUpgrade: data.auto_upgrade
Expand All @@ -219,7 +220,6 @@ export const unmarshalCluster = (data: unknown): Cluster => {
description: data.description,
dnsWildcard: data.dns_wildcard,
featureGates: data.feature_gates,
fullVpcIntegratonEnabled: data.full_vpc_integraton_enabled,
id: data.id,
name: data.name,
openIdConnectConfig: data.open_id_connect_config
Expand All @@ -229,7 +229,6 @@ export const unmarshalCluster = (data: unknown): Cluster => {
privateNetworkId: data.private_network_id,
projectId: data.project_id,
region: data.region,
routedIpEnabled: data.routed_ip_enabled,
sbsCsiEnabled: data.sbs_csi_enabled,
status: data.status,
tags: data.tags,
Expand Down
9 changes: 2 additions & 7 deletions packages/clients/src/api/k8s/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -585,18 +585,13 @@ export interface Cluster {
privateNetworkId?: string
/** Date on which it will be possible to switch to a smaller offer. */
commitmentEndsAt?: Date
/**
* @deprecated Defines whether routed IPs are enabled for nodes of this
* cluster.
*/
routedIpEnabled?: boolean
/**
* @deprecated Defines whether the SBS-enabled CSI starting from v0.3 is
* installed on the cluster.
*/
sbsCsiEnabled?: boolean
/** @deprecated Defines whether VPC is fully integrated on the cluster. */
fullVpcIntegratonEnabled?: boolean
/** @deprecated Defines whether ACL is available on the cluster. */
aclAvailable?: boolean
}

export interface Node {
Expand Down
Loading