mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
123 lines
2.5 KiB
TypeScript
123 lines
2.5 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 UnsealResponse
|
|
*/
|
|
export interface UnsealResponse {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
buildDate?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
clusterId?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
clusterName?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
hcpLinkResourceID?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
hcpLinkStatus?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
initialized?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
migration?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
n?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
nonce?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
progress?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
recoverySeal?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
sealed?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
storageType?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
t?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
type?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UnsealResponse
|
|
*/
|
|
version?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the UnsealResponse interface.
|
|
*/
|
|
export declare function instanceOfUnsealResponse(value: object): value is UnsealResponse;
|
|
export declare function UnsealResponseFromJSON(json: any): UnsealResponse;
|
|
export declare function UnsealResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnsealResponse;
|
|
export declare function UnsealResponseToJSON(json: any): UnsealResponse;
|
|
export declare function UnsealResponseToJSONTyped(value?: UnsealResponse | null, ignoreDiscriminator?: boolean): any;
|