/** * 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 PkiConfigureKeysRequest */ export interface PkiConfigureKeysRequest { /** * Reference (name or identifier) of the default key. * @type {string} * @memberof PkiConfigureKeysRequest */ _default?: string; } /** * Check if a given object implements the PkiConfigureKeysRequest interface. */ export declare function instanceOfPkiConfigureKeysRequest(value: object): value is PkiConfigureKeysRequest; export declare function PkiConfigureKeysRequestFromJSON(json: any): PkiConfigureKeysRequest; export declare function PkiConfigureKeysRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureKeysRequest; export declare function PkiConfigureKeysRequestToJSON(json: any): PkiConfigureKeysRequest; export declare function PkiConfigureKeysRequestToJSONTyped(value?: PkiConfigureKeysRequest | null, ignoreDiscriminator?: boolean): any;