restart-application
Restart a specific application by its UUID to apply configuration changes. This tool stops and then starts the application, ensuring updates are implemented.
Instructions
Restart a specific application using its UUID. This stops and then starts the application, applying any configuration changes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | Resource UUID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uuid": {
"description": "Resource UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}