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