/** * 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 PkiConfigureCaRequest */ export interface PkiConfigureCaRequest { /** * PEM-format, concatenated unencrypted secret key and certificate. * @type {string} * @memberof PkiConfigureCaRequest */ pemBundle?: string; } /** * Check if a given object implements the PkiConfigureCaRequest interface. */ export declare function instanceOfPkiConfigureCaRequest(value: object): value is PkiConfigureCaRequest; export declare function PkiConfigureCaRequestFromJSON(json: any): PkiConfigureCaRequest; export declare function PkiConfigureCaRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureCaRequest; export declare function PkiConfigureCaRequestToJSON(json: any): PkiConfigureCaRequest; export declare function PkiConfigureCaRequestToJSONTyped(value?: PkiConfigureCaRequest | null, ignoreDiscriminator?: boolean): any;