/** * 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 RemountRequest */ export interface RemountRequest { /** * The previous mount point. * @type {string} * @memberof RemountRequest */ from?: string; /** * The new mount point. * @type {string} * @memberof RemountRequest */ to?: string; } /** * Check if a given object implements the RemountRequest interface. */ export declare function instanceOfRemountRequest(value: object): value is RemountRequest; export declare function RemountRequestFromJSON(json: any): RemountRequest; export declare function RemountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemountRequest; export declare function RemountRequestToJSON(json: any): RemountRequest; export declare function RemountRequestToJSONTyped(value?: RemountRequest | null, ignoreDiscriminator?: boolean): any;