/** * 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 PkiConfigureIssuersRequest */ export interface PkiConfigureIssuersRequest { /** * Reference (name or identifier) to the default issuer. * @type {string} * @memberof PkiConfigureIssuersRequest */ _default?: string; /** * Whether the default issuer should automatically follow the latest generated or imported issuer. Defaults to false. * @type {boolean} * @memberof PkiConfigureIssuersRequest */ defaultFollowsLatestIssuer?: boolean; } /** * Check if a given object implements the PkiConfigureIssuersRequest interface. */ export declare function instanceOfPkiConfigureIssuersRequest(value: object): value is PkiConfigureIssuersRequest; export declare function PkiConfigureIssuersRequestFromJSON(json: any): PkiConfigureIssuersRequest; export declare function PkiConfigureIssuersRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiConfigureIssuersRequest; export declare function PkiConfigureIssuersRequestToJSON(json: any): PkiConfigureIssuersRequest; export declare function PkiConfigureIssuersRequestToJSONTyped(value?: PkiConfigureIssuersRequest | null, ignoreDiscriminator?: boolean): any;