@@ -2097,7 +2097,6 @@ def patch_dags(
20972097 dag_id_pattern : Optional [StrictStr ] = None ,
20982098 exclude_stale : Optional [StrictBool ] = None ,
20992099 paused : Optional [StrictBool ] = None ,
2100- last_dag_run_state : Optional [DagRunState ] = None ,
21012100 _request_timeout : Union [
21022101 None ,
21032102 Annotated [StrictFloat , Field (gt = 0 )],
@@ -2135,8 +2134,6 @@ def patch_dags(
21352134 :type exclude_stale: bool
21362135 :param paused:
21372136 :type paused: bool
2138- :param last_dag_run_state:
2139- :type last_dag_run_state: DagRunState
21402137 :param _request_timeout: timeout setting for this request. If one
21412138 number provided, it will be total request
21422139 timeout. It can also be a pair (tuple) of
@@ -2170,7 +2167,6 @@ def patch_dags(
21702167 dag_id_pattern = dag_id_pattern ,
21712168 exclude_stale = exclude_stale ,
21722169 paused = paused ,
2173- last_dag_run_state = last_dag_run_state ,
21742170 _request_auth = _request_auth ,
21752171 _content_type = _content_type ,
21762172 _headers = _headers ,
@@ -2209,7 +2205,6 @@ def patch_dags_with_http_info(
22092205 dag_id_pattern : Optional [StrictStr ] = None ,
22102206 exclude_stale : Optional [StrictBool ] = None ,
22112207 paused : Optional [StrictBool ] = None ,
2212- last_dag_run_state : Optional [DagRunState ] = None ,
22132208 _request_timeout : Union [
22142209 None ,
22152210 Annotated [StrictFloat , Field (gt = 0 )],
@@ -2247,8 +2242,6 @@ def patch_dags_with_http_info(
22472242 :type exclude_stale: bool
22482243 :param paused:
22492244 :type paused: bool
2250- :param last_dag_run_state:
2251- :type last_dag_run_state: DagRunState
22522245 :param _request_timeout: timeout setting for this request. If one
22532246 number provided, it will be total request
22542247 timeout. It can also be a pair (tuple) of
@@ -2282,7 +2275,6 @@ def patch_dags_with_http_info(
22822275 dag_id_pattern = dag_id_pattern ,
22832276 exclude_stale = exclude_stale ,
22842277 paused = paused ,
2285- last_dag_run_state = last_dag_run_state ,
22862278 _request_auth = _request_auth ,
22872279 _content_type = _content_type ,
22882280 _headers = _headers ,
@@ -2321,7 +2313,6 @@ def patch_dags_without_preload_content(
23212313 dag_id_pattern : Optional [StrictStr ] = None ,
23222314 exclude_stale : Optional [StrictBool ] = None ,
23232315 paused : Optional [StrictBool ] = None ,
2324- last_dag_run_state : Optional [DagRunState ] = None ,
23252316 _request_timeout : Union [
23262317 None ,
23272318 Annotated [StrictFloat , Field (gt = 0 )],
@@ -2359,8 +2350,6 @@ def patch_dags_without_preload_content(
23592350 :type exclude_stale: bool
23602351 :param paused:
23612352 :type paused: bool
2362- :param last_dag_run_state:
2363- :type last_dag_run_state: DagRunState
23642353 :param _request_timeout: timeout setting for this request. If one
23652354 number provided, it will be total request
23662355 timeout. It can also be a pair (tuple) of
@@ -2394,7 +2383,6 @@ def patch_dags_without_preload_content(
23942383 dag_id_pattern = dag_id_pattern ,
23952384 exclude_stale = exclude_stale ,
23962385 paused = paused ,
2397- last_dag_run_state = last_dag_run_state ,
23982386 _request_auth = _request_auth ,
23992387 _content_type = _content_type ,
24002388 _headers = _headers ,
@@ -2428,7 +2416,6 @@ def _patch_dags_serialize(
24282416 dag_id_pattern ,
24292417 exclude_stale ,
24302418 paused ,
2431- last_dag_run_state ,
24322419 _request_auth ,
24332420 _content_type ,
24342421 _headers ,
@@ -2490,10 +2477,6 @@ def _patch_dags_serialize(
24902477
24912478 _query_params .append (('paused' , paused ))
24922479
2493- if last_dag_run_state is not None :
2494-
2495- _query_params .append (('last_dag_run_state' , last_dag_run_state .value ))
2496-
24972480 # process the header parameters
24982481 # process the form parameters
24992482 # process the body parameter
0 commit comments