parent
c0c2533aaa
commit
1b78a341de
|
@ -26,13 +26,13 @@ message Droplet {
|
||||||
string name = 2;
|
string name = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
message Disk {
|
message Disk {
|
||||||
string filename = 1;
|
string filename = 1;
|
||||||
int64 size = 2;
|
int64 size = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
message StorageInfo {
|
message StorageInfo {
|
||||||
int64 capacity = 1; // Stores the storage capacity in bytes.
|
int64 capacity = 1; // Stores the storage capacity in bytes.
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,9 @@ package virtbuf;
|
||||||
message Hypervisor {
|
message Hypervisor {
|
||||||
string uuid = 1;
|
string uuid = 1;
|
||||||
string hostname = 2;
|
string hostname = 2;
|
||||||
bool active = 3;
|
bool active = 3; // is allowed to start new droplets
|
||||||
int64 cpus = 4;
|
int64 cpus = 4;
|
||||||
int64 memory = 5;
|
int64 memory = 5; // in bytes
|
||||||
string comment = 6;
|
string comment = 6;
|
||||||
|
bool autoscan = 7; // to scan or not to scan by virtigo
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue