mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
123 lines
2.6 KiB
TypeScript
123 lines
2.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.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 SealStatusResponse
|
|
*/
|
|
export interface SealStatusResponse {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
buildDate?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
clusterId?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
clusterName?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
hcpLinkResourceID?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
hcpLinkStatus?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
initialized?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
migration?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
n?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
nonce?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
progress?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
recoverySeal?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
sealed?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
storageType?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
t?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
type?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof SealStatusResponse
|
|
*/
|
|
version?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the SealStatusResponse interface.
|
|
*/
|
|
export declare function instanceOfSealStatusResponse(value: object): value is SealStatusResponse;
|
|
export declare function SealStatusResponseFromJSON(json: any): SealStatusResponse;
|
|
export declare function SealStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SealStatusResponse;
|
|
export declare function SealStatusResponseToJSON(json: any): SealStatusResponse;
|
|
export declare function SealStatusResponseToJSONTyped(value?: SealStatusResponse | null, ignoreDiscriminator?: boolean): any;
|