diff options
| author | Jeff Carr <[email protected]> | 2024-10-22 14:40:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-22 14:40:59 -0500 |
| commit | 4cdb13d89c5b932384de9f8fa542a4cbd852bca7 (patch) | |
| tree | 5c89a730ba820fb5fb1bfa71549fc4216ad338f1 /droplet.proto | |
| parent | d52e39025edcc8ec5bda4949a9dd65ce6499b870 (diff) | |
attempt 'any' type
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'droplet.proto')
| -rw-r--r-- | droplet.proto | 5 |
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; |
