/** * 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 RekeyAttemptUpdateRequest */ export interface RekeyAttemptUpdateRequest { /** * Specifies a single unseal key share. * @type {string} * @memberof RekeyAttemptUpdateRequest */ key?: string; /** * Specifies the nonce of the rekey attempt. * @type {string} * @memberof RekeyAttemptUpdateRequest */ nonce?: string; } /** * Check if a given object implements the RekeyAttemptUpdateRequest interface. */ export declare function instanceOfRekeyAttemptUpdateRequest(value: object): value is RekeyAttemptUpdateRequest; export declare function RekeyAttemptUpdateRequestFromJSON(json: any): RekeyAttemptUpdateRequest; export declare function RekeyAttemptUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyAttemptUpdateRequest; export declare function RekeyAttemptUpdateRequestToJSON(json: any): RekeyAttemptUpdateRequest; export declare function RekeyAttemptUpdateRequestToJSONTyped(value?: RekeyAttemptUpdateRequest | null, ignoreDiscriminator?: boolean): any;