10 lines
136 B
Protocol Buffer
10 lines
136 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package virtbuf;
|
||
|
|
||
|
message Hypervisor {
|
||
|
string hostname = 1;
|
||
|
bool active = 2;
|
||
|
int64 cpus = 3;
|
||
|
int64 memory = 4;
|
||
|
}
|