get_switch_info
Retrieve detailed information about a specific switch in Sakura Cloud by providing its ID and zone. Enables infrastructure management and configuration insights.
Instructions
Get detailed information about a specific switch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
switchId | Yes | The ID of the switch to retrieve | |
zone | No | The zone to use (e.g., "tk1v", "is1a", "tk1a"). Defaults to "tk1v" if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"switchId": {
"description": "The ID of the switch to retrieve",
"type": "string"
},
"zone": {
"description": "The zone to use (e.g., \"tk1v\", \"is1a\", \"tk1a\"). Defaults to \"tk1v\" if not specified.",
"type": "string"
}
},
"required": [
"switchId"
],
"type": "object"
}