All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| get_import_error | GET /api/v2/importErrors/{import_error_id} | Get Import Error |
| get_import_errors | GET /api/v2/importErrors | Get Import Errors |
ImportErrorResponse get_import_error(import_error_id)
Get Import Error
Get an import error.
import airflow_client.client from airflow_client.client.models.import_error_response import ImportErrorResponse 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"] # 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.ImportErrorApi(api_client) import_error_id = 56 # int | try: # Get Import Error api_response = api_instance.get_import_error(import_error_id) print("The response of ImportErrorApi->get_import_error:\n") pprint(api_response) except Exception as e: print("Exception when calling ImportErrorApi->get_import_error: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| import_error_id | int |
| 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]
ImportErrorCollectionResponse get_import_errors(limit=limit, offset=offset, order_by=order_by)
Get Import Errors
Get all import errors.
import airflow_client.client from airflow_client.client.models.import_error_collection_response import ImportErrorCollectionResponse 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"] # 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.ImportErrorApi(api_client) limit = 50 # int | (optional) (default to 50) offset = 0 # int | (optional) (default to 0) order_by = 'id' # str | (optional) (default to 'id') try: # Get Import Errors api_response = api_instance.get_import_errors(limit=limit, offset=offset, order_by=order_by) print("The response of ImportErrorApi->get_import_errors:\n") pprint(api_response) except Exception as e: print("Exception when calling ImportErrorApi->get_import_errors: %s\n" % e)
| Name | Type | Description | Notes |
|---|---|---|---|
| limit | int | [optional] [default to 50] | |
| offset | int | [optional] [default to 0] | |
| order_by | str | [optional] [default to 'id'] |
| 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]