We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b50ea commit a399f04Copy full SHA for a399f04
dataikuapi/dss/app.py
@@ -67,16 +67,15 @@ def list_instances(self):
67
"""
68
List the existing instances of this app
69
70
- :rtype: list of dicts
71
:return a list of instances, each as a dict containing at least a "projectKey" field
+ :rtype: list of dicts
72
73
return self.client._perform_json(
74
"GET", "/apps/%s/instances/" % self.app_id)
75
76
def get_instance(self, instance_key):
77
return DSSAppInstance(self.client, instance_key)
78
79
-
80
def get_manifest(self):
81
raw_data = self.client._perform_json("GET", "/apps/%s/" % self.app_id)
82
project_key = self.app_id[8:] if self.app_id.startswith('PROJECT_') else None
0 commit comments