|
| 1 | +## stackit beta server backup create |
| 2 | + |
| 3 | +Creates a Server Backup. |
| 4 | + |
| 5 | +### Synopsis |
| 6 | + |
| 7 | +Creates a Server Backup. Operation always is async. |
| 8 | + |
| 9 | +``` |
| 10 | +stackit beta server backup create [flags] |
| 11 | +``` |
| 12 | + |
| 13 | +### Examples |
| 14 | + |
| 15 | +``` |
| 16 | + Create a Server Backup with name "mybackup" |
| 17 | + $ stackit beta server backup create --server-id xxx --name=mybackup |
| 18 | +
|
| 19 | + Create a Server Backup with name "mybackup" and retention period of 5 days |
| 20 | + $ stackit beta server backup create --server-id xxx --name=mybackup --retention-period=5 |
| 21 | +``` |
| 22 | + |
| 23 | +### Options |
| 24 | + |
| 25 | +``` |
| 26 | + -h, --help Help for "stackit beta server backup create" |
| 27 | + -b, --name string Backup name |
| 28 | + -d, --retention-period int Backup retention period (in days) (default 14) |
| 29 | + -s, --server-id string Server ID |
| 30 | + -i, --volume-ids strings Backup volume IDs, as comma separated UUID values. (default []) |
| 31 | +``` |
| 32 | + |
| 33 | +### Options inherited from parent commands |
| 34 | + |
| 35 | +``` |
| 36 | + -y, --assume-yes If set, skips all confirmation prompts |
| 37 | + --async If set, runs the command asynchronously |
| 38 | + -o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"] |
| 39 | + -p, --project-id string Project ID |
| 40 | + --verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info") |
| 41 | +``` |
| 42 | + |
| 43 | +### SEE ALSO |
| 44 | + |
| 45 | +* [stackit beta server backup](./stackit_beta_server_backup.md) - Provides functionality for Server Backup |
| 46 | + |
0 commit comments