mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 08:31:09 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
87 lines
2.3 KiB
TypeScript
87 lines
2.3 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 RekeyAttemptInitializeResponse
|
|
*/
|
|
export interface RekeyAttemptInitializeResponse {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
backup?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
n?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
nonce?: string;
|
|
/**
|
|
*
|
|
* @type {Array<string>}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
pgpFingerprints?: Array<string>;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
progress?: number;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
required?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
started?: boolean;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
t?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
verificationNonce?: string;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RekeyAttemptInitializeResponse
|
|
*/
|
|
verificationRequired?: boolean;
|
|
}
|
|
/**
|
|
* Check if a given object implements the RekeyAttemptInitializeResponse interface.
|
|
*/
|
|
export declare function instanceOfRekeyAttemptInitializeResponse(value: object): value is RekeyAttemptInitializeResponse;
|
|
export declare function RekeyAttemptInitializeResponseFromJSON(json: any): RekeyAttemptInitializeResponse;
|
|
export declare function RekeyAttemptInitializeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyAttemptInitializeResponse;
|
|
export declare function RekeyAttemptInitializeResponseToJSON(json: any): RekeyAttemptInitializeResponse;
|
|
export declare function RekeyAttemptInitializeResponseToJSONTyped(value?: RekeyAttemptInitializeResponse | null, ignoreDiscriminator?: boolean): any;
|