Skip to content

Commit eff3a04

Browse files
authored
feat(redis): allow filtering the list of Clusters using version attribute (#172)
1 parent 03f1793 commit eff3a04

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ export class RedisV1GenAPI extends API {
197197
request.projectId ?? this.client.settings.defaultProjectId,
198198
],
199199
['tags', request.tags],
200+
['version', request.version],
200201
),
201202
},
202203
unmarshalListClustersResponse,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,8 @@ export type ListClustersRequest = {
346346
projectId?: string
347347
/** Organization ID to list the cluster of */
348348
organizationId?: string
349+
/** Version of the clusters to filter upon */
350+
version?: string
349351
page?: number
350352
pageSize?: number
351353
}

0 commit comments

Comments
 (0)