Workload — Start a Cron Run
workload_start_cronTrigger an immediate run of a cron workload (useful when the schedule is suspended or you need an out-of-band execution). Every call requests another run, consumes real compute, and may execute job mutations or external calls, so treat it as destructive and confirm the side effects with the user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gvc | Yes | GVC slug (lowercase kebab-case). Use the GVC the user named; otherwise discover with list_resources (kind="gvc") and let them choose — never guess (a wrong GVC targets the wrong environment). | |
| org | Yes | Organization slug (lowercase kebab-case). NEVER guess — if the user has not named one, ask. On org-not-found, stop and ask; do not retry variants. | |
| name | Yes | Workload name (lowercase kebab-case, must start with a letter, max 49 chars, cannot end with -headless). The name is IMMUTABLE — "renaming" requires delete + recreate (loses public URL, internal DNS, policy targetLinks). | |
| location | Yes | Location where this job should execute. Must be one of the locations where this workload is deployed — call list_deployments to list the workload's locations. | |
| containerOverrides | No | OPTIONAL. Most manual runs need no overrides — omit this entirely to run the job exactly as configured. Provide it only to change a container for this single run (e.g. a one-off command, image, or env). It is an array because a workload can have multiple containers; add one entry per container you want to change, each targeting an existing container by `name`. Call get_resource (kind="workload") first to see the workload’s containers (names, image, command, env) so you know what to set. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | Whether the call succeeded. | |
| data | No | The full machine-readable result — list rows, the resource object, query results. Read THIS, not just the summary. | |
| summary | Yes | One-line summary of the result. | |
| nextSteps | No | Recommended follow-up actions for this task, in order. |