Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-10-22 18:06:49 -05:00
parent 5f599fe00e
commit 2fe96457ef
1 changed files with 2 additions and 4 deletions

View File

@ -9,15 +9,13 @@ message Droplet {
string hostname = 3; string hostname = 3;
int64 cpus = 4; int64 cpus = 4;
int64 memory = 5; int64 memory = 5;
string start_state = 6; string start_state = 6; // what the state of the droplet is SUPPOSED TO BE ('on' or 'off')
// int64 disk = 6;
// string base_image = 7;
repeated Network networks = 7; repeated Network networks = 7;
repeated Disk disks = 8; repeated Disk disks = 8;
string comment = 9; 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; google.protobuf.Any testany = 11;
StorageInfo humantest = 12; StorageInfo humantest = 12;
} }