mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
39 lines
1.6 KiB
TypeScript
39 lines
1.6 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 TransitSetCertificateForKeyRequest
|
|
*/
|
|
export interface TransitSetCertificateForKeyRequest {
|
|
/**
|
|
* PEM encoded certificate chain. It should be composed by one or more concatenated PEM blocks and ordered starting from the end-entity certificate.
|
|
* @type {string}
|
|
* @memberof TransitSetCertificateForKeyRequest
|
|
*/
|
|
certificateChain: string;
|
|
/**
|
|
* Optional version of key, 'latest' if not set
|
|
* @type {number}
|
|
* @memberof TransitSetCertificateForKeyRequest
|
|
*/
|
|
version?: number;
|
|
}
|
|
/**
|
|
* Check if a given object implements the TransitSetCertificateForKeyRequest interface.
|
|
*/
|
|
export declare function instanceOfTransitSetCertificateForKeyRequest(value: object): value is TransitSetCertificateForKeyRequest;
|
|
export declare function TransitSetCertificateForKeyRequestFromJSON(json: any): TransitSetCertificateForKeyRequest;
|
|
export declare function TransitSetCertificateForKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransitSetCertificateForKeyRequest;
|
|
export declare function TransitSetCertificateForKeyRequestToJSON(json: any): TransitSetCertificateForKeyRequest;
|
|
export declare function TransitSetCertificateForKeyRequestToJSONTyped(value?: TransitSetCertificateForKeyRequest | null, ignoreDiscriminator?: boolean): any;
|