mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 08:31:09 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
81 lines
2.3 KiB
TypeScript
81 lines
2.3 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.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 PkiGenerateRootResponse
|
|
*/
|
|
export interface PkiGenerateRootResponse {
|
|
/**
|
|
* The generated self-signed CA certificate.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
certificate?: string;
|
|
/**
|
|
* The expiration of the given issuer.
|
|
* @type {number}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
expiration?: number;
|
|
/**
|
|
* The ID of the issuer
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
issuerId?: string;
|
|
/**
|
|
* The name of the issuer.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
issuerName?: string;
|
|
/**
|
|
* The issuing certificate authority.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
issuingCa?: string;
|
|
/**
|
|
* The ID of the key.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
keyId?: string;
|
|
/**
|
|
* The key name if given.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
keyName?: string;
|
|
/**
|
|
* The private key if exported was specified.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
privateKey?: string;
|
|
/**
|
|
* The requested Subject's named serial number.
|
|
* @type {string}
|
|
* @memberof PkiGenerateRootResponse
|
|
*/
|
|
serialNumber?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiGenerateRootResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiGenerateRootResponse(value: object): value is PkiGenerateRootResponse;
|
|
export declare function PkiGenerateRootResponseFromJSON(json: any): PkiGenerateRootResponse;
|
|
export declare function PkiGenerateRootResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiGenerateRootResponse;
|
|
export declare function PkiGenerateRootResponseToJSON(json: any): PkiGenerateRootResponse;
|
|
export declare function PkiGenerateRootResponseToJSONTyped(value?: PkiGenerateRootResponse | null, ignoreDiscriminator?: boolean): any;
|