action redhat_list_tasks { label: "List Tasks" description: "Returns an array of Task objects" provider: redhat method: GET path: "/tasks" encoding: json output: { type: "object" properties: { data: { type: "array" items: { 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 } } links: { type: "object" properties: { first: { type: "string" } last: { type: "string" } next: { type: "string" } prev: { type: "string" } } } meta: { type: "object" properties: { count: { type: "integer" } limit: { type: "integer" } offset: { type: "integer" } } } } } }