13 lines
314 B
Protocol Buffer
13 lines
314 B
Protocol Buffer
syntax = "proto3";
|
|
package virtbuf;
|
|
|
|
message Hypervisor {
|
|
string uuid = 1;
|
|
string hostname = 2;
|
|
bool active = 3; // is allowed to start new droplets
|
|
int64 cpus = 4;
|
|
int64 memory = 5; // in bytes
|
|
string comment = 6;
|
|
bool autoscan = 7; // to scan or not to scan by virtigo
|
|
}
|