/** * 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 PkiWriteAcmeKeyIdRequest */ export interface PkiWriteAcmeKeyIdRequest { /** * The status of the account. * @type {string} * @memberof PkiWriteAcmeKeyIdRequest */ status: PkiWriteAcmeKeyIdRequestStatusEnum; } /** * @export * @enum {string} */ export declare enum PkiWriteAcmeKeyIdRequestStatusEnum { VALID = "valid", REVOKED = "revoked" } /** * Check if a given object implements the PkiWriteAcmeKeyIdRequest interface. */ export declare function instanceOfPkiWriteAcmeKeyIdRequest(value: object): value is PkiWriteAcmeKeyIdRequest; export declare function PkiWriteAcmeKeyIdRequestFromJSON(json: any): PkiWriteAcmeKeyIdRequest; export declare function PkiWriteAcmeKeyIdRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiWriteAcmeKeyIdRequest; export declare function PkiWriteAcmeKeyIdRequestToJSON(json: any): PkiWriteAcmeKeyIdRequest; export declare function PkiWriteAcmeKeyIdRequestToJSONTyped(value?: PkiWriteAcmeKeyIdRequest | null, ignoreDiscriminator?: boolean): any;