fused cronjob
Manage scheduled UDF runs.
fused cronjob [SUBCOMMAND] [OPTIONS]
Subcommands
| Subcommand | Description |
|---|---|
create | Create or update a cronjob for a UDF. |
delete | Delete a cronjob (unschedule the UDF). |
get | Get a cronjob by UDF reference or cronjob UUID. |
list | List cronjobs for the team, or filter by UDF. |
run | Trigger an immediate run of a cronjob. |
update | Update a cronjob schedule or arguments (partial updates). |
fused cronjob create
Create or update a cronjob for a UDF.
fused cronjob create CANVAS UDF [OPTIONS]
Options
| Flag | Description |
|---|---|
--minute INT_LIST | Minute (0-59); exactly one value. Repeat the flag and/or use comma-separated values. |
--hour INT_LIST | Hour (0-23). Repeat the flag and/or use comma-separated values. |
--day-of-month INT_LIST | Day of month (1-31); omit for every day. Repeat the flag and/or use comma-separated values. |
--month INT_LIST | Month (1-12); omit for every month. Repeat the flag and/or use comma-separated values. |
--day-of-week INT_LIST | Day of week (0=Sunday); omit for every day. Repeat the flag and/or use comma-separated values. |
--udf-args TEXT | JSON object of arguments passed to the UDF when the schedule runs. |
--disabled | Disable the schedule. |
--enabled | Enable the schedule. |
--no-create-udf | Do not call to_fused(); UDF must already be saved on the server. |
fused cronjob delete
Delete a cronjob (unschedule the UDF).
fused cronjob delete [CANVAS] [UDF] [OPTIONS]
Options
| Flag | Description |
|---|---|
--id | Treat the first argument as a cronjob UUID instead of CANVAS. |
fused cronjob get
Get a cronjob by UDF reference or cronjob UUID.
fused cronjob get [CANVAS] [UDF] [OPTIONS]
Options
| Flag | Description |
|---|---|
--id | Treat the first argument as a cronjob UUID instead of CANVAS. |
fused cronjob list
List cronjobs for the team, or filter by UDF.
fused cronjob list [CANVAS] [UDF] [OPTIONS]
Options
| Flag | Description |
|---|---|
--udf-id TEXT | Filter by backend UDF ID (cannot combine with CANVAS UDF). |
fused cronjob run
Trigger an immediate run of a cronjob.
fused cronjob run [CANVAS] [UDF] [OPTIONS]
Options
| Flag | Description |
|---|---|
--id | Treat the first argument as a cronjob UUID instead of CANVAS. |
fused cronjob update
Update a cronjob schedule or arguments (partial updates).
fused cronjob update [CANVAS] [UDF] [OPTIONS]
Options
| Flag | Description |
|---|---|
--id | Treat the first argument as a cronjob UUID instead of CANVAS. |
--day-of-week INT_LIST | Day of week (0=Sunday, 6=Saturday). Repeat the flag and/or use comma-separated values. |
--month INT_LIST | Month (1-12). Repeat the flag and/or use comma-separated values. |
--day-of-month INT_LIST | Day of month (1-31). Repeat the flag and/or use comma-separated values. |
--hour INT_LIST | Hour (0-23). Repeat the flag and/or use comma-separated values. |
--minute INT_LIST | Minute (0-59); exactly one value. Repeat the flag and/or use comma-separated values. |
--udf-args TEXT | JSON object of arguments passed to the UDF when the schedule runs. |
--disabled | Disable the schedule. |
--enabled | Enable the schedule. |