You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
has_import_errors: Annotated[Optional[StrictBool], Field(description="Filter Dags by having import errors. Only Dags that have been successfully loaded before will be returned.")] =None,
1491
-
last_dag_run_state: Optional[DagRunState] =None,
1490
+
last_dag_run_state: Optional[Any] =None,
1492
1491
bundle_name: Optional[StrictStr] =None,
1493
1492
bundle_version: Optional[StrictStr] =None,
1494
1493
has_asset_schedule: Annotated[Optional[StrictBool], Field(description="Filter Dags with asset-based scheduling")] =None,
has_import_errors: Annotated[Optional[StrictBool], Field(description="Filter Dags by having import errors. Only Dags that have been successfully loaded before will be returned.")] =None,
1661
-
last_dag_run_state: Optional[DagRunState] =None,
1660
+
last_dag_run_state: Optional[Any] =None,
1662
1661
bundle_name: Optional[StrictStr] =None,
1663
1662
bundle_version: Optional[StrictStr] =None,
1664
1663
has_asset_schedule: Annotated[Optional[StrictBool], Field(description="Filter Dags with asset-based scheduling")] =None,
has_import_errors: Annotated[Optional[StrictBool], Field(description="Filter Dags by having import errors. Only Dags that have been successfully loaded before will be returned.")] =None,
1831
-
last_dag_run_state: Optional[DagRunState] =None,
1830
+
last_dag_run_state: Optional[Any] =None,
1832
1831
bundle_name: Optional[StrictStr] =None,
1833
1832
bundle_version: Optional[StrictStr] =None,
1834
1833
has_asset_schedule: Annotated[Optional[StrictBool], Field(description="Filter Dags with asset-based scheduling")] =None,
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `dag_id, warning_type, message, timestamp`")] =None,
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `dag_id, warning_type, message, timestamp`")] =None,
order_by: Annotated[Optional[List[StrictStr]], Field(description="Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `dag_id, warning_type, message, timestamp`")] =None,
task_display_name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] =None,
6360
+
task_group_id: Annotated[Optional[StrictStr], Field(description="Filter by exact task group ID. Returns all tasks within the specified task group.")] =None,
6360
6361
state: Optional[List[StrictStr]] =None,
6361
6362
pool: Optional[List[StrictStr]] =None,
6362
6363
queue: Optional[List[StrictStr]] =None,
@@ -6441,6 +6442,8 @@ def get_task_instances(
6441
6442
:type duration_lt: float
6442
6443
:param task_display_name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
6443
6444
:type task_display_name_pattern: str
6445
+
:param task_group_id: Filter by exact task group ID. Returns all tasks within the specified task group.
task_display_name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] =None,
6587
+
task_group_id: Annotated[Optional[StrictStr], Field(description="Filter by exact task group ID. Returns all tasks within the specified task group.")] =None,
task_display_name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] =None,
6814
+
task_group_id: Annotated[Optional[StrictStr], Field(description="Filter by exact task group ID. Returns all tasks within the specified task group.")] =None,
0 commit comments