Skip to content

Commit 80d01d9

Browse files
committed
feat: added scaling options to Actions
1 parent e169277 commit 80d01d9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

proto/aquila/aquila.action.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,16 @@ message ActionEvent {
3535

3636
// Action flow/event configuration
3737
message ActionLogon {
38+
enum ScalingOption {
39+
UNKNOWN = 0;
40+
// Send all Flows/Project Configurations to all Actions of this type
41+
DISABLED = 1;
42+
// Split all Flows/Project Configurations between all available Actions of this type
43+
SPLIT = 2;
44+
}
3845
// Action identifier
3946
shared.Module module = 1;
47+
ScalingOption scaling_option = 2;
4048
}
4149

4250
// Request to execute a request a flow

0 commit comments

Comments
 (0)