We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b2253 commit 7e7f641Copy full SHA for 7e7f641
packages/clients/src/api/redis/v1/marshalling.gen.ts
@@ -155,6 +155,7 @@ export const unmarshalCluster = (data: unknown) => {
155
tags: data.tags,
156
tlsEnabled: data.tls_enabled,
157
updatedAt: unmarshalDate(data.updated_at),
158
+ upgradableVersions: data.upgradable_versions,
159
userName: data.user_name,
160
version: data.version,
161
zone: data.zone,
packages/clients/src/api/redis/v1/types.gen.ts
@@ -120,6 +120,8 @@ export interface Cluster {
120
zone: Zone
121
/** Name of the user associated to the cluster */
122
userName: string
123
+ /** List of versions the cluster can be migrated to */
124
+ upgradableVersions: Array<string>
125
}
126
127
/** Cluster metrics response */
0 commit comments