mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
57 lines
2.1 KiB
TypeScript
57 lines
2.1 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 PkiIssuersImportCertResponse
|
|
*/
|
|
export interface PkiIssuersImportCertResponse {
|
|
/**
|
|
* Existing issuers specified as part of the import bundle of this request
|
|
* @type {Array<string>}
|
|
* @memberof PkiIssuersImportCertResponse
|
|
*/
|
|
existingIssuers?: Array<string>;
|
|
/**
|
|
* Existing keys specified as part of the import bundle of this request
|
|
* @type {Array<string>}
|
|
* @memberof PkiIssuersImportCertResponse
|
|
*/
|
|
existingKeys?: Array<string>;
|
|
/**
|
|
* Net-new issuers imported as a part of this request
|
|
* @type {Array<string>}
|
|
* @memberof PkiIssuersImportCertResponse
|
|
*/
|
|
importedIssuers?: Array<string>;
|
|
/**
|
|
* Net-new keys imported as a part of this request
|
|
* @type {Array<string>}
|
|
* @memberof PkiIssuersImportCertResponse
|
|
*/
|
|
importedKeys?: Array<string>;
|
|
/**
|
|
* A mapping of issuer_id to key_id for all issuers included in this request
|
|
* @type {object}
|
|
* @memberof PkiIssuersImportCertResponse
|
|
*/
|
|
mapping?: object;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiIssuersImportCertResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiIssuersImportCertResponse(value: object): value is PkiIssuersImportCertResponse;
|
|
export declare function PkiIssuersImportCertResponseFromJSON(json: any): PkiIssuersImportCertResponse;
|
|
export declare function PkiIssuersImportCertResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiIssuersImportCertResponse;
|
|
export declare function PkiIssuersImportCertResponseToJSON(json: any): PkiIssuersImportCertResponse;
|
|
export declare function PkiIssuersImportCertResponseToJSONTyped(value?: PkiIssuersImportCertResponse | null, ignoreDiscriminator?: boolean): any;
|