diff --git a/airflow/api_connexion/openapi/v1.yaml b/airflow/api_connexion/openapi/v1.yaml index 87c3499473566..f90c93e932aac 100644 --- a/airflow/api_connexion/openapi/v1.yaml +++ b/airflow/api_connexion/openapi/v1.yaml @@ -2746,13 +2746,15 @@ components: callbacks: {} securitySchemes: - BasicAuth: + Basic: type: http scheme: basic - GoogleOpenIdAuth: + GoogleOpenId: + type: openIdConnect + openIdConnectUrl: https://accounts.google.com/.well-known/openid-configuration + Kerberos: type: http - scheme: bearer - bearerFormat: JWT + scheme: negotiate # The API will provide support for plugins to support various authorization mechanisms. # Detailed information will be available in the plugin specification. 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, } }, ]