removedInput schema / oneOf
Removed value: -[
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "stop_all",
- "type": "string"
- },
- "confirm": {
- "default": false,
- "description": "Explicit confirmation required",
- "type": "boolean"
- },
- "format": {
- "default": "pretty",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "max_chars": {
- "default": 16000,
- "exclusiveMinimum": 0,
- "maximum": 9007199254740991,
- "type": "integer"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "redeploy_project",
- "type": "string"
- },
- "confirm": {
- "default": false,
- "description": "Explicit confirmation required",
- "type": "boolean"
- },
- "force": {
- "default": false,
- "description": "Force rebuild without cache (mirror P4 application.deploy)",
- "type": "boolean"
- },
- "format": {
- "default": "pretty",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "max_chars": {
- "default": 16000,
- "exclusiveMinimum": 0,
- "maximum": 9007199254740991,
- "type": "integer"
- },
- "project_name": {
- "description": "Project name substring (case-insensitive contains-match)",
- "type": "string"
- },
- "project_uuid": {
- "description": "Project UUID",
- "type": "string"
- },
- "timeout": {
- "default": 300,
- "description": "Per-app wait timeout in seconds",
- "maximum": 1800,
- "minimum": 10,
- "type": "integer"
- },
- "wait": {
- "default": false,
- "description": "Poll each deployment to terminal — ask the human before enabling",
- "type": "boolean"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "restart_project",
- "type": "string"
- },
- "confirm": {
- "default": false,
- "description": "Explicit confirmation required",
- "type": "boolean"
- },
- "format": {
- "default": "pretty",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "max_chars": {
- "default": 16000,
- "exclusiveMinimum": 0,
- "maximum": 9007199254740991,
- "type": "integer"
- },
- "project_name": {
- "description": "Project name substring (case-insensitive contains-match)",
- "type": "string"
- },
- "project_uuid": {
- "description": "Project UUID",
- "type": "string"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- }
-]
addedInput schema / properties
Added value: +{
+ "action": {
+ "description": "The action to run",
+ "enum": [
+ "stop_all",
+ "redeploy_project",
+ "restart_project"
+ ],
+ "type": "string"
+ },
+ "confirm": {
+ "description": "Explicit confirmation required",
+ "type": "boolean"
+ },
+ "force": {
+ "description": "Force rebuild without cache (mirror P4 application.deploy)",
+ "type": "boolean"
+ },
+ "format": {
+ "description": "Output format (default pretty)",
+ "enum": [
+ "pretty",
+ "json",
+ "table"
+ ],
+ "type": "string"
+ },
+ "instance": {
+ "description": "Coolify instance name from registry (optional — uses env credentials or registry default)",
+ "pattern": "^[a-z][a-z0-9_-]{1,31}$",
+ "type": "string"
+ },
+ "max_chars": {
+ "description": "Max formatted output characters (default 16000)",
+ "maximum": 100000,
+ "minimum": 1000,
+ "type": "integer"
+ },
+ "project_name": {
+ "description": "Project name substring (case-insensitive contains-match)",
+ "type": "string"
+ },
+ "project_uuid": {
+ "description": "Project UUID",
+ "type": "string"
+ },
+ "timeout": {
+ "description": "Per-app wait timeout in seconds",
+ "maximum": 1800,
+ "minimum": 10,
+ "type": "integer"
+ },
+ "wait": {
+ "description": "Poll each deployment to terminal — ask the human before enabling",
+ "type": "boolean"
+ }
+}