@@ -143,7 +143,7 @@ Note that you will need to pass credentials data.
143143
144144For e.g., here is how to pause a DAG with [ curl] ( https://curl.haxx.se/ ) , when basic authorization is used:
145145``` bash
146- curl -X POST ' https://example.com/api/v1/dags/{dag_id}?update_mask=is_paused' \\
146+ curl -X PATCH ' https://example.com/api/v1/dags/{dag_id}?update_mask=is_paused' \\
147147-H ' Content-Type: application/json' \\
148148--user \" username:password\" \\
149149-d ' {
@@ -228,7 +228,7 @@ server is unwilling to supply a default representation.
228228## AlreadyExists
229229
230230The request could not be completed due to a conflict with the current state of the target
231- resource, meaning that the resource already exists
231+ resource, e.g. the resource it tries to create already exists.
232232
233233## Unknown
234234
@@ -239,7 +239,7 @@ fulfilling the request.
239239This Python package is automatically generated by the [ OpenAPI Generator] ( https://openapi-generator.tech ) project:
240240
241241- API version: 1.0.0
242- - Package version: 2.1 .0
242+ - Package version: 2.2 .0
243243- Build package: org.openapitools.codegen.languages.PythonClientCodegen
244244For more information, please visit [ https://airflow.apache.org ] ( https://airflow.apache.org )
245245
@@ -331,6 +331,8 @@ Class | Method | HTTP request | Description
331331* ConnectionApi* | [ ** get_connections** ] ( docs/ConnectionApi.md#get_connections ) | ** GET** /connections | List connections
332332* ConnectionApi* | [ ** patch_connection** ] ( docs/ConnectionApi.md#patch_connection ) | ** PATCH** /connections/{connection_id} | Update a connection
333333* ConnectionApi* | [ ** post_connection** ] ( docs/ConnectionApi.md#post_connection ) | ** POST** /connections | Create a connection
334+ * ConnectionApi* | [ ** test_connection** ] ( docs/ConnectionApi.md#test_connection ) | ** POST** /connections/test | Test a connection
335+ * DAGApi* | [ ** delete_dag** ] ( docs/DAGApi.md#delete_dag ) | ** DELETE** /dags/{dag_id} | Delete a DAG
334336* DAGApi* | [ ** get_dag** ] ( docs/DAGApi.md#get_dag ) | ** GET** /dags/{dag_id} | Get basic information about a DAG
335337* DAGApi* | [ ** get_dag_details** ] ( docs/DAGApi.md#get_dag_details ) | ** GET** /dags/{dag_id}/details | Get a simplified representation of DAG
336338* DAGApi* | [ ** get_dag_source** ] ( docs/DAGApi.md#get_dag_source ) | ** GET** /dagSources/{file_token} | Get a source code
@@ -345,6 +347,7 @@ Class | Method | HTTP request | Description
345347* DAGRunApi* | [ ** get_dag_runs** ] ( docs/DAGRunApi.md#get_dag_runs ) | ** GET** /dags/{dag_id}/dagRuns | List DAG runs
346348* DAGRunApi* | [ ** get_dag_runs_batch** ] ( docs/DAGRunApi.md#get_dag_runs_batch ) | ** POST** /dags/~ /dagRuns/list | List DAG runs (batch)
347349* DAGRunApi* | [ ** post_dag_run** ] ( docs/DAGRunApi.md#post_dag_run ) | ** POST** /dags/{dag_id}/dagRuns | Trigger a new DAG run
350+ * DAGRunApi* | [ ** update_dag_run_state** ] ( docs/DAGRunApi.md#update_dag_run_state ) | ** PATCH** /dags/{dag_id}/dagRuns/{dag_run_id} | Modify a DAG run
348351* EventLogApi* | [ ** get_event_log** ] ( docs/EventLogApi.md#get_event_log ) | ** GET** /eventLogs/{event_log_id} | Get a log entry
349352* EventLogApi* | [ ** get_event_logs** ] ( docs/EventLogApi.md#get_event_logs ) | ** GET** /eventLogs | List log entries
350353* ImportErrorApi* | [ ** get_import_error** ] ( docs/ImportErrorApi.md#get_import_error ) | ** GET** /importErrors/{import_error_id} | Get an import error
@@ -369,8 +372,11 @@ Class | Method | HTTP request | Description
369372* TaskInstanceApi* | [ ** get_task_instance** ] ( docs/TaskInstanceApi.md#get_task_instance ) | ** GET** /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id} | Get a task instance
370373* TaskInstanceApi* | [ ** get_task_instances** ] ( docs/TaskInstanceApi.md#get_task_instances ) | ** GET** /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances | List task instances
371374* TaskInstanceApi* | [ ** get_task_instances_batch** ] ( docs/TaskInstanceApi.md#get_task_instances_batch ) | ** POST** /dags/~ /dagRuns/~ /taskInstances/list | List task instances (batch)
375+ * UserApi* | [ ** delete_user** ] ( docs/UserApi.md#delete_user ) | ** DELETE** /users/{username} | Delete a user
372376* UserApi* | [ ** get_user** ] ( docs/UserApi.md#get_user ) | ** GET** /users/{username} | Get a user
373377* UserApi* | [ ** get_users** ] ( docs/UserApi.md#get_users ) | ** GET** /users | List users
378+ * UserApi* | [ ** patch_user** ] ( docs/UserApi.md#patch_user ) | ** PATCH** /users/{username} | Update a user
379+ * UserApi* | [ ** post_user** ] ( docs/UserApi.md#post_user ) | ** POST** /users | Create a user
374380* VariableApi* | [ ** delete_variable** ] ( docs/VariableApi.md#delete_variable ) | ** DELETE** /variables/{variable_key} | Delete a variable
375381* VariableApi* | [ ** get_variable** ] ( docs/VariableApi.md#get_variable ) | ** GET** /variables/{variable_key} | Get a variable
376382* VariableApi* | [ ** get_variables** ] ( docs/VariableApi.md#get_variables ) | ** GET** /variables | List variables
@@ -398,6 +404,7 @@ Class | Method | HTTP request | Description
398404 - [ ConnectionCollection] ( docs/ConnectionCollection.md )
399405 - [ ConnectionCollectionAllOf] ( docs/ConnectionCollectionAllOf.md )
400406 - [ ConnectionCollectionItem] ( docs/ConnectionCollectionItem.md )
407+ - [ ConnectionTest] ( docs/ConnectionTest.md )
401408 - [ CronExpression] ( docs/CronExpression.md )
402409 - [ DAG] ( docs/DAG.md )
403410 - [ DAGCollection] ( docs/DAGCollection.md )
@@ -452,6 +459,7 @@ Class | Method | HTTP request | Description
452459 - [ TaskState] ( docs/TaskState.md )
453460 - [ TimeDelta] ( docs/TimeDelta.md )
454461 - [ TriggerRule] ( docs/TriggerRule.md )
462+ - [ UpdateDagRunState] ( docs/UpdateDagRunState.md )
455463 - [ UpdateTaskInstancesState] ( docs/UpdateTaskInstancesState.md )
456464 - [ User] ( docs/User.md )
457465 - [ UserAllOf] ( docs/UserAllOf.md )
0 commit comments