action apache_patch_mapped_task_instance { label: "Updates the state of a mapped task instance" description: "Updates the state for single mapped task instance.\n*New in version 2.5.0*\n" provider: apache method: PATCH path: "/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/{map_index}" encoding: json input: { type: "object" properties: { dry_run: { type: "boolean" description: "If set, don't actually run this operation. The response will contain the task instance\nplanned to be affected, but won't be modified in any way.\n" } new_state: { type: "string" description: "Expected new state." enum: ["success", "failed"] } } } output: { type: "object" properties: { dag_id: { type: "string" description: "The DAG ID." } dag_run_id: { type: "string" description: "The DAG run ID." } execution_date: { type: "string" format: "datetime" } task_id: { type: "string" description: "The task ID." } } } }