diff options
Diffstat (limited to 'droplet.proto')
| -rw-r--r-- | droplet.proto | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/droplet.proto b/droplet.proto index 60af988..c3b7bd1 100644 --- a/droplet.proto +++ b/droplet.proto @@ -23,13 +23,10 @@ message Droplet { int64 spice_port = 11; // preferred port to use for spice repeated Network networks = 12; // really just mac addresses. should be unique across cluster - repeated Disk disks = 13; // disks to attach + repeated Disk disks = 13; // disks to attach - DropletState state = 14; // if the droplet is on, off, etc - - // trying to figure out how this stuff should work - google.protobuf.Any testany = 15; - StorageInfo humantest = 16; + DropletState state = 14; // if the droplet is on, off, etc + string image_url = 15; // url to the image } enum DropletState { @@ -48,7 +45,3 @@ message Disk { string filename = 1; int64 size = 2; } - -message StorageInfo { - int64 capacity = 1; // Stores the storage capacity in bytes. -} |
