diff --git a/packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts index ebf9e954f..711dc84db 100644 --- a/packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/iam/v1alpha1/marshalling.gen.ts @@ -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), diff --git a/packages/clients/src/api/iam/v1alpha1/types.gen.ts b/packages/clients/src/api/iam/v1alpha1/types.gen.ts index 0072d8089..8d648097f 100644 --- a/packages/clients/src/api/iam/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/iam/v1alpha1/types.gen.ts @@ -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. */