File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/clients/src/api/iam/v1alpha1 Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ export const unmarshalAPIKey = (data: unknown): APIKey => {
8787 createdAt : unmarshalDate ( data . created_at ) ,
8888 creationIp : data . creation_ip ,
8989 defaultProjectId : data . default_project_id ,
90+ deletable : data . deletable ,
9091 description : data . description ,
9192 editable : data . editable ,
9293 expiresAt : unmarshalDate ( data . expires_at ) ,
Original file line number Diff line number Diff line change @@ -169,6 +169,8 @@ export interface APIKey {
169169 defaultProjectId : string
170170 /** Defines whether or not the API key is editable. */
171171 editable : boolean
172+ /** Defines whether or not the API key is deletable. */
173+ deletable : boolean
172174 /** Defines whether or not the API key is managed. */
173175 managed : boolean
174176 /** IP address of the device that created the API key. */
You can’t perform that action at this time.
0 commit comments