vault/ui/api-client/dist/esm/models/RekeyVerificationUpdateRequest.d.ts

39 lines
1.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 RekeyVerificationUpdateRequest
*/
export interface RekeyVerificationUpdateRequest {
/**
* Specifies a single unseal share key from the new set of shares.
* @type {string}
* @memberof RekeyVerificationUpdateRequest
*/
key?: string;
/**
* Specifies the nonce of the rekey verification operation.
* @type {string}
* @memberof RekeyVerificationUpdateRequest
*/
nonce?: string;
}
/**
* Check if a given object implements the RekeyVerificationUpdateRequest interface.
*/
export declare function instanceOfRekeyVerificationUpdateRequest(value: object): value is RekeyVerificationUpdateRequest;
export declare function RekeyVerificationUpdateRequestFromJSON(json: any): RekeyVerificationUpdateRequest;
export declare function RekeyVerificationUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RekeyVerificationUpdateRequest;
export declare function RekeyVerificationUpdateRequestToJSON(json: any): RekeyVerificationUpdateRequest;
export declare function RekeyVerificationUpdateRequestToJSONTyped(value?: RekeyVerificationUpdateRequest | null, ignoreDiscriminator?: boolean): any;