We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 603f628 commit 2abe499Copy full SHA for 2abe499
dataikuapi/fmclient.py
@@ -193,6 +193,14 @@ def get_instance(self, instance_id):
193
instance = self._perform_tenant_json("GET", "/instances/%s" % instance_id)
194
return self._make_instance(instance)
195
196
+ def list_instance_images(self):
197
+ """
198
+ List all available images to create new instances
199
+
200
+ :return: list of images, as a pair of id and label
201
202
+ return self._perform_tenant_json("GET", "/images")
203
204
########################################################
205
# Internal Request handling
206
0 commit comments