mik-laj edited a comment on issue #8284:
URL: https://github.com/apache/airflow/issues/8284#issuecomment-616798527
All parameters to all operators must be called using keywords arguments.
Please look at: airflow.utils.decorators.apply_defaults
It should be something similar to:
```python
@apply_defaults
def __init__(
self,
body: duct,
azure_conn_id: str = 'azure_default',
aws_conn_id: str = 'aws_default',
gcp_conn_id: str = 'google_cloud_default',
api_version: str = 'v1',
*args,
**kwargs
) -> None:
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]