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