/** * 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 RootTokenGenerationUpdateRequest */ export interface RootTokenGenerationUpdateRequest { /** * Specifies a single unseal key share. * @type {string} * @memberof RootTokenGenerationUpdateRequest */ key?: string; /** * Specifies the nonce of the attempt. * @type {string} * @memberof RootTokenGenerationUpdateRequest */ nonce?: string; } /** * Check if a given object implements the RootTokenGenerationUpdateRequest interface. */ export declare function instanceOfRootTokenGenerationUpdateRequest(value: object): value is RootTokenGenerationUpdateRequest; export declare function RootTokenGenerationUpdateRequestFromJSON(json: any): RootTokenGenerationUpdateRequest; export declare function RootTokenGenerationUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootTokenGenerationUpdateRequest; export declare function RootTokenGenerationUpdateRequestToJSON(json: any): RootTokenGenerationUpdateRequest; export declare function RootTokenGenerationUpdateRequestToJSONTyped(value?: RootTokenGenerationUpdateRequest | null, ignoreDiscriminator?: boolean): any;