move these into cluster.pb
This commit is contained in:
parent
7cdb2a33ef
commit
a07033d181
|
@ -4,14 +4,16 @@ package virtpb;
|
|||
import "google/protobuf/timestamp.proto";
|
||||
import "droplet.proto";
|
||||
import "hypervisor.proto";
|
||||
import "event.proto";
|
||||
|
||||
message Cluster {
|
||||
message Cluster { // `autogenpb:marshal`
|
||||
string uuid = 1; // `autogenpb:unique`
|
||||
string name = 2;
|
||||
repeated string URL = 3;
|
||||
google.protobuf.Timestamp ctime = 4; // when the cluster was created
|
||||
repeated Droplet droplets = 5;
|
||||
repeated Hypervisor hypervisors = 6;
|
||||
Droplets droplets = 5;
|
||||
Hypervisors hypervisors = 6;
|
||||
Events events = 7;
|
||||
}
|
||||
|
||||
message Clusters { // `autogenpb:marshal`
|
||||
|
|
Loading…
Reference in New Issue