action apache_get_mapped_task_instances { label: "List mapped task instances" description: "Get details of all mapped task instances.\n\n*New in version 2.3.0*\n" provider: apache method: GET path: "/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/listMapped" encoding: json input: { type: "object" properties: { duration_gte: { type: "number" } duration_lte: { type: "number" } end_date_gte: { type: "string" format: "date-time" } end_date_lte: { type: "string" format: "date-time" } execution_date_gte: { type: "string" format: "date-time" } execution_date_lte: { type: "string" format: "date-time" } limit: { type: "integer" } offset: { type: "integer" } order_by: { type: "string" } pool: { type: "array" items: { type: "string" } } queue: { type: "array" items: { type: "string" } } start_date_gte: { type: "string" format: "date-time" } start_date_lte: { type: "string" format: "date-time" } state: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "object" description: "Collection of task instances.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n" } }