|
| 1 | +## stackit beta intake runner create |
| 2 | + |
| 3 | +Creates a new Intake Runner |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a new Intake Runner. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta intake runner create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a new Intake Runner with a display name and message capacity limits |
| 17 | + $ stackit beta intake runner create --display-name my-runner --max-message-size-kib 1000 --max-messages-per-hour 5000 |
| 18 | +
|
| 19 | + Create a new Intake Runner with a description and labels |
| 20 | + $ stackit beta intake runner create --display-name my-runner --max-message-size-kib 1000 --max-messages-per-hour 5000 --description "Main runner for production" --labels="env=prod,team=billing" |
| 21 | +``` |
| 22 | + |
| 23 | +### Options |
| 24 | + |
| 25 | +``` |
| 26 | + --description string Description |
| 27 | + --display-name string Display name |
| 28 | + -h, --help Help for "stackit beta intake runner create" |
| 29 | + --labels stringToString Labels in key=value format, separated by commas. Example: --labels "key1=value1,key2=value2" (default []) |
| 30 | + --max-message-size-kib int Maximum message size in KiB |
| 31 | + --max-messages-per-hour int Maximum number of messages per hour |
| 32 | +``` |
| 33 | + |
| 34 | +### Options inherited from parent commands |
| 35 | + |
| 36 | +``` |
| 37 | + -y, --assume-yes If set, skips all confirmation prompts |
| 38 | + --async If set, runs the command asynchronously |
| 39 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 40 | + -p, --project-id string Project ID |
| 41 | + --region string Target region for region-specific requests |
| 42 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 43 | +``` |
| 44 | + |
| 45 | +### SEE ALSO |
| 46 | + |
| 47 | +* [stackit beta intake runner](./stackit_beta_intake_runner.md) - Provides functionality for Intake Runners |
| 48 | + |
0 commit comments