action redhat_update_task { label: "Update an existing Task" description: "Updates a Task object" provider: redhat method: PATCH path: "/tasks/{id}" encoding: json input: { type: "object" properties: { archived_at: { type: "string" format: "date-time" } child_task_id: { type: "string" format: "uuid" } completed_at: { type: "string" format: "date-time" } controller_message_id: { type: "string" format: "uuid" } created_at: { type: "string" format: "date-time" } id: { type: "string" format: "uuid" description: "UUID of task" } input: { type: "object" } message: { type: "string" } name: { type: "string" } output: { type: "object" } owner: { type: "string" } source_id: { type: "string" description: "ID of the resource" } state: { type: "string" enum: ["pending", "queued", "running", "timedout", "completed"] } status: { type: "string" enum: ["ok", "warn", "unchanged", "error"] } target_source_ref: { type: "string" } target_type: { type: "string" } type: { type: "string" } updated_at: { type: "string" format: "date-time" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }