delete_apprun
Remove an AppRun application from Sakura Cloud MCP Server by specifying the app ID and optional zone to manage infrastructure efficiently.
Instructions
Delete an AppRun application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | The ID of the AppRun application to delete | |
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 delete",
"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"
}