resize_instance
Change the size of a cloud instance on Civo to adjust computing resources like CPU and memory by specifying the instance ID, new size, and region.
Instructions
Resize a cloud instance on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Instance ID | |
region | Yes | Region identifier | |
size | Yes | New instance size |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Instance ID",
"type": "string"
},
"region": {
"description": "Region identifier",
"type": "string"
},
"size": {
"description": "New instance size",
"type": "string"
}
},
"required": [
"id",
"size",
"region"
],
"type": "object"
}