You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's introduce ui.run.actions preference that defines the criteria to display / hide run actions ("Continute" / "Monitor" / ...):
name: ui.run.actions
type: OBJECT
group: User Interface
default value: not set
visibility: true (visible to everyone)
If action is not present in the ui.run.actions preference, it is considered available (true).
These availability settings extends general action availability rules, meaning that if action is available according to the ui.run.actions, it will not be displayed if other checks are not passed.
Format
Preference value format (key-value dictionary, where keys are Action names and values are true / false / criteria string):
Run actions availability configuration
Let's introduce
ui.run.actions
preference that defines the criteria to display / hide run actions ("Continute" / "Monitor" / ...):ui.run.actions
If action is not present in the
ui.run.actions
preference, it is considered available (true
).These availability settings extends general action availability rules, meaning that if action is available according to the
ui.run.actions
, it will not be displayed if other checks are not passed.Format
Preference value format (key-value dictionary, where keys are Action names and values are
true
/false
/ criteria string):Action names:
RERUN
PAUSE
RESUME
STOP
CONTINUE
COMMIT
MONITOR
EXPORT_LOGS
BROWSE
Criteria format
Availability criteria format: logical expression of run parameters values, e.g.:
PARAMETER1 AND PARAMETER2
Available if both PARAMETER1 and PARAMETER2 parameters are set (not empty and not
false
).PARAMETER1 OR NOT PARAMETER2
Available if PARAMETER1 is set or PARAMETER2 is not set.
(PARAMETER1 == "SOME VALUE WITH SPACES" or !PARAMETER2) and PARAMETER4 != VALUE_WITHOUT_SPACES
Available if:
PARAMETER1
is "SOME VALUE WITH SPACES" orPARAMETER2
is not setPARAMETR4
value is not "VALUE_WITHOUT_SPACES"The text was updated successfully, but these errors were encountered: