reinstall
Reinstall the operating system on a Vultr cloud instance to reset it to a clean state, optionally setting a new hostname during the process.
Instructions
Reinstall an instance's operating system.
Args: instance_id: The instance ID, label, or hostname (e.g., "web-server", "db.example.com", or UUID) hostname: New hostname for the instance (optional)
Returns: Reinstall status information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| hostname | No | ||
| instance_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "hostname": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Hostname"
    },
    "instance_id": {
      "title": "Instance Id",
      "type": "string"
    }
  },
  "required": [
    "instance_id"
  ],
  "type": "object"
}