|
| 1 | +## stackit intake runner update |
| 2 | + |
| 3 | +Updates an Intake Runner |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Updates an Intake Runner. Only the specified fields are updated. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit intake runner update RUNNER_ID [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Update the display name of an Intake Runner with ID "xxx" |
| 17 | + $ stackit intake runner update xxx --display-name "new-runner-name" |
| 18 | +
|
| 19 | + Update the message capacity limits for an Intake Runner with ID "xxx" |
| 20 | + $ stackit intake runner update xxx --max-message-size-kib 2000 --max-messages-per-hour 10000 |
| 21 | +
|
| 22 | + Clear the labels of an Intake Runner with ID "xxx" by providing an empty value |
| 23 | + $ stackit intake runner update xxx --labels "" |
| 24 | +``` |
| 25 | + |
| 26 | +### Options |
| 27 | + |
| 28 | +``` |
| 29 | + --description string Description |
| 30 | + --display-name string Display name |
| 31 | + -h, --help Help for "stackit intake runner update" |
| 32 | + --labels string Labels in key=value format. To clear all labels, provide an empty string, e.g. --labels "" |
| 33 | + --max-message-size-kib int Maximum message size in KiB. Note: Overall message capacity cannot be decreased. |
| 34 | + --max-messages-per-hour int Maximum number of messages per hour. Note: Overall message capacity cannot be decreased. |
| 35 | +``` |
| 36 | + |
| 37 | +### Options inherited from parent commands |
| 38 | + |
| 39 | +``` |
| 40 | + -y, --assume-yes If set, skips all confirmation prompts |
| 41 | + --async If set, runs the command asynchronously |
| 42 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 43 | + -p, --project-id string Project ID |
| 44 | + --region string Target region for region-specific requests |
| 45 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 46 | +``` |
| 47 | + |
| 48 | +### SEE ALSO |
| 49 | + |
| 50 | +* [stackit intake runner](./stackit_intake_runner.md) - Provides functionality for Intake Runners |
| 51 | + |
0 commit comments