diff options
| author | Jeff Carr <[email protected]> | 2024-10-22 03:50:01 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-22 03:50:01 -0500 |
| commit | 8cab0857fda04a5e9b06860aec15d05342b747f1 (patch) | |
| tree | 6789fdafd3a336696ef3b285d7fd728f90268e38 /hypervisor.proto | |
| parent | c9c0abc440e15bb23f7569f7691232f9ab3baf0e (diff) | |
next step, write out yaml or json
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'hypervisor.proto')
| -rw-r--r-- | hypervisor.proto | 10 |
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; } |
