summaryrefslogtreecommitdiff
path: root/hypervisor.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
committerJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
commit87b7bc17b313c04806981408943923d8e66f960a (patch)
tree2124e618a2dd06fc0aefa6b4a3a1d449e504bf8a /hypervisor.proto
parentdac27e31b5cdf7f9aa382cd342dcfa79423a0f69 (diff)
seperate config files for droplets, hypervisors & events
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'hypervisor.proto')
-rw-r--r--hypervisor.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/hypervisor.proto b/hypervisor.proto
index 3d2d87d..7e9d6be 100644
--- a/hypervisor.proto
+++ b/hypervisor.proto
@@ -1,6 +1,12 @@
syntax = "proto3";
package virtbuf;
+message Hypervisors {
+ string uuid = 1; // I guess why not just have this on each file
+ string version = 2; // maybe can be used for protobuf schema change violations
+ repeated Hypervisor hypervisors = 3;
+}
+
message Hypervisor {
string uuid = 1;
string hostname = 2;