Skip to content

Commit

Permalink
Add Client Version 2.6.1 (#80)
Browse files Browse the repository at this point in the history
* Add Client Version 2.6.1

* Fix bug - Invalid type for variable for execution_timeout and dag_run_timeout (#53) (#76)

(cherry picked from commit f32517a)

Co-authored-by: David Katz <[email protected]>
(cherry picked from commit ddd6fc0)
  • Loading branch information
ephraimbuddy authored May 17, 2023
1 parent 1d5134a commit 8d86867
Show file tree
Hide file tree
Showing 265 changed files with 561 additions and 538 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@
under the License.
-->

# v2.6.1

Apache Airflow API version: 2.6.1

### Major changes:
- NA

### Major Fixes

- Fix Pool schema OpenAPI spec ([#30973](https://github.com/apache/airflow/pull/30973))

### NEW API supported

- NA

# v2.6.0

Apache Airflow API version: 2.6.0
Expand Down
16 changes: 9 additions & 7 deletions airflow_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ resource in the response body.

### Delete

Deleting a resource requires the resource `id` and is typically executing via an HTTP `DELETE` request.
Deleting a resource requires the resource `id` and is typically executed via an HTTP `DELETE` request.
The response usually returns a `204 No Content` response code upon success.

## Conventions
Expand All @@ -95,12 +95,14 @@ The response usually returns a `204 No Content` response code upon success.
- Field names are in snake_case.
```json
{
\"description\": \"string\",
\"name\": \"string\",
\"slots\": 0,
\"occupied_slots\": 0,
\"used_slots\": 0,
\"queued_slots\": 0,
\"open_slots\": 0
\"queued_slots\": 0,
\"running_slots\": 0,
\"scheduled_slots\": 0,
\"slots\": 0,
}
```

Expand Down Expand Up @@ -146,7 +148,7 @@ curl -X PATCH 'https://example.com/api/v1/dags/{dag_id}?update_mask=is_paused' \
Using a graphical tool such as [Postman](https://www.postman.com/) or [Insomnia](https://insomnia.rest/),
it is possible to import the API specifications directly:

1. Download the API specification by clicking the **Download** button at top of this document
1. Download the API specification by clicking the **Download** button at the top of this document
2. Import the JSON specification in the graphical tool of your choice.
- In *Postman*, you can click the **import** button at the top
- With *Insomnia*, you can just drag-and-drop the file on the UI
Expand Down Expand Up @@ -230,8 +232,8 @@ fulfilling the request.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2.6.0
- Package version: 2.6.0
- API version: 2.6.1
- Package version: 2.6.1
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://airflow.apache.org](https://airflow.apache.org)

Expand Down
6 changes: 3 additions & 3 deletions airflow_client/client/__init__.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/config_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/connection_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/dag_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/dag_run_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/dag_warning_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/dataset_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/event_log_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/import_error_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/monitoring_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/permission_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/plugin_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/pool_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/provider_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/role_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/task_instance_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/user_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/variable_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/api/x_com_api.py

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions airflow_client/client/api_client.py

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions airflow_client/client/configuration.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/exceptions.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/action.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/action_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/action_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/action_resource.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/basic_dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/class_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/clear_dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/clear_task_instances.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/collection_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/color.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/config.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/config_option.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/config_section.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/connection_test.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/cron_expression.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_detail.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_detail_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_run_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_run_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_schedule_dataset_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_warning.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_warning_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dag_warning_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dataset.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dataset_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dataset_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dataset_event.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/dataset_event_collection.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/error.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/event_log.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/event_log_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/event_log_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/extra_link.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/extra_link_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/health_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/health_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/import_error.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/import_error_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/import_error_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/inline_response200.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/inline_response2001.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/job.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/list_dag_runs_form.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/list_task_instance_form.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/metadatabase_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/plugin_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/plugin_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/plugin_collection_item.py

Large diffs are not rendered by default.

19 changes: 12 additions & 7 deletions airflow_client/client/model/pool.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/pool_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/pool_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/provider.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/provider_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/relative_delta.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/resource.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/role.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/role_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/role_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/schedule_interval.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/scheduler_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/set_dag_run_note.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/set_task_instance_note.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/sla_miss.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/tag.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_extra_links.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_instance.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_instance_collection.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_instance_reference.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_outlet_dataset_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/task_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/time_delta.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/trigger.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/trigger_rule.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/update_dag_run_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/update_task_instance.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/update_task_instances_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/user_collection_item_roles.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/variable.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/variable_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/variable_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/variable_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/variable_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/version_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/weight_rule.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/x_com.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/x_com_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/x_com_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/x_com_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model/x_com_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/model_utils.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/client/rest.py

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion airflow_client/docs/Pool.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ Name | Type | Description | Notes
**name** | **str** | The name of pool. | [optional]
**slots** | **int** | The maximum number of slots that can be assigned to tasks. One job may occupy one or more slots. | [optional]
**occupied_slots** | **int** | The number of slots used by running/queued tasks at the moment. | [optional] [readonly]
**used_slots** | **int** | The number of slots used by running tasks at the moment. | [optional] [readonly]
**running_slots** | **int** | The number of slots used by running tasks at the moment. | [optional] [readonly]
**queued_slots** | **int** | The number of slots used by queued tasks at the moment. | [optional] [readonly]
**open_slots** | **int** | The number of free slots at the moment. | [optional] [readonly]
**scheduled_slots** | **int** | The number of slots used by scheduled tasks at the moment. | [optional] [readonly]
**description** | **str, none_type** | The description of the pool. *New in version 2.3.0* | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]

Expand Down
4 changes: 2 additions & 2 deletions airflow_client/test/test_action.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_action_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_action_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_action_resource.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_basic_dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_class_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_clear_dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_clear_task_instances.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_collection_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_color.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_config.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_config_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_config_option.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_config_section.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_connection_test.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_cron_expression.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_detail.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_detail_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_run.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_run_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_run_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_run_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_schedule_dataset_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_warning.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_warning_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_warning_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dag_warning_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_event.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_event_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_dataset_event_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_error.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_event_log.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_event_log_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_event_log_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_event_log_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_extra_link.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_extra_link_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_health_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_health_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_import_error.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_import_error_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_import_error_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_import_error_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_inline_response200.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_inline_response2001.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_job.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_list_dag_runs_form.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_list_task_instance_form.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_metadatabase_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_monitoring_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_permission_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_plugin_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_plugin_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_plugin_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_plugin_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_pool.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_pool_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_pool_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_pool_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_provider.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_provider_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_provider_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_relative_delta.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_resource.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_role.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_role_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_role_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_role_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_schedule_interval.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_scheduler_status.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_set_dag_run_note.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_set_task_instance_note.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_sla_miss.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_tag.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_extra_links.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_instance.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_instance_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_instance_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_instance_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_instance_reference.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_outlet_dataset_reference.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_task_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_time_delta.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_trigger.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_trigger_rule.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_update_dag_run_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_update_task_instance.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_update_task_instances_state.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_user_collection_item_roles.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_variable_collection_item.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_version_info.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_weight_rule.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com_api.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com_collection.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com_collection_all_of.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions airflow_client/test/test_x_com_collection_item.py

Large diffs are not rendered by default.

Binary file added apache-airflow-client-2.6.0-source.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from setuptools import find_packages, setup # noqa: H301

VERSION = "2.6.0"
VERSION = "2.6.1"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 8d86867

Please sign in to comment.