vault/ui/api-client/dist/esm/models/PkiIssueWithRoleResponse.d.ts

69 lines
2.0 KiB
TypeScript

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