summaryrefslogtreecommitdiff
path: root/droplet.proto
diff options
context:
space:
mode:
Diffstat (limited to 'droplet.proto')
-rw-r--r--droplet.proto5
1 files changed, 4 insertions, 1 deletions
diff --git a/droplet.proto b/droplet.proto
index 7f54c63..eab564c 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -1,12 +1,14 @@
syntax = "proto3";
package virtbuf;
+import "google/protobuf/any.proto";
+
message Droplet {
string uuid = 1;
string name = 2;
string hostname = 3;
int64 cpus = 4;
- int64 memory = 5;
+ string memory = 5;
int64 disk = 6;
string base_image = 7;
@@ -16,6 +18,7 @@ message Droplet {
string comment = 10;
string default_state = 11;
string preferred_hypervisor = 12;
+ google.protobuf.Any testany = 13;
message Network {
string mac = 1;