summaryrefslogtreecommitdiff
path: root/hypervisor.proto
diff options
context:
space:
mode:
Diffstat (limited to 'hypervisor.proto')
-rw-r--r--hypervisor.proto10
1 files changed, 6 insertions, 4 deletions
diff --git a/hypervisor.proto b/hypervisor.proto
index aa2a9da..c76612d 100644
--- a/hypervisor.proto
+++ b/hypervisor.proto
@@ -2,8 +2,10 @@ syntax = "proto3";
package virtbuf;
message Hypervisor {
- string hostname = 1;
- bool active = 2;
- int64 cpus = 3;
- int64 memory = 4;
+ string uuid = 1;
+ string hostname = 2;
+ bool active = 3;
+ int64 cpus = 4;
+ int64 memory = 5;
+ string comment = 6;
}