Solutions
List, create, and manage solutions and their datasets from the trickest CLI.
On this page7
Solutions package datasets and workflows for repeatable security products (ASM,
DAST, custom apps). The solutions command family manages solution metadata
and lists datasets; Live Tables are managed under
database.
Command summary
| Subcommand | Description |
|---|---|
solutions ls | List solutions |
solutions get <id> | Solution details |
solutions create | Create a solution |
solutions update <id> | Update metadata |
solutions rm <id> | Delete |
solutions datasets <solution-id> | List datasets for a solution |
Examples
solutions ls
trickest solutions ls[{"id":"aac63c99","name":"my-solution-id","is_public":"no","author":""}]solutions get / datasets
trickest solutions get aac63c99
trickest solutions datasets aac63c99solutions create / update / rm
trickest solutions create --name "Custom ASM"
trickest solutions update aac63c99 --name "Custom ASM v2"
trickest solutions rm aac63c99Run trickest solutions create --help for the full flag list on your installed
version.
Solutions → Live Tables
Datasets attached to a solution often back Live Tables you query with TQL:
trickest solutions datasets aac63c99
trickest database ls
trickest database query "severity = critical" --table <table-id> --limit 10