summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 17:53:43 -0500
committerJeff Carr <[email protected]>2024-10-22 17:53:43 -0500
commit5f599fe00e8ef8295a20cb5fcad2bdedcadb25cb (patch)
tree4fbf6b17318b1010d83a40eaf67260be78744270
parent1b78a341de44212fb42a15b40d292aa18a6a7a37 (diff)
murdering the purpose of protobuf's by renumbering
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--droplet.proto27
1 files changed, 13 insertions, 14 deletions
diff --git a/droplet.proto b/droplet.proto
index 87f215e..f1638be 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -9,23 +9,22 @@ message Droplet {
string hostname = 3;
int64 cpus = 4;
int64 memory = 5;
- int64 disk = 6;
- string base_image = 7;
+ string start_state = 6;
+ // int64 disk = 6;
+ // string base_image = 7;
- repeated Network networks = 8;
- repeated Disk disks = 9;
+ repeated Network networks = 7;
+ repeated Disk disks = 8;
- string comment = 10;
- string default_state = 11;
- string preferred_hypervisor = 12;
- google.protobuf.Any testany = 13;
- StorageInfo humantest = 14;
-
- message Network {
- string mac = 1;
- string name = 2;
- }
+ string comment = 9;
+ string preferred_hypervisor = 10;
+ google.protobuf.Any testany = 11;
+ StorageInfo humantest = 12;
+}
+message Network {
+ string mac = 1;
+ string name = 2;
}
message Disk {