From 2fe96457eff2ee02ed7eea99049f2164a43e9e63 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 22 Oct 2024 18:06:49 -0500 Subject: [PATCH] comments Signed-off-by: Jeff Carr --- droplet.proto | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/droplet.proto b/droplet.proto index f1638be..c1cdf3d 100644 --- a/droplet.proto +++ b/droplet.proto @@ -9,15 +9,13 @@ message Droplet { string hostname = 3; int64 cpus = 4; int64 memory = 5; - string start_state = 6; - // int64 disk = 6; - // string base_image = 7; + string start_state = 6; // what the state of the droplet is SUPPOSED TO BE ('on' or 'off') repeated Network networks = 7; repeated Disk disks = 8; string comment = 9; - string preferred_hypervisor = 10; + string preferred_hypervisor = 10; // the hypervisor to prefer to run the droplet on google.protobuf.Any testany = 11; StorageInfo humantest = 12; }