Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions proto/aquila/aquila.action.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down