virtbuf/cluster.proto

15 lines
285 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package virtbuf;
import "droplet.proto";
import "hypervisor.proto";
import "event.proto";
message Cluster {
int64 id = 1;
repeated string dirs = 2;
repeated Droplet droplets = 3;
repeated Hypervisor hypervisors = 4;
repeated Event events = 5;
}