Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
23 lines
482 B
TypeScript
23 lines
482 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint: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;
|
|
};
|
|
|