get_server_info
Retrieve detailed server information, including ID and zone, for managing Sakura Cloud infrastructure efficiently.
Instructions
Get detailed information about a specific server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serverId | Yes | The ID of the server to retrieve | |
zone | No | The zone to use (e.g., "tk1v", "is1a", "tk1a"). Defaults to "tk1v" if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"serverId": {
"description": "The ID of the server to retrieve",
"type": "string"
},
"zone": {
"description": "The zone to use (e.g., \"tk1v\", \"is1a\", \"tk1a\"). Defaults to \"tk1v\" if not specified.",
"type": "string"
}
},
"required": [
"serverId"
],
"type": "object"
}