All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| bulk_dag_runs | PATCH /api/v2/dags/{dag_id}/dagRuns | Bulk Dag Runs |
| clear_dag_run | POST /api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/clear | Clear Dag Run |
| clear_dag_run_partitions | POST /api/v2/dags/{dag_id}/clearPartitions | Clear Dag Run Partitions |
| clear_dag_runs | POST /api/v2/dags/{dag_id}/clearDagRuns | Clear Dag Runs |
| delete_dag_run | DELETE /api/v2/dags/{dag_id}/dagRuns/{dag_run_id} | Delete Dag Run |
| get_dag_run | GET /api/v2/dags/{dag_id}/dagRuns/{dag_run_id} | Get Dag Run |
| get_dag_runs | GET /api/v2/dags/{dag_id}/dagRuns | Get Dag Runs |
| get_list_dag_runs_batch | POST /api/v2/dags/{dag_id}/dagRuns/list | Get List Dag Runs Batch |
| get_upstream_asset_events | GET /api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/upstreamAssetEvents | Get Upstream Asset Events |
| patch_dag_run | PATCH /api/v2/dags/{dag_id}/dagRuns/{dag_run_id} | Patch Dag Run |
| trigger_dag_run | POST /api/v2/dags/{dag_id}/dagRuns | Trigger Dag Run |
| wait_dag_run_until_finished | GET /api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/wait | Experimental: Wait for a dag run to complete, and return task results if requested. |
BulkResponse bulk_dag_runs(dag_id, bulk_body_bulk_dag_run_body)
Bulk Dag Runs
Bulk update or delete Dag Runs.
import airflow_client.client from airflow_client.client.models.bulk_body_bulk_dag_run_body import BulkBodyBulkDAGRunBody from airflow_client.client.models.bulk_response import BulkResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | bulk_body_bulk_dag_run_body = airflow_client.client.BulkBodyBulkDAGRunBody() # BulkBodyBulkDAGRunBody | try: # Bulk Dag Runs api_response = api_instance.bulk_dag_runs(dag_id, bulk_body_bulk_dag_run_body) print("The response of DagRunApi->bulk_dag_runs:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->bulk_dag_runs: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| bulk_body_bulk_dag_run_body | BulkBodyBulkDAGRunBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ResponseClearDagRun clear_dag_run(dag_id, dag_run_id, dag_run_clear_body)
Clear Dag Run
import airflow_client.client from airflow_client.client.models.dag_run_clear_body import DAGRunClearBody from airflow_client.client.models.response_clear_dag_run import ResponseClearDagRun from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | dag_run_clear_body = airflow_client.client.DAGRunClearBody() # DAGRunClearBody | try: # Clear Dag Run api_response = api_instance.clear_dag_run(dag_id, dag_run_id, dag_run_clear_body) print("The response of DagRunApi->clear_dag_run:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->clear_dag_run: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str | ||
| dag_run_clear_body | DAGRunClearBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClearPartitionsResponse clear_dag_run_partitions(dag_id, clear_partitions_body)
Clear Dag Run Partitions
Reset partition_key and partition_date fields on matching Dag Runs.
import airflow_client.client from airflow_client.client.models.clear_partitions_body import ClearPartitionsBody from airflow_client.client.models.clear_partitions_response import ClearPartitionsResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | clear_partitions_body = airflow_client.client.ClearPartitionsBody() # ClearPartitionsBody | try: # Clear Dag Run Partitions api_response = api_instance.clear_dag_run_partitions(dag_id, clear_partitions_body) print("The response of DagRunApi->clear_dag_run_partitions:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->clear_dag_run_partitions: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| clear_partitions_body | ClearPartitionsBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 400 | Bad Request | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ResponseClearDagRuns clear_dag_runs(dag_id, bulk_dag_run_clear_body)
Clear Dag Runs
Clear multiple Dag Runs in a single request.
import airflow_client.client from airflow_client.client.models.bulk_dag_run_clear_body import BulkDAGRunClearBody from airflow_client.client.models.response_clear_dag_runs import ResponseClearDagRuns from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | bulk_dag_run_clear_body = airflow_client.client.BulkDAGRunClearBody() # BulkDAGRunClearBody | try: # Clear Dag Runs api_response = api_instance.clear_dag_runs(dag_id, bulk_dag_run_clear_body) print("The response of DagRunApi->clear_dag_runs:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->clear_dag_runs: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| bulk_dag_run_clear_body | BulkDAGRunClearBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 400 | Bad Request | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_dag_run(dag_id, dag_run_id)
Delete Dag Run
Delete a Dag Run entry.
import airflow_client.client from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | try: # Delete Dag Run api_instance.delete_dag_run(dag_id, dag_run_id) except Exception as e: print("Exception when calling DagRunApi->delete_dag_run: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str |
void (empty response body)
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 204 | Successful Response | - |
| 400 | Bad Request | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DAGRunResponse get_dag_run(dag_id, dag_run_id)
Get Dag Run
import airflow_client.client from airflow_client.client.models.dag_run_response import DAGRunResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | try: # Get Dag Run api_response = api_instance.get_dag_run(dag_id, dag_run_id) print("The response of DagRunApi->get_dag_run:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->get_dag_run: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DAGRunCollectionResponse get_dag_runs(dag_id, partition_date_gte=partition_date_gte, partition_date_lte=partition_date_lte, cursor=cursor, limit=limit, offset=offset, run_after_gte=run_after_gte, run_after_gt=run_after_gt, run_after_lte=run_after_lte, run_after_lt=run_after_lt, logical_date_gte=logical_date_gte, logical_date_gt=logical_date_gt, logical_date_lte=logical_date_lte, logical_date_lt=logical_date_lt, start_date_gte=start_date_gte, start_date_gt=start_date_gt, start_date_lte=start_date_lte, start_date_lt=start_date_lt, end_date_gte=end_date_gte, end_date_gt=end_date_gt, end_date_lte=end_date_lte, end_date_lt=end_date_lt, duration_gte=duration_gte, duration_gt=duration_gt, duration_lte=duration_lte, duration_lt=duration_lt, updated_at_gte=updated_at_gte, updated_at_gt=updated_at_gt, updated_at_lte=updated_at_lte, updated_at_lt=updated_at_lt, conf_contains=conf_contains, run_type=run_type, state=state, dag_version=dag_version, bundle_version=bundle_version, order_by=order_by, run_id_pattern=run_id_pattern, run_id_prefix_pattern=run_id_prefix_pattern, triggering_user_name_pattern=triggering_user_name_pattern, triggering_user_name_prefix_pattern=triggering_user_name_prefix_pattern, dag_id_pattern=dag_id_pattern, dag_id_prefix_pattern=dag_id_prefix_pattern, partition_key_pattern=partition_key_pattern, partition_key_prefix_pattern=partition_key_prefix_pattern, consuming_asset_pattern=consuming_asset_pattern)
Get Dag Runs
Get all Dag Runs.
This endpoint allows specifying ~ as the dag_id to retrieve Dag Runs for all Dags.
Supports two pagination modes:
Offset (default): use limit and offset query parameters. Returns total_entries.
Cursor: pass cursor (empty string for the first page, then next_cursor from the response). When cursor is provided, offset is ignored and total_entries is not returned. next_cursor is null when there are no more pages; previous_cursor is null on the first page.
import airflow_client.client from airflow_client.client.models.dag_run_collection_response import DAGRunCollectionResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | partition_date_gte = '2013-10-20' # date | Inclusive lower bound of the partition_date window, interpreted as a local calendar day in the Dag's timetable timezone. Runs from the start of this day onwards match. (optional) partition_date_lte = '2013-10-20' # date | Inclusive upper bound of the partition_date window, interpreted as a local calendar day in the Dag's timetable timezone. The whole day is included: runs up to the end of this day match. (optional) cursor = 'cursor_example' # str | Cursor for keyset-based pagination. Pass an empty string for the first page, then use ``next_cursor`` from the response. When ``cursor`` is provided, ``offset`` is ignored. (optional) limit = 50 # int | (optional) (default to 50) offset = 0 # int | (optional) (default to 0) run_after_gte = '2013-10-20T19:20:30+01:00' # datetime | (optional) run_after_gt = '2013-10-20T19:20:30+01:00' # datetime | (optional) run_after_lte = '2013-10-20T19:20:30+01:00' # datetime | (optional) run_after_lt = '2013-10-20T19:20:30+01:00' # datetime | (optional) logical_date_gte = '2013-10-20T19:20:30+01:00' # datetime | (optional) logical_date_gt = '2013-10-20T19:20:30+01:00' # datetime | (optional) logical_date_lte = '2013-10-20T19:20:30+01:00' # datetime | (optional) logical_date_lt = '2013-10-20T19:20:30+01:00' # datetime | (optional) start_date_gte = '2013-10-20T19:20:30+01:00' # datetime | (optional) start_date_gt = '2013-10-20T19:20:30+01:00' # datetime | (optional) start_date_lte = '2013-10-20T19:20:30+01:00' # datetime | (optional) start_date_lt = '2013-10-20T19:20:30+01:00' # datetime | (optional) end_date_gte = '2013-10-20T19:20:30+01:00' # datetime | (optional) end_date_gt = '2013-10-20T19:20:30+01:00' # datetime | (optional) end_date_lte = '2013-10-20T19:20:30+01:00' # datetime | (optional) end_date_lt = '2013-10-20T19:20:30+01:00' # datetime | (optional) duration_gte = 3.4 # float | (optional) duration_gt = 3.4 # float | (optional) duration_lte = 3.4 # float | (optional) duration_lt = 3.4 # float | (optional) updated_at_gte = '2013-10-20T19:20:30+01:00' # datetime | (optional) updated_at_gt = '2013-10-20T19:20:30+01:00' # datetime | (optional) updated_at_lte = '2013-10-20T19:20:30+01:00' # datetime | (optional) updated_at_lt = '2013-10-20T19:20:30+01:00' # datetime | (optional) conf_contains = 'conf_contains_example' # str | (optional) run_type = ['run_type_example'] # List[str] | (optional) state = ['state_example'] # List[str] | (optional) dag_version = [56] # List[int] | (optional) bundle_version = 'bundle_version_example' # str | (optional) order_by = ["id"] # List[str] | Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, state, dag_id, run_id, logical_date, partition_date, run_after, start_date, end_date, updated_at, conf, duration, dag_run_id` (optional) (default to ["id"]) run_id_pattern = 'run_id_pattern_example' # str | Case-insensitive substring match (SQL `ILIKE`). Slower than `run_id_prefix_pattern` on large tables — see \"Filtering with pattern parameters\". (optional) run_id_prefix_pattern = 'run_id_prefix_pattern_example' # str | Case-sensitive, index-friendly prefix match. See \"Filtering with pattern parameters\". (optional) triggering_user_name_pattern = 'triggering_user_name_pattern_example' # str | Case-insensitive substring match (SQL `ILIKE`). Slower than `triggering_user_name_prefix_pattern` on large tables — see \"Filtering with pattern parameters\". (optional) triggering_user_name_prefix_pattern = 'triggering_user_name_prefix_pattern_example' # str | Case-sensitive, index-friendly prefix match. See \"Filtering with pattern parameters\". (optional) dag_id_pattern = 'dag_id_pattern_example' # str | Case-insensitive substring match (SQL `ILIKE`). Slower than `dag_id_prefix_pattern` on large tables — see \"Filtering with pattern parameters\". (optional) dag_id_prefix_pattern = 'dag_id_prefix_pattern_example' # str | Case-sensitive, index-friendly prefix match. See \"Filtering with pattern parameters\". (optional) partition_key_pattern = 'partition_key_pattern_example' # str | Case-insensitive substring match (SQL `ILIKE`). Here `|` is matched literally, not as OR. Slower than `partition_key_prefix_pattern` on large tables — see \"Filtering with pattern parameters\". (optional) partition_key_prefix_pattern = 'partition_key_prefix_pattern_example' # str | Case-sensitive, index-friendly prefix match. Here `|` is matched literally, not as OR. See \"Filtering with pattern parameters\". (optional) consuming_asset_pattern = 'consuming_asset_pattern_example' # str | Case-insensitive substring match against the consuming asset name or URI. Unlike the wildcard `*_pattern` parameters, `%` and `_` are matched literally, `|` is not an OR separator, and `~` does not match everything. (optional) try: # Get Dag Runs api_response = api_instance.get_dag_runs(dag_id, partition_date_gte=partition_date_gte, partition_date_lte=partition_date_lte, cursor=cursor, limit=limit, offset=offset, run_after_gte=run_after_gte, run_after_gt=run_after_gt, run_after_lte=run_after_lte, run_after_lt=run_after_lt, logical_date_gte=logical_date_gte, logical_date_gt=logical_date_gt, logical_date_lte=logical_date_lte, logical_date_lt=logical_date_lt, start_date_gte=start_date_gte, start_date_gt=start_date_gt, start_date_lte=start_date_lte, start_date_lt=start_date_lt, end_date_gte=end_date_gte, end_date_gt=end_date_gt, end_date_lte=end_date_lte, end_date_lt=end_date_lt, duration_gte=duration_gte, duration_gt=duration_gt, duration_lte=duration_lte, duration_lt=duration_lt, updated_at_gte=updated_at_gte, updated_at_gt=updated_at_gt, updated_at_lte=updated_at_lte, updated_at_lt=updated_at_lt, conf_contains=conf_contains, run_type=run_type, state=state, dag_version=dag_version, bundle_version=bundle_version, order_by=order_by, run_id_pattern=run_id_pattern, run_id_prefix_pattern=run_id_prefix_pattern, triggering_user_name_pattern=triggering_user_name_pattern, triggering_user_name_prefix_pattern=triggering_user_name_prefix_pattern, dag_id_pattern=dag_id_pattern, dag_id_prefix_pattern=dag_id_prefix_pattern, partition_key_pattern=partition_key_pattern, partition_key_prefix_pattern=partition_key_prefix_pattern, consuming_asset_pattern=consuming_asset_pattern) print("The response of DagRunApi->get_dag_runs:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->get_dag_runs: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| partition_date_gte | date | Inclusive lower bound of the partition_date window, interpreted as a local calendar day in the Dag's timetable timezone. Runs from the start of this day onwards match. | [optional] |
| partition_date_lte | date | Inclusive upper bound of the partition_date window, interpreted as a local calendar day in the Dag's timetable timezone. The whole day is included: runs up to the end of this day match. | [optional] |
| cursor | str | Cursor for keyset-based pagination. Pass an empty string for the first page, then use ``next_cursor`` from the response. When ``cursor`` is provided, ``offset`` is ignored. | [optional] |
| limit | int | [optional] [default to 50] | |
| offset | int | [optional] [default to 0] | |
| run_after_gte | datetime | [optional] | |
| run_after_gt | datetime | [optional] | |
| run_after_lte | datetime | [optional] | |
| run_after_lt | datetime | [optional] | |
| logical_date_gte | datetime | [optional] | |
| logical_date_gt | datetime | [optional] | |
| logical_date_lte | datetime | [optional] | |
| logical_date_lt | datetime | [optional] | |
| start_date_gte | datetime | [optional] | |
| start_date_gt | datetime | [optional] | |
| start_date_lte | datetime | [optional] | |
| start_date_lt | datetime | [optional] | |
| end_date_gte | datetime | [optional] | |
| end_date_gt | datetime | [optional] | |
| end_date_lte | datetime | [optional] | |
| end_date_lt | datetime | [optional] | |
| duration_gte | float | [optional] | |
| duration_gt | float | [optional] | |
| duration_lte | float | [optional] | |
| duration_lt | float | [optional] | |
| updated_at_gte | datetime | [optional] | |
| updated_at_gt | datetime | [optional] | |
| updated_at_lte | datetime | [optional] | |
| updated_at_lt | datetime | [optional] | |
| conf_contains | str | [optional] | |
| run_type | List[str] | [optional] | |
| state | List[str] | [optional] | |
| dag_version | List[int] | [optional] | |
| bundle_version | str | [optional] | |
| order_by | List[str] | Attributes to order by, multi criteria sort is supported. Prefix with `-` for descending order. Supported attributes: `id, state, dag_id, run_id, logical_date, partition_date, run_after, start_date, end_date, updated_at, conf, duration, dag_run_id` | [optional] [default to ["id"]] |
| run_id_pattern | str | Case-insensitive substring match (SQL `ILIKE`). Slower than `run_id_prefix_pattern` on large tables — see "Filtering with pattern parameters". | [optional] |
| run_id_prefix_pattern | str | Case-sensitive, index-friendly prefix match. See "Filtering with pattern parameters". | [optional] |
| triggering_user_name_pattern | str | Case-insensitive substring match (SQL `ILIKE`). Slower than `triggering_user_name_prefix_pattern` on large tables — see "Filtering with pattern parameters". | [optional] |
| triggering_user_name_prefix_pattern | str | Case-sensitive, index-friendly prefix match. See "Filtering with pattern parameters". | [optional] |
| dag_id_pattern | str | Case-insensitive substring match (SQL `ILIKE`). Slower than `dag_id_prefix_pattern` on large tables — see "Filtering with pattern parameters". | [optional] |
| dag_id_prefix_pattern | str | Case-sensitive, index-friendly prefix match. See "Filtering with pattern parameters". | [optional] |
| partition_key_pattern | str | Case-insensitive substring match (SQL `ILIKE`). Here ` | ` is matched literally, not as OR. Slower than `partition_key_prefix_pattern` on large tables — see "Filtering with pattern parameters". |
| partition_key_prefix_pattern | str | Case-sensitive, index-friendly prefix match. Here ` | ` is matched literally, not as OR. See "Filtering with pattern parameters". |
| consuming_asset_pattern | str | Case-insensitive substring match against the consuming asset name or URI. Unlike the wildcard `*pattern` parameters, `%` and `` are matched literally, ` | ` is not an OR separator, and `~` does not match everything. |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DAGRunCollectionResponse get_list_dag_runs_batch(dag_id, dag_runs_batch_body)
Get List Dag Runs Batch
Get a list of Dag Runs.
import airflow_client.client from airflow_client.client.models.dag_run_collection_response import DAGRunCollectionResponse from airflow_client.client.models.dag_runs_batch_body import DAGRunsBatchBody from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_runs_batch_body = airflow_client.client.DAGRunsBatchBody() # DAGRunsBatchBody | try: # Get List Dag Runs Batch api_response = api_instance.get_list_dag_runs_batch(dag_id, dag_runs_batch_body) print("The response of DagRunApi->get_list_dag_runs_batch:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->get_list_dag_runs_batch: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_runs_batch_body | DAGRunsBatchBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
AssetEventCollectionResponse get_upstream_asset_events(dag_id, dag_run_id)
Get Upstream Asset Events
If dag run is asset-triggered, return the asset events that triggered it.
import airflow_client.client from airflow_client.client.models.asset_event_collection_response import AssetEventCollectionResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | try: # Get Upstream Asset Events api_response = api_instance.get_upstream_asset_events(dag_id, dag_run_id) print("The response of DagRunApi->get_upstream_asset_events:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->get_upstream_asset_events: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DAGRunResponse patch_dag_run(dag_id, dag_run_id, dag_run_patch_body, update_mask=update_mask)
Patch Dag Run
Modify a Dag Run.
import airflow_client.client from airflow_client.client.models.dag_run_patch_body import DAGRunPatchBody from airflow_client.client.models.dag_run_response import DAGRunResponse from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | dag_run_patch_body = airflow_client.client.DAGRunPatchBody() # DAGRunPatchBody | update_mask = ['update_mask_example'] # List[str] | (optional) try: # Patch Dag Run api_response = api_instance.patch_dag_run(dag_id, dag_run_id, dag_run_patch_body, update_mask=update_mask) print("The response of DagRunApi->patch_dag_run:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->patch_dag_run: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str | ||
| dag_run_patch_body | DAGRunPatchBody | ||
| update_mask | List[str] | [optional] |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 400 | Bad Request | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DAGRunResponse trigger_dag_run(dag_id, trigger_dag_run_post_body)
Trigger Dag Run
Trigger a Dag.
import airflow_client.client from airflow_client.client.models.dag_run_response import DAGRunResponse from airflow_client.client.models.trigger_dag_run_post_body import TriggerDAGRunPostBody from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = None # object | trigger_dag_run_post_body = airflow_client.client.TriggerDAGRunPostBody() # TriggerDAGRunPostBody | try: # Trigger Dag Run api_response = api_instance.trigger_dag_run(dag_id, trigger_dag_run_post_body) print("The response of DagRunApi->trigger_dag_run:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->trigger_dag_run: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | object | ||
| trigger_dag_run_post_body | TriggerDAGRunPostBody |
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 400 | Bad Request | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 409 | Conflict | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object wait_dag_run_until_finished(dag_id, dag_run_id, interval, result=result)
Experimental: Wait for a dag run to complete, and return task results if requested.
🚧 This is an experimental endpoint and may change or be removed without notice.Successful response are streamed as newline-delimited JSON (NDJSON). Each line is a JSON object representing the Dag run state.
import airflow_client.client from airflow_client.client.rest import ApiException from pprint import pprint # Defining the host is optional and defaults to http://localhost # See configuration.py for a list of all supported configuration parameters. configuration = airflow_client.client.Configuration( host = "http://localhost" ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. # Examples for each auth method are provided below, use the example that # satisfies your auth use case. configuration.access_token = os.environ["ACCESS_TOKEN"] # Configure Bearer authorization: HTTPBearer configuration = airflow_client.client.Configuration( access_token = os.environ["BEARER_TOKEN"] ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = airflow_client.client.DagRunApi(api_client) dag_id = 'dag_id_example' # str | dag_run_id = 'dag_run_id_example' # str | interval = 3.4 # float | Seconds to wait between dag run state checks result = ['result_example'] # List[str] | Collect result XCom from task. Can be set multiple times. If unset, return value of the return task as specified in the dag (in present) is returned by default. (optional) try: # Experimental: Wait for a dag run to complete, and return task results if requested. api_response = api_instance.wait_dag_run_until_finished(dag_id, dag_run_id, interval, result=result) print("The response of DagRunApi->wait_dag_run_until_finished:\n") pprint(api_response) except Exception as e: print("Exception when calling DagRunApi->wait_dag_run_until_finished: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | ||
| dag_run_id | str | ||
| interval | float | Seconds to wait between dag run state checks | |
| result | List[str] | Collect result XCom from task. Can be set multiple times. If unset, return value of the return task as specified in the dag (in present) is returned by default. | [optional] |
object
OAuth2PasswordBearer, HTTPBearer
| Status code | Description | Response headers |
|---|---|---|
| 200 | Successful Response | - |
| 401 | Unauthorized | - |
| 403 | Forbidden | - |
| 404 | Not Found | - |
| 422 | Validation Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]