removedInput schema / oneOf
Removed value: -[
- {
- "properties": {
- "action": {
- "const": "list",
- "type": "string"
- },
- "application_uuid": {
- "description": "Application UUID to list deployments for",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "include_full": {
- "description": "Alias for projection: full",
- "type": "boolean"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- },
- "page": {
- "default": 1,
- "description": "Page number for pagination",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
- },
- "per_page": {
- "default": 10,
- "description": "Items per page (default 10, max 50)",
- "maximum": 50,
- "minimum": 1,
- "type": "integer"
- },
- "projection": {
- "default": "summary",
- "description": "Detail projection depth",
- "enum": [
- "summary",
- "full"
- ],
- "type": "string"
- },
- "reveal": {
- "default": false,
- "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
- "type": "boolean"
- }
- },
- "required": [
- "action",
- "application_uuid"
- ],
- "type": "object"
- },
- {
- "properties": {
- "action": {
- "const": "get",
- "type": "string"
- },
- "deployment_uuid": {
- "description": "Deployment UUID",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "include_full": {
- "description": "Alias for projection: full",
- "type": "boolean"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- },
- "page": {
- "default": 1,
- "description": "Page number for pagination",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
- },
- "per_page": {
- "default": 10,
- "description": "Items per page",
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "projection": {
- "default": "summary",
- "description": "Detail projection depth",
- "enum": [
- "summary",
- "full"
- ],
- "type": "string"
- },
- "reveal": {
- "default": false,
- "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
- "type": "boolean"
- }
- },
- "required": [
- "action",
- "deployment_uuid"
- ],
- "type": "object"
- },
- {
- "properties": {
- "action": {
- "const": "cancel",
- "type": "string"
- },
- "deployment_uuid": {
- "description": "Deployment UUID to cancel",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- }
- },
- "required": [
- "action",
- "deployment_uuid"
- ],
- "type": "object"
- }
-]
addedInput schema / properties
Added value: +{
+ "action": {
+ "description": "The action to run",
+ "enum": [
+ "list",
+ "get",
+ "cancel",
+ "watch"
+ ],
+ "type": "string"
+ },
+ "application_uuid": {
+ "description": "Application UUID to list deployments for",
+ "type": "string"
+ },
+ "deployment_uuid": {
+ "description": "Deployment UUID",
+ "type": "string"
+ },
+ "format": {
+ "description": "Output format style",
+ "enum": [
+ "pretty",
+ "json",
+ "table"
+ ],
+ "type": "string"
+ },
+ "include_full": {
+ "description": "Alias for projection: full",
+ "type": "boolean"
+ },
+ "include_logs": {
+ "default": false,
+ "description": "Attach capped build logs on success (default false)",
+ "type": "boolean"
+ },
+ "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": "Maximum characters in text response before truncation",
+ "maximum": 100000,
+ "minimum": 1000,
+ "type": "integer"
+ },
+ "max_interval": {
+ "default": 30,
+ "description": "Maximum poll interval in seconds (default 30)",
+ "maximum": 9007199254740991,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "min_interval": {
+ "default": 3,
+ "description": "Minimum poll interval in seconds (default 3)",
+ "maximum": 9007199254740991,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "page": {
+ "description": "Page number for pagination",
+ "maximum": 9007199254740991,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "per_page": {
+ "description": "Items per page",
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "projection": {
+ "description": "Detail projection depth",
+ "enum": [
+ "summary",
+ "full"
+ ],
+ "type": "string"
+ },
+ "reveal": {
+ "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
+ "type": "boolean"
+ },
+ "timeout": {
+ "default": 300,
+ "description": "Watch timeout in seconds (default 300)",
+ "maximum": 1800,
+ "minimum": 10,
+ "type": "integer"
+ }
+}