From 80d01d97604a36a3bfd1fcc170eb5c0eb52278ce Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 25 Jul 2026 23:37:33 +0200 Subject: [PATCH] feat: added scaling options to Actions --- proto/aquila/aquila.action.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/proto/aquila/aquila.action.proto b/proto/aquila/aquila.action.proto index 5200216..2e78c83 100644 --- a/proto/aquila/aquila.action.proto +++ b/proto/aquila/aquila.action.proto @@ -35,8 +35,16 @@ message ActionEvent { // Action flow/event configuration message ActionLogon { + enum ScalingOption { + UNKNOWN = 0; + // Send all Flows/Project Configurations to all Actions of this type + DISABLED = 1; + // Split all Flows/Project Configurations between all available Actions of this type + SPLIT = 2; + } // Action identifier shared.Module module = 1; + ScalingOption scaling_option = 2; } // Request to execute a request a flow