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 9d5a114 commit dfe8a96Copy full SHA for dfe8a96
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
+ userName: data.user_name,
159
version: data.version,
160
zone: data.zone,
161
} as Cluster
packages/clients/src/api/redis/v1/types.gen.ts
@@ -118,6 +118,8 @@ export interface Cluster {
118
clusterSize: number
119
/** Zone of the cluster */
120
zone: Zone
121
+ /** Name of the user associated to the cluster */
122
+ userName: string
123
}
124
125
/** Cluster metrics response */
0 commit comments