Skip to content

Commit 7e7f641

Browse files
authored
feat(redis): add field upgradableVersions (#384)
1 parent f1b2253 commit 7e7f641

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ export const unmarshalCluster = (data: unknown) => {
155155
tags: data.tags,
156156
tlsEnabled: data.tls_enabled,
157157
updatedAt: unmarshalDate(data.updated_at),
158+
upgradableVersions: data.upgradable_versions,
158159
userName: data.user_name,
159160
version: data.version,
160161
zone: data.zone,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ export interface Cluster {
120120
zone: Zone
121121
/** Name of the user associated to the cluster */
122122
userName: string
123+
/** List of versions the cluster can be migrated to */
124+
upgradableVersions: Array<string>
123125
}
124126

125127
/** Cluster metrics response */

0 commit comments

Comments
 (0)