Commit 527d5966 by adamtorok

image_id field added to Volume

parent d3e11cc8
......@@ -4,6 +4,7 @@ import json
class Volume:
def __init__(self,
id,
image_id,
size,
bootable,
status,
......@@ -12,6 +13,7 @@ class Volume:
super().__init__()
self.id = id
self.image_id = image_id
self.size = size
self.bootable = bootable
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