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/iam/v1alpha1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const unmarshalAPIKey = (data: unknown): APIKey => {
createdAt: unmarshalDate(data.created_at),
creationIp: data.creation_ip,
defaultProjectId: data.default_project_id,
deletable: data.deletable,
description: data.description,
editable: data.editable,
expiresAt: unmarshalDate(data.expires_at),
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/iam/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ export interface APIKey {
defaultProjectId: string
/** Defines whether or not the API key is editable. */
editable: boolean
/** Defines whether or not the API key is deletable. */
deletable: boolean
/** Defines whether or not the API key is managed. */
managed: boolean
/** IP address of the device that created the API key. */
Expand Down
Loading