Trigger
Prerequisites
- Have a Heex CLI
- Have a USER_SECRET_KEY. Should be accessible in your personnal space on the heex cloud platform.
Usage
Subcommand | Description |
---|---|
get | Retrieve trigger details for the given trigger id. |
list | Retrieve list of triggers based on specified filters. |
create | Create a new trigger on the cloud. |
update | Update an existing trigger on the cloud. |
create-template-file | Creates a template file that can be used for creation or update of a trigger. |
Usage:
How to get trigger details
You can get the details of a trigger if you provide a trigger-id, see example below:
Usage:
This can be useful when you want to get the details of a trigger that you have previously created or if you want to modify a trigger.
How to get trigger list
You can get list of all available triggers in a given workspace. Several filters are available to narrow down the results. The flags available to filter the results are:
--system-id
ID of the involved system.--trigger-id
ID of the involved trigger. Multiple can be given: e.g.--trigger-id 1
--trigger-id 2
--trigger-id 3
.--trigger-name
Name of the trigger to retrieve details for. Multiple can be given:--trigger-name name1
--trigger-name name2
.--priority
Priority of the trigger to retrieve details for. Multiple can be given:--priority 1
--priority 2
.--output-file
The result will be saved into this provided filepath. The output format is json, so please provide a filepath with that format:/path/to/file.json
The result can be saved in a json file by using the --output-file
flag. If the provided path doesn’t exist, it will be created. See example below where several filters can be used at the same time:
Usage:
How to create triggers
There are 2 possible ways to create a new trigger, either by providing a json file with the trigger details or by providing the details directly in the command line. When using a file you can create multiple triggers, otherwise you can create only one trigger at the time.
The flags that are available to achieve this command are the following:
--api-key
: Provide your USER_SECRET_KEY.--name
: Trigger name to create [required if not using a file].--description
: Description of the trigger [optional].--input-file
: Full path to the input file to use, it has to be a .json file, example : /path/to/input.json
To create a trigger by providing options, see example below:
Usage:
Create triggers using a json file
If you want to create a trigger where you can specify conditions then you should use json file with the trigger details. You can use command below to generate a template file. If no --folder-path
is provided, the template will be saved in the current directory.
Usage:
Once the template file is generated, you can fill the details and use it as input file. See an example of file with monitoring_signal_condition and recording_signal_condition below:
Usage:
Only name
is mandatory. Other fields are optional and can be removed from the template file if not needed. Note that for the creation to work properly you need to remove the fields that are not necessary for your trigger.
If you need help to fill the template file, you can check the Trigger Options Help for more information about possible values of several fields.
How to update a trigger
You can update a trigger by using a json file. Flags to update a trigger are --input-file
and --trigger-id
which are both required. You can generate a template file using the same command as for the creation:
Usage:
Once the template file is generated, you can fill the details and use it as input file:
Usage: