murdering the purpose of protobuf's by renumbering

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-10-22 17:53:43 -05:00
parent 1b78a341de
commit 5f599fe00e
1 changed files with 13 additions and 14 deletions

View File

@ -9,23 +9,22 @@ message Droplet {
string hostname = 3;
int64 cpus = 4;
int64 memory = 5;
int64 disk = 6;
string base_image = 7;
string start_state = 6;
// int64 disk = 6;
// string base_image = 7;
repeated Network networks = 8;
repeated Disk disks = 9;
repeated Network networks = 7;
repeated Disk disks = 8;
string comment = 10;
string default_state = 11;
string preferred_hypervisor = 12;
google.protobuf.Any testany = 13;
StorageInfo humantest = 14;
string comment = 9;
string preferred_hypervisor = 10;
google.protobuf.Any testany = 11;
StorageInfo humantest = 12;
}
message Network {
message Network {
string mac = 1;
string name = 2;
}
}
message Disk {