VPS_stopRecoveryModeV1
Stop recovery mode for a virtual machine by specifying its ID. This tool exits system rescue mode and restores normal VPS operation, ensuring the VM is no longer in recovery state.
Instructions
Stop recovery mode for a specified virtual machine.
If virtual machine is not in recovery mode, this operation will fail.
Use this endpoint to exit system rescue mode and return VPS to normal operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| virtualMachineId | Yes | Virtual Machine ID |
Implementation Reference
- types.d.ts:2188-2196 (schema)Schema definition for the 'VPS_stopRecoveryModeV1' tool, specifying the required 'virtualMachineId' parameter and a generic 'any' response type."VPS_stopRecoveryModeV1": { params: { /** * Virtual Machine ID */ virtualMachineId: number; }; response: any; // Response structure will depend on the API };