Skip to content

Commit e0591af

Browse files
committed
update docs
1 parent 101122b commit e0591af

File tree

5 files changed

+15
-21
lines changed

5 files changed

+15
-21
lines changed

docs/stackit_volume_backup_create.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ stackit volume backup create [flags]
1414

1515
```
1616
Create a backup from a volume
17-
$ stackit volume backup create --source-id xxx --source-type volume --project-id xxx
17+
$ stackit volume backup create --source-id xxx --source-type volume
1818
1919
Create a backup from a snapshot with a name
20-
$ stackit volume backup create --source-id xxx --source-type snapshot --name my-backup --project-id xxx
20+
$ stackit volume backup create --source-id xxx --source-type snapshot --name my-backup
2121
2222
Create a backup with labels
23-
$ stackit volume backup create --source-id xxx --source-type volume --labels key1=value1,key2=value2 --project-id xxx
23+
$ stackit volume backup create --source-id xxx --source-type volume --labels key1=value1,key2=value2
2424
```
2525

2626
### Options

docs/stackit_volume_backup_delete.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ stackit volume backup delete BACKUP_ID [flags]
1313
### Examples
1414

1515
```
16-
Delete a backup
17-
$ stackit volume backup delete xxx-xxx-xxx
18-
19-
Delete a backup and wait for deletion to be completed
20-
$ stackit volume backup delete xxx-xxx-xxx --async=false
16+
Delete a backup with ID "xxx"
17+
$ stackit volume backup delete xxx
2118
```
2219

2320
### Options

docs/stackit_volume_backup_describe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ stackit volume backup describe BACKUP_ID [flags]
1313
### Examples
1414

1515
```
16-
Get details of a backup
17-
$ stackit volume backup describe xxx-xxx-xxx
16+
Get details of a backup with ID "xxx"
17+
$ stackit volume backup describe xxx
1818
19-
Get details of a backup in JSON format
20-
$ stackit volume backup describe xxx-xxx-xxx --output-format json
19+
Get details of a backup with ID "xxx" in JSON format
20+
$ stackit volume backup describe xxx --output-format json
2121
```
2222

2323
### Options

docs/stackit_volume_backup_restore.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ stackit volume backup restore BACKUP_ID [flags]
1313
### Examples
1414

1515
```
16-
Restore a backup
17-
$ stackit volume backup restore xxx-xxx-xxx
18-
19-
Restore a backup and wait for restore to be completed
20-
$ stackit volume backup restore xxx-xxx-xxx --async=false
16+
Restore a backup with ID "xxx"
17+
$ stackit volume backup restore xxx
2118
```
2219

2320
### Options

docs/stackit_volume_backup_update.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ stackit volume backup update BACKUP_ID [flags]
1313
### Examples
1414

1515
```
16-
Update a backup name
17-
$ stackit volume backup update xxx-xxx-xxx --name new-name
16+
Update the name of a backup with ID "xxx"
17+
$ stackit volume backup update xxx --name new-name
1818
19-
Update backup labels
20-
$ stackit volume backup update xxx-xxx-xxx --labels key1=value1,key2=value2
19+
Update the labels of a backup with ID "xxx"
20+
$ stackit volume backup update xxx --labels key1=value1,key2=value2
2121
```
2222

2323
### Options

0 commit comments

Comments
 (0)