MuleSoft · Schema
ApplicationUpdate
Request body for updating an existing CloudHub application
API GatewayAPI ManagementEnterpriseIntegration
Properties
| Name | Type | Description |
|---|---|---|
| muleVersion | object | New Mule runtime version |
| workers | object | |
| properties | object | Updated application properties |
| monitoringAutoRestart | boolean | Enable or disable automatic restart |
| region | string | Target CloudHub region |
| staticIPsEnabled | boolean | Enable or disable static IPs |
| loggingNgEnabled | boolean | Enable or disable next-generation logging |
| persistentQueues | boolean | Enable or disable persistent queues |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplicationUpdate",
"title": "ApplicationUpdate",
"type": "object",
"description": "Request body for updating an existing CloudHub application",
"properties": {
"muleVersion": {
"type": "object",
"description": "New Mule runtime version",
"properties": {
"version": {
"type": "string",
"description": "Mule runtime version"
}
},
"example": "example_value"
},
"workers": {
"$ref": "#/components/schemas/WorkerConfig"
},
"properties": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Updated application properties",
"example": "example_value"
},
"monitoringAutoRestart": {
"type": "boolean",
"description": "Enable or disable automatic restart",
"example": true
},
"region": {
"type": "string",
"description": "Target CloudHub region",
"example": "example_value"
},
"staticIPsEnabled": {
"type": "boolean",
"description": "Enable or disable static IPs",
"example": true
},
"loggingNgEnabled": {
"type": "boolean",
"description": "Enable or disable next-generation logging",
"example": true
},
"persistentQueues": {
"type": "boolean",
"description": "Enable or disable persistent queues",
"example": true
}
}
}