mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
57 lines
2.0 KiB
TypeScript
57 lines
2.0 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 PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
export interface PkiWriteExternalPolicySignPolicyResponse {
|
|
/**
|
|
* Certificate Chain
|
|
* @type {Array<string>}
|
|
* @memberof PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
caChain?: Array<string>;
|
|
/**
|
|
* Certificate
|
|
* @type {string}
|
|
* @memberof PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
certificate?: string;
|
|
/**
|
|
* Time of expiration
|
|
* @type {number}
|
|
* @memberof PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
expiration?: number;
|
|
/**
|
|
* Issuing Certificate Authority
|
|
* @type {string}
|
|
* @memberof PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
issuingCa?: string;
|
|
/**
|
|
* Serial Number
|
|
* @type {string}
|
|
* @memberof PkiWriteExternalPolicySignPolicyResponse
|
|
*/
|
|
serialNumber?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the PkiWriteExternalPolicySignPolicyResponse interface.
|
|
*/
|
|
export declare function instanceOfPkiWriteExternalPolicySignPolicyResponse(value: object): value is PkiWriteExternalPolicySignPolicyResponse;
|
|
export declare function PkiWriteExternalPolicySignPolicyResponseFromJSON(json: any): PkiWriteExternalPolicySignPolicyResponse;
|
|
export declare function PkiWriteExternalPolicySignPolicyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PkiWriteExternalPolicySignPolicyResponse;
|
|
export declare function PkiWriteExternalPolicySignPolicyResponseToJSON(json: any): PkiWriteExternalPolicySignPolicyResponse;
|
|
export declare function PkiWriteExternalPolicySignPolicyResponseToJSONTyped(value?: PkiWriteExternalPolicySignPolicyResponse | null, ignoreDiscriminator?: boolean): any;
|