From 22073f48e472e2f9ac18c3863e7490ae9cac034e Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Mon, 31 Aug 2020 20:42:34 -0700 Subject: [PATCH] address feedback --- airflow/api_connexion/openapi/v1.yaml | 10 ++++++---- docs/conf.py | 1 + 2 files changed, 7 insertions(+), 4 deletions(-) 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, } }, ]