Skip to content

Commit 39e03b4

Browse files
authored
feat(iam): allow filtering by name in ListQuotas (#1212)
1 parent a594f3f commit 39e03b4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/iam/v1alpha1/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,6 +1025,7 @@ export class API extends ParentAPI {
10251025
'page_size',
10261026
request.pageSize ?? this.client.settings.defaultPageSize,
10271027
],
1028+
['quotum_names', request.quotumNames],
10281029
),
10291030
},
10301031
unmarshalListQuotaResponse,

packages/clients/src/api/iam/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,8 @@ export type ListQuotaRequest = {
826826
page?: number
827827
/** Filter by Organization ID. */
828828
organizationId?: string
829+
/** List of quotum names to filter from. */
830+
quotumNames?: string[]
829831
}
830832

831833
export interface ListQuotaResponse {

0 commit comments

Comments
 (0)