diff options
| author | Jeff Carr <[email protected]> | 2024-12-01 18:59:34 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-01 18:59:34 -0600 |
| commit | aeac6b5af782c36279fc0f0f83e6120ec28bfd27 (patch) | |
| tree | 95ae99704ef8b31dce1836b42de19720cd8f10dc /hypervisor.proto | |
| parent | afd0bd642841f4dee9ca29c4913a26319aa28dd9 (diff) | |
minor autogenpb fixesv0.2.11
Diffstat (limited to 'hypervisor.proto')
| -rw-r--r-- | hypervisor.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hypervisor.proto b/hypervisor.proto index ccbbb6b..d91aef3 100644 --- a/hypervisor.proto +++ b/hypervisor.proto @@ -1,15 +1,15 @@ syntax = "proto3"; package virtbuf; -message Hypervisors { +message Hypervisors { // `autogenpb:marshal` 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; + string uuid = 1; // `autogenpb:unique` + string hostname = 2; // `autogenpb:unique` bool active = 3; // is allowed to start new droplets int64 cpus = 4; int64 memory = 5; // in bytes |
