/** * 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 PkiConfigureKeysResponse */ export interface PkiConfigureKeysResponse { /** * Reference (name or identifier) to the default issuer. * @type {string} * @memberof PkiConfigureKeysResponse */ _default?: string; } /** * Check if a given object implements the PkiConfigureKeysResponse interface. */ export declare function instanceOfPkiConfigureKeysResponse(value: object): value is PkiConfigureKeysResponse; export declare function PkiConfigureKeysResponseFromJSON(json: any): PkiConfigureKeysResponse; export declare function PkiConfigureKeysResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureKeysResponse; export declare function PkiConfigureKeysResponseToJSON(json: any): PkiConfigureKeysResponse; export declare function PkiConfigureKeysResponseToJSONTyped(value?: PkiConfigureKeysResponse | null, ignoreDiscriminator?: boolean): any;