get_disk_info
Retrieve detailed information about a specific disk in Sakura Cloud, including its ID and zone, to manage and monitor disk usage effectively.
Instructions
Get detailed information about a specific disk
Input Schema
Name | Required | Description | Default |
---|---|---|---|
diskId | Yes | The ID of the disk to retrieve | |
zone | No | The zone to use (e.g., "tk1v", "is1a", "tk1a"). Defaults to "tk1v" if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"diskId": {
"description": "The ID of the disk to retrieve",
"type": "string"
},
"zone": {
"description": "The zone to use (e.g., \"tk1v\", \"is1a\", \"tk1a\"). Defaults to \"tk1v\" if not specified.",
"type": "string"
}
},
"required": [
"diskId"
],
"type": "object"
}