mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
45 lines
1.8 KiB
TypeScript
45 lines
1.8 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 PkiRootSignSelfIssuedRequest
|
|
*/
|
|
export interface PkiRootSignSelfIssuedRequest {
|
|
/**
|
|
* PEM-format self-issued certificate to be signed.
|
|
* @type {string}
|
|
* @memberof PkiRootSignSelfIssuedRequest
|
|
*/
|
|
certificate?: string;
|
|
/**
|
|
* Reference to a existing issuer; either "default" for the configured default issuer, an identifier or the name assigned to the issuer.
|
|
* @type {string}
|
|
* @memberof PkiRootSignSelfIssuedRequest
|
|
*/
|
|
issuerRef?: string;
|
|
/**
|
|
* If true, require the public key algorithm of the signer to match that of the self issued certificate.
|
|
* @type {boolean}
|
|
* @memberof PkiRootSignSelfIssuedRequest
|
|
*/
|
|
requireMatchingCertificateAlgorithms?: boolean;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiRootSignSelfIssuedRequest interface.
|
|
*/
|
|
export declare function instanceOfPkiRootSignSelfIssuedRequest(value: object): value is PkiRootSignSelfIssuedRequest;
|
|
export declare function PkiRootSignSelfIssuedRequestFromJSON(json: any): PkiRootSignSelfIssuedRequest;
|
|
export declare function PkiRootSignSelfIssuedRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiRootSignSelfIssuedRequest;
|
|
export declare function PkiRootSignSelfIssuedRequestToJSON(json: any): PkiRootSignSelfIssuedRequest;
|
|
export declare function PkiRootSignSelfIssuedRequestToJSONTyped(value?: PkiRootSignSelfIssuedRequest | null, ignoreDiscriminator?: boolean): any;
|