File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
packages/clients/src/api/k8s/v1 Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
602597export interface Node {
You can’t perform that action at this time.
0 commit comments