Commit 527d5966 by adamtorok

image_id field added to Volume

parent d3e11cc8
...@@ -4,6 +4,7 @@ import json ...@@ -4,6 +4,7 @@ import json
class Volume: class Volume:
def __init__(self, def __init__(self,
id, id,
image_id,
size, size,
bootable, bootable,
status, status,
...@@ -12,6 +13,7 @@ class Volume: ...@@ -12,6 +13,7 @@ class Volume:
super().__init__() super().__init__()
self.id = id self.id = id
self.image_id = image_id
self.size = size self.size = size
self.bootable = bootable self.bootable = bootable
self.status = status self.status = status
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment