mold_call_debug
Debug and test MOLD API commands by executing arbitrary calls with custom parameters to troubleshoot and validate cloud infrastructure operations.
Instructions
임의의 MOLD API 명령을 호출합니다. (command + params)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | ||
params | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"params": {
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"additionalProperties": {
"type": [
"string",
"number",
"boolean"
]
},
"type": "object"
}
]
},
"type": "object"
}
]
},
"type": "object"
}
},
"required": [
"command"
],
"type": "object"
}