@@ -143,7 +143,7 @@ Note that you will need to pass credentials data.
143
143
144
144
For e.g., here is how to pause a DAG with [ curl] ( https://curl.haxx.se/ ) , when basic authorization is used:
145
145
``` 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' \\
147
147
-H ' Content-Type: application/json' \\
148
148
--user \" username:password\" \\
149
149
-d ' {
@@ -228,7 +228,7 @@ server is unwilling to supply a default representation.
228
228
## AlreadyExists
229
229
230
230
The 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.
232
232
233
233
## Unknown
234
234
@@ -239,7 +239,7 @@ fulfilling the request.
239
239
This Python package is automatically generated by the [ OpenAPI Generator] ( https://openapi-generator.tech ) project:
240
240
241
241
- API version: 1.0.0
242
- - Package version: 2.1 .0
242
+ - Package version: 2.2 .0
243
243
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
244
244
For more information, please visit [ https://airflow.apache.org ] ( https://airflow.apache.org )
245
245
@@ -331,6 +331,8 @@ Class | Method | HTTP request | Description
331
331
* ConnectionApi* | [ ** get_connections** ] ( docs/ConnectionApi.md#get_connections ) | ** GET** /connections | List connections
332
332
* ConnectionApi* | [ ** patch_connection** ] ( docs/ConnectionApi.md#patch_connection ) | ** PATCH** /connections/{connection_id} | Update a connection
333
333
* 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
334
336
* DAGApi* | [ ** get_dag** ] ( docs/DAGApi.md#get_dag ) | ** GET** /dags/{dag_id} | Get basic information about a DAG
335
337
* DAGApi* | [ ** get_dag_details** ] ( docs/DAGApi.md#get_dag_details ) | ** GET** /dags/{dag_id}/details | Get a simplified representation of DAG
336
338
* 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
345
347
* DAGRunApi* | [ ** get_dag_runs** ] ( docs/DAGRunApi.md#get_dag_runs ) | ** GET** /dags/{dag_id}/dagRuns | List DAG runs
346
348
* DAGRunApi* | [ ** get_dag_runs_batch** ] ( docs/DAGRunApi.md#get_dag_runs_batch ) | ** POST** /dags/~ /dagRuns/list | List DAG runs (batch)
347
349
* 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
348
351
* EventLogApi* | [ ** get_event_log** ] ( docs/EventLogApi.md#get_event_log ) | ** GET** /eventLogs/{event_log_id} | Get a log entry
349
352
* EventLogApi* | [ ** get_event_logs** ] ( docs/EventLogApi.md#get_event_logs ) | ** GET** /eventLogs | List log entries
350
353
* 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
369
372
* 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
370
373
* TaskInstanceApi* | [ ** get_task_instances** ] ( docs/TaskInstanceApi.md#get_task_instances ) | ** GET** /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances | List task instances
371
374
* 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
372
376
* UserApi* | [ ** get_user** ] ( docs/UserApi.md#get_user ) | ** GET** /users/{username} | Get a user
373
377
* 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
374
380
* VariableApi* | [ ** delete_variable** ] ( docs/VariableApi.md#delete_variable ) | ** DELETE** /variables/{variable_key} | Delete a variable
375
381
* VariableApi* | [ ** get_variable** ] ( docs/VariableApi.md#get_variable ) | ** GET** /variables/{variable_key} | Get a variable
376
382
* VariableApi* | [ ** get_variables** ] ( docs/VariableApi.md#get_variables ) | ** GET** /variables | List variables
@@ -398,6 +404,7 @@ Class | Method | HTTP request | Description
398
404
- [ ConnectionCollection] ( docs/ConnectionCollection.md )
399
405
- [ ConnectionCollectionAllOf] ( docs/ConnectionCollectionAllOf.md )
400
406
- [ ConnectionCollectionItem] ( docs/ConnectionCollectionItem.md )
407
+ - [ ConnectionTest] ( docs/ConnectionTest.md )
401
408
- [ CronExpression] ( docs/CronExpression.md )
402
409
- [ DAG] ( docs/DAG.md )
403
410
- [ DAGCollection] ( docs/DAGCollection.md )
@@ -452,6 +459,7 @@ Class | Method | HTTP request | Description
452
459
- [ TaskState] ( docs/TaskState.md )
453
460
- [ TimeDelta] ( docs/TimeDelta.md )
454
461
- [ TriggerRule] ( docs/TriggerRule.md )
462
+ - [ UpdateDagRunState] ( docs/UpdateDagRunState.md )
455
463
- [ UpdateTaskInstancesState] ( docs/UpdateTaskInstancesState.md )
456
464
- [ User] ( docs/User.md )
457
465
- [ UserAllOf] ( docs/UserAllOf.md )
0 commit comments