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),
userName: data.user_name,
version: data.version,
zone: data.zone,
} as Cluster
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 @@ -118,6 +118,8 @@ export interface Cluster {
clusterSize: number
/** Zone of the cluster */
zone: Zone
/** Name of the user associated to the cluster */
userName: string
}

/** Cluster metrics response */
Expand Down