update-application
Modify application settings, including health checks, monitoring, and behavior, by specifying the UUID and desired configurations in the MCP server.
Instructions
Update the settings of a specific application, such as health check configurations. This allows you to modify the application's behavior and monitoring settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
settings | Yes | ||
uuid | Yes | Resource UUID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"settings": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"domains": {
"type": "string"
},
"health_check_enabled": {
"type": "boolean"
},
"health_check_host": {
"type": [
"string",
"null"
]
},
"health_check_interval": {
"type": "number"
},
"health_check_method": {
"type": "string"
},
"health_check_path": {
"type": "string"
},
"health_check_port": {
"type": [
"string",
"null"
]
},
"health_check_response_text": {
"type": [
"string",
"null"
]
},
"health_check_retries": {
"type": "number"
},
"health_check_return_code": {
"type": "number"
},
"health_check_scheme": {
"type": "string"
},
"health_check_start_period": {
"type": "number"
},
"health_check_timeout": {
"type": "number"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"uuid": {
"description": "Resource UUID",
"type": "string"
}
},
"required": [
"uuid",
"settings"
],
"type": "object"
}