/** * HashiCorp Vault API * HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`. * * The version of the OpenAPI document: 1.20.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PkiWriteKeyRequest */ export interface PkiWriteKeyRequest { /** * Human-readable name for this key. * @type {string} * @memberof PkiWriteKeyRequest */ keyName?: string; } /** * Check if a given object implements the PkiWriteKeyRequest interface. */ export declare function instanceOfPkiWriteKeyRequest(value: object): value is PkiWriteKeyRequest; export declare function PkiWriteKeyRequestFromJSON(json: any): PkiWriteKeyRequest; export declare function PkiWriteKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiWriteKeyRequest; export declare function PkiWriteKeyRequestToJSON(json: any): PkiWriteKeyRequest; export declare function PkiWriteKeyRequestToJSONTyped(value?: PkiWriteKeyRequest | null, ignoreDiscriminator?: boolean): any;