Skip to content

Commit 88c1408

Browse files
committed
WIP
1 parent d7fd700 commit 88c1408

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dataikuapi/dssclient.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,9 @@ def create_global_api_key(self, label=None, description=None, admin=False):
648648
# Personal API Keys
649649
########################################################
650650

651+
def list_all_personal_api_keys(self, as_type='dict'):
652+
653+
651654
def list_personal_api_keys(self, as_type='dict'):
652655
"""
653656
List all personal API keys:
@@ -688,7 +691,10 @@ def list_personal_api_keys(self, as_type='dict'):
688691
else:
689692
return resp
690693

691-
def create_personal_api_key(self, label="", description="", as_type='dict', user=""):
694+
def create_personal_api_key_for_user(self, label="", description="", as_type='dict', user=""):
695+
696+
697+
def create_personal_api_key(self, label="", description="", as_type='dict'):
692698
"""
693699
Create a Personal API key
694700
:param str label: the label of the new API key

0 commit comments

Comments
 (0)