mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
87 lines
2.4 KiB
TypeScript
87 lines
2.4 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 RekeyAttemptReadProgressResponse
|
|
*/
|
|
export interface RekeyAttemptReadProgressResponse {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
backup?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
n?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
nonce?: string;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
pgpFingerprints?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
progress?: number;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
required?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
started?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
t?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
verificationNonce?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptReadProgressResponse
|
|
*/
|
|
verificationRequired?: boolean;
|
|
}
|
|
/**
|
|
* Check if a given object implements the RekeyAttemptReadProgressResponse interface.
|
|
*/
|
|
export declare function instanceOfRekeyAttemptReadProgressResponse(value: object): value is RekeyAttemptReadProgressResponse;
|
|
export declare function RekeyAttemptReadProgressResponseFromJSON(json: any): RekeyAttemptReadProgressResponse;
|
|
export declare function RekeyAttemptReadProgressResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyAttemptReadProgressResponse;
|
|
export declare function RekeyAttemptReadProgressResponseToJSON(json: any): RekeyAttemptReadProgressResponse;
|
|
export declare function RekeyAttemptReadProgressResponseToJSONTyped(value?: RekeyAttemptReadProgressResponse | null, ignoreDiscriminator?: boolean): any;
|