Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-10-22 17:39:12 -05:00
parent c0c2533aaa
commit 1b78a341de
2 changed files with 7 additions and 6 deletions

View File

@ -26,11 +26,11 @@ message Droplet {
string name = 2;
}
message Disk {
}
message Disk {
string filename = 1;
int64 size = 2;
}
}
message StorageInfo {

View File

@ -4,8 +4,9 @@ package virtbuf;
message Hypervisor {
string uuid = 1;
string hostname = 2;
bool active = 3;
bool active = 3; // is allowed to start new droplets
int64 cpus = 4;
int64 memory = 5;
int64 memory = 5; // in bytes
string comment = 6;
bool autoscan = 7; // to scan or not to scan by virtigo
}