Bowrna commented on code in PR #23516:
URL: https://github.com/apache/airflow/pull/23516#discussion_r895147259
##########
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:
@bbovenzi @ephraimbuddy I have added the params but when I hit these params
to test the API, I get an error saying `Unknown field`. Have anyone faced this
issue? Can you tell me where I am going wrong?
--
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]