bbovenzi commented on code in PR #23516:
URL: https://github.com/apache/airflow/pull/23516#discussion_r916922158
##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -3410,6 +3412,32 @@ components:
description: Set state of DAG runs to RUNNING.
type: boolean
+ dag_run_id:
+ type: string
+ description: The DagRun ID for this task instance
+ nullable: true
+
+ include_upstream:
+ description: If set to true, upstream tasks are also affected.
+ type: boolean
+ default: false
+
+ include_downstream:
+ description: If set to true, downstream tasks are also affected.
+ type: boolean
+ default: false
+
+ include_future:
+ description: If set to True, also tasks from future DAG Runs are
affected.
+ type: boolean
+ default: false
+
+ include_past:
+ description: If set to True, also tasks from past DAG Runs are
affected.
+ type: boolean
+ default: false
+
Review Comment:
Sorry, I am not too familiar with this side of things, but I don't seem to
see `dry_run` in this file. Could that be it?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]