re-uploading work
This commit is contained in:
22
web/src/api/models/UpdateKeyRequest.ts
Normal file
22
web/src/api/models/UpdateKeyRequest.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Request to update an existing key/secret
|
||||
*/
|
||||
export type UpdateKeyRequest = {
|
||||
/**
|
||||
* Update encryption status (re-encrypts if changing from false to true)
|
||||
*/
|
||||
encrypted?: boolean | null;
|
||||
/**
|
||||
* Update the human-readable name
|
||||
*/
|
||||
name?: string | null;
|
||||
/**
|
||||
* Update the secret value
|
||||
*/
|
||||
value?: string | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user