From 887996080dec5a6a223fadecb8c16dd1ea9164be Mon Sep 17 00:00:00 2001 From: sina chavoshi Date: Tue, 11 Feb 2020 14:20:07 -0800 Subject: [PATCH] Adding auth list support for diagnose_me (#3052) * Adding auth list support for diagnose_me * correcting formatting --- sdk/python/kfp/cli/diagnose_me/gcp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/python/kfp/cli/diagnose_me/gcp.py b/sdk/python/kfp/cli/diagnose_me/gcp.py index 3a20dbdbc4d..3a5e74d94ab 100644 --- a/sdk/python/kfp/cli/diagnose_me/gcp.py +++ b/sdk/python/kfp/cli/diagnose_me/gcp.py @@ -32,6 +32,7 @@ class Commands(enum.Enum): GET_SERVICE_ACCOUNTS = 9 GET_STORAGE_BUCKETS = 10 GET_GCLOUD_VERSION = 11 + GET_AUTH_LIST = 12 _command_string = { @@ -46,6 +47,7 @@ class Commands(enum.Enum): Commands.GET_SERVICE_ACCOUNTS: 'iam service-accounts list', Commands.GET_STORAGE_BUCKETS: 'ls', Commands.GET_GCLOUD_VERSION: 'version', + Commands.GET_AUTH_LIST: 'auth list', }