diff --git a/airflow/api_connexion/openapi/v1.yaml b/airflow/api_connexion/openapi/v1.yaml index 6727462a66f02..f90c93e932aac 100644 --- a/airflow/api_connexion/openapi/v1.yaml +++ b/airflow/api_connexion/openapi/v1.yaml @@ -2745,6 +2745,17 @@ components: # Reusable callbacks callbacks: {} + securitySchemes: + Basic: + type: http + scheme: basic + GoogleOpenId: + type: openIdConnect + openIdConnectUrl: https://accounts.google.com/.well-known/openid-configuration + Kerberos: + type: http + scheme: negotiate + # The API will provide support for plugins to support various authorization mechanisms. # Detailed information will be available in the plugin specification. security: [] diff --git a/docs/conf.py b/docs/conf.py index 5a18439593530..444283f457842 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -553,6 +553,7 @@ def _get_rst_filepath_from_path(filepath: str): 'spec': OPENAPI_FILE, 'opts': { 'hide-hostname': True, + 'no-auto-auth': True, } }, ]