/** * 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 PkiIssuerIssueWithRoleResponse */ export interface PkiIssuerIssueWithRoleResponse { /** * Certificate Chain * @type {Array} * @memberof PkiIssuerIssueWithRoleResponse */ caChain?: Array; /** * Certificate * @type {string} * @memberof PkiIssuerIssueWithRoleResponse */ certificate?: string; /** * Time of expiration * @type {number} * @memberof PkiIssuerIssueWithRoleResponse */ expiration?: number; /** * Issuing Certificate Authority * @type {string} * @memberof PkiIssuerIssueWithRoleResponse */ issuingCa?: string; /** * Private key * @type {string} * @memberof PkiIssuerIssueWithRoleResponse */ privateKey?: string; /** * Private key type * @type {string} * @memberof PkiIssuerIssueWithRoleResponse */ privateKeyType?: string; /** * Serial Number * @type {string} * @memberof PkiIssuerIssueWithRoleResponse */ serialNumber?: string; } /** * Check if a given object implements the PkiIssuerIssueWithRoleResponse interface. */ export declare function instanceOfPkiIssuerIssueWithRoleResponse(value: object): value is PkiIssuerIssueWithRoleResponse; export declare function PkiIssuerIssueWithRoleResponseFromJSON(json: any): PkiIssuerIssueWithRoleResponse; export declare function PkiIssuerIssueWithRoleResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiIssuerIssueWithRoleResponse; export declare function PkiIssuerIssueWithRoleResponseToJSON(json: any): PkiIssuerIssueWithRoleResponse; export declare function PkiIssuerIssueWithRoleResponseToJSONTyped(value?: PkiIssuerIssueWithRoleResponse | null, ignoreDiscriminator?: boolean): any;