summaryrefslogtreecommitdiff
path: root/hypervisor.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 03:26:02 -0500
committerJeff Carr <[email protected]>2024-10-22 03:26:02 -0500
commitc9c0abc440e15bb23f7569f7691232f9ab3baf0e (patch)
tree8d580ddcea2c4e7f7ae36abaab0adc2d0c075830 /hypervisor.proto
parent9bc90046d9ded6bfc6e84e4ced9bf693ee6af6fb (diff)
add hypervisor struct
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'hypervisor.proto')
-rw-r--r--hypervisor.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/hypervisor.proto b/hypervisor.proto
new file mode 100644
index 0000000..aa2a9da
--- /dev/null
+++ b/hypervisor.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+package virtbuf;
+
+message Hypervisor {
+ string hostname = 1;
+ bool active = 2;
+ int64 cpus = 3;
+ int64 memory = 4;
+}