summaryrefslogtreecommitdiff
path: root/cluster.proto
diff options
context:
space:
mode:
Diffstat (limited to 'cluster.proto')
-rw-r--r--cluster.proto23
1 files changed, 0 insertions, 23 deletions
diff --git a/cluster.proto b/cluster.proto
deleted file mode 100644
index 9569465..0000000
--- a/cluster.proto
+++ /dev/null
@@ -1,23 +0,0 @@
-syntax = "proto3";
-package virtbuf;
-
-import "droplet.proto";
-import "hypervisor.proto";
-import "event.proto";
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-import "google/protobuf/duration.proto"; // Import the well-known type for Timestamp
-
-message OldCluster {
- 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;
- google.protobuf.Timestamp unstable = 9; // the last time we heard anything from this droplet
- google.protobuf.Duration unstable_timeout = 10; // the last time we heard anything from this droplet
-}