virtbuf/cluster.proto

20 lines
363 B
Protocol Buffer

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;
Droplets d = 6;
Hypervisors h = 7;
Events e = 8;
}