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
1 change: 1 addition & 0 deletions packages/clients/src/api/redis/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export const unmarshalCluster = (data: unknown) => {
tags: data.tags,
tlsEnabled: data.tls_enabled,
updatedAt: unmarshalDate(data.updated_at),
upgradableVersions: data.upgradable_versions,
userName: data.user_name,
version: data.version,
zone: data.zone,
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/redis/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ export interface Cluster {
zone: Zone
/** Name of the user associated to the cluster */
userName: string
/** List of versions the cluster can be migrated to */
upgradableVersions: Array<string>
}

/** Cluster metrics response */
Expand Down