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
2 changes: 2 additions & 0 deletions packages/clients/src/api/iam/v1alpha1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,7 @@ export class API extends ParentAPI {
'page_size',
request.pageSize ?? this.client.settings.defaultPageSize,
],
['policy_ids', request.policyIds],
['policy_name', request.policyName],
['tag', request.tag],
['user_ids', request.userIds],
Expand Down Expand Up @@ -946,6 +947,7 @@ export class API extends ParentAPI {
path: `/iam/v1alpha1/api-keys`,
urlParams: urlParams(
['access_key', request.accessKey],
['access_keys', request.accessKeys],
['bearer_id', request.bearerId],
['bearer_type', request.bearerType],
['description', request.description],
Expand Down
6 changes: 5 additions & 1 deletion packages/clients/src/api/iam/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,14 +630,16 @@ export type ListAPIKeysRequest = {
editable?: boolean
/** Defines whether to filter out expired API keys or not. */
expired?: boolean
/** Filter by access key. */
/** @deprecated Filter by access key (deprecated in favor of `access_keys`). */
accessKey?: string
/** Filter by description. */
description?: string
/** Filter by bearer ID. */
bearerId?: string
/** Filter by type of bearer. */
bearerType?: BearerType
/** Filter by a list of access keys. */
accessKeys?: string[]
}

export interface ListAPIKeysResponse {
Expand Down Expand Up @@ -788,6 +790,8 @@ export type ListPoliciesRequest = {
policyName?: string
/** Filter by tags containing a given string. */
tag?: string
/** Filter by a list of IDs. */
policyIds?: string[]
}

export interface ListPoliciesResponse {
Expand Down