We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e98a709 commit 9b81fd3Copy full SHA for 9b81fd3
dataikuapi/fmclient.py
@@ -185,6 +185,14 @@ def get_instance(self, instance_id):
185
instance = self._perform_tenant_json("GET", "/instances/%s" % instance_id)
186
return self._make_instance(instance)
187
188
+ def list_instance_images(self):
189
+ """
190
+ List all available images to create new instances
191
+
192
+ :return: list of images, as a pair of id and label
193
194
+ return self._perform_tenant_json("GET", "/images")
195
196
########################################################
197
# Internal Request handling
198
0 commit comments