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

81 lines
2.5 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 PkiIssuersGenerateRootResponse
*/
export interface PkiIssuersGenerateRootResponse {
/**
* The generated self-signed CA certificate.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
certificate?: string;
/**
* The expiration of the given issuer.
* @type {number}
* @memberof PkiIssuersGenerateRootResponse
*/
expiration?: number;
/**
* The ID of the issuer
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
issuerId?: string;
/**
* The name of the issuer.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
issuerName?: string;
/**
* The issuing certificate authority.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
issuingCa?: string;
/**
* The ID of the key.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
keyId?: string;
/**
* The key name if given.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
keyName?: string;
/**
* The private key if exported was specified.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
privateKey?: string;
/**
* The requested Subject's named serial number.
* @type {string}
* @memberof PkiIssuersGenerateRootResponse
*/
serialNumber?: string;
}
/**
* Check if a given object implements the PkiIssuersGenerateRootResponse interface.
*/
export declare function instanceOfPkiIssuersGenerateRootResponse(value: object): value is PkiIssuersGenerateRootResponse;
export declare function PkiIssuersGenerateRootResponseFromJSON(json: any): PkiIssuersGenerateRootResponse;
export declare function PkiIssuersGenerateRootResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiIssuersGenerateRootResponse;
export declare function PkiIssuersGenerateRootResponseToJSON(json: any): PkiIssuersGenerateRootResponse;
export declare function PkiIssuersGenerateRootResponseToJSONTyped(value?: PkiIssuersGenerateRootResponse | null, ignoreDiscriminator?: boolean): any;