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 482154c commit 354e66eCopy full SHA for 354e66e
linstor/responses.py
@@ -277,6 +277,22 @@ def connection_status(self):
277
def net_interfaces(self):
278
return [NetInterface(x) for x in self._rest_data.get("net_interfaces", [])]
279
280
+ @property
281
+ def storage_providers(self):
282
+ return self._rest_data.get("storage_providers", [])
283
+
284
285
+ def resource_layers(self):
286
+ return self._rest_data.get("resource_layers", [])
287
288
289
+ def unsupported_providers(self):
290
+ return self._rest_data.get("unsupported_providers", {})
291
292
293
+ def unsupported_layers(self):
294
+ return self._rest_data.get("unsupported_layers", {})
295
296
@property
297
def props(self):
298
return self._rest_data.get("props", {})
0 commit comments