/** * 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 PkiGenerateEabKeyResponse */ export interface PkiGenerateEabKeyResponse { /** * The ACME directory to which the key belongs * @type {string} * @memberof PkiGenerateEabKeyResponse */ acmeDirectory?: string; /** * An RFC3339 formatted date time when the EAB token was created * @type {Date} * @memberof PkiGenerateEabKeyResponse */ createdOn?: Date; /** * The EAB key identifier * @type {string} * @memberof PkiGenerateEabKeyResponse */ id?: string; /** * The EAB hmac key * @type {string} * @memberof PkiGenerateEabKeyResponse */ key?: string; /** * The EAB key type * @type {string} * @memberof PkiGenerateEabKeyResponse */ keyType?: string; } /** * Check if a given object implements the PkiGenerateEabKeyResponse interface. */ export declare function instanceOfPkiGenerateEabKeyResponse(value: object): value is PkiGenerateEabKeyResponse; export declare function PkiGenerateEabKeyResponseFromJSON(json: any): PkiGenerateEabKeyResponse; export declare function PkiGenerateEabKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiGenerateEabKeyResponse; export declare function PkiGenerateEabKeyResponseToJSON(json: any): PkiGenerateEabKeyResponse; export declare function PkiGenerateEabKeyResponseToJSONTyped(value?: PkiGenerateEabKeyResponse | null, ignoreDiscriminator?: boolean): any;