You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -645,11 +658,252 @@ Block Storage (Volume) service (Cinder) commands
645
658
646
659
###### **Subcommands:**
647
660
661
+
* `backup` — Backups
648
662
* `volume` — Block Storage Volume commands
649
663
* `type` — Block Storage VolumeType type commands
650
664
651
665
652
666
667
+
## `osc block-storage backup`
668
+
669
+
Backups
670
+
671
+
A backup is a full copy of a volume stored in an external service. The service can be configured. The only supported service is Object Storage. A backup can subsequently be restored from the external service to either the same volume that the backup was originally taken from or to a new volume.
672
+
673
+
**Usage:** `osc block-storage backup <COMMAND>`
674
+
675
+
###### **Subcommands:**
676
+
677
+
* `create351` — Create a new backup
678
+
* `create343` — Create a new backup
679
+
* `create30` — Create a new backup
680
+
* `delete` — Delete a backup
681
+
* `export` — Export a backup
682
+
* `force-delete` — Empty body for os-force_delete action
683
+
* `import` — Import a backup
684
+
* `list` — Returns a detailed list of backups
685
+
* `reset-status` — Command without description in OpenAPI
* `--availability-zone <AVAILABILITY_ZONE>` — The backup availability zone key value pair
701
+
* `--container <CONTAINER>` — The container name or null
702
+
* `--description <DESCRIPTION>` — The backup description or null
703
+
* `--force <FORCE>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
704
+
705
+
Possible values: `true`, `false`
706
+
707
+
* `--incremental <INCREMENTAL>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
708
+
709
+
Possible values: `true`, `false`
710
+
711
+
* `--metadata <key=value>` — The backup metadata key value pairs
712
+
* `--name <NAME>` — The name of the Volume Backup
713
+
* `--snapshot-id <SNAPSHOT_ID>` — The UUID of the source snapshot that you want to back up
714
+
* `--volume-id <VOLUME_ID>` — The UUID of the volume that you want to back up
* `--container <CONTAINER>` — The container name or null
727
+
* `--description <DESCRIPTION>` — The backup description or null
728
+
* `--force <FORCE>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
729
+
730
+
Possible values: `true`, `false`
731
+
732
+
* `--incremental <INCREMENTAL>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
733
+
734
+
Possible values: `true`, `false`
735
+
736
+
* `--metadata <key=value>` — The backup metadata key value pairs
737
+
* `--name <NAME>` — The name of the Volume Backup
738
+
* `--snapshot-id <SNAPSHOT_ID>` — The UUID of the source snapshot that you want to back up
739
+
* `--volume-id <VOLUME_ID>` — The UUID of the volume that you want to back up
* `--container <CONTAINER>` — The container name or null
752
+
* `--description <DESCRIPTION>` — The backup description or null
753
+
* `--force <FORCE>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
754
+
755
+
Possible values: `true`, `false`
756
+
757
+
* `--incremental <INCREMENTAL>` — Indicates whether to backup, even if the volume is attached. Default is `false`. See [valid boolean values](#valid-boolean-values)
758
+
759
+
Possible values: `true`, `false`
760
+
761
+
* `--name <NAME>` — The name of the Volume Backup
762
+
* `--snapshot-id <SNAPSHOT_ID>` — The UUID of the source snapshot that you want to back up
763
+
* `--volume-id <VOLUME_ID>` — The UUID of the volume that you want to back up
764
+
765
+
766
+
767
+
## `osc block-storage backup delete`
768
+
769
+
Delete a backup
770
+
771
+
**Usage:** `osc block-storage backup delete <ID>`
772
+
773
+
###### **Arguments:**
774
+
775
+
* `<ID>` — id parameter for /v3/backups/{id} API
776
+
777
+
778
+
779
+
## `osc block-storage backup export`
780
+
781
+
Export a backup
782
+
783
+
**Usage:** `osc block-storage backup export <ID>`
784
+
785
+
###### **Arguments:**
786
+
787
+
* `<ID>` — id parameter for /v3/backups/{id}/export_record API
* `--backup-service <BACKUP_SERVICE>` — The service used to perform the backup
812
+
* `--backup-url <BACKUP_URL>` — An identifier string to locate the backup
813
+
814
+
815
+
816
+
## `osc block-storage backup list`
817
+
818
+
Returns a detailed list of backups
819
+
820
+
**Usage:** `osc block-storage backup list [OPTIONS]`
821
+
822
+
###### **Options:**
823
+
824
+
* `--all-tenants <ALL_TENANTS>` — Shows details for all project. Admin only
825
+
826
+
Possible values: `true`, `false`
827
+
828
+
* `--limit <LIMIT>` — Requests a page size of items. Returns a number of items up to a limit value. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request
829
+
* `--marker <MARKER>` — The ID of the last-seen item. Use the limit parameter to make an initial limited request and use the ID of the last-seen item from the response as the marker parameter value in a subsequent limited request
830
+
* `--offset <OFFSET>` — Used in conjunction with limit to return a slice of items. offset is where to start in the list
831
+
* `--sort <SORT>` — Comma-separated list of sort keys and optional sort directions in the form of \< key > \[: \< direction > \]. A valid direction is asc (ascending) or desc (descending)
832
+
* `--sort-dir <SORT_DIR>` — Sorts by one or more sets of attribute and sort direction combinations. If you omit the sort direction in a set, default is desc. Deprecated in favour of the combined sort parameter
833
+
* `--sort-key <SORT_KEY>` — Sorts by an attribute. A valid value is name, status, container_format, disk_format, size, id, created_at, or updated_at. Default is created_at. The API uses the natural sorting direction of the sort_key attribute value. Deprecated in favour of the combined sort parameter
834
+
* `--with-count <WITH_COUNT>` — Whether to show count in API response or not, default is False
835
+
836
+
Possible values: `true`, `false`
837
+
838
+
* `--max-items <MAX_ITEMS>` — Total limit of entities count to return. Use this when there are too many entries
* `--image-ref <IMAGE_REF>` — The UUID of the image from which you want to create the volume. Required to create a bootable volume
695
949
* `--metadata <key=value>` — One or more metadata key and value pairs to be associated with the new volume
696
-
* `--multiattach <MULTIATTACH>` — To enable this volume to attach to more than one server, set this value to `true`. Default is `false`. Note that support for multiattach volumes depends on the volume type being used. See [valid boolean values](#valid-boolean-values)
950
+
* `--multiattach <MULTIATTACH>`
697
951
698
952
Possible values: `true`, `false`
699
953
@@ -726,7 +980,7 @@ Creates a new volume.
726
980
* `--image-id <IMAGE_ID>`
727
981
* `--image-ref <IMAGE_REF>` — The UUID of the image from which you want to create the volume. Required to create a bootable volume
728
982
* `--metadata <key=value>` — One or more metadata key and value pairs to be associated with the new volume
729
-
* `--multiattach <MULTIATTACH>` — To enable this volume to attach to more than one server, set this value to `true`. Default is `false`. Note that support for multiattach volumes depends on the volume type being used. See [valid boolean values](#valid-boolean-values)
983
+
* `--multiattach <MULTIATTACH>`
730
984
731
985
Possible values: `true`, `false`
732
986
@@ -758,7 +1012,7 @@ Creates a new volume.
758
1012
* `--image-id <IMAGE_ID>`
759
1013
* `--image-ref <IMAGE_REF>` — The UUID of the image from which you want to create the volume. Required to create a bootable volume
760
1014
* `--metadata <key=value>` — One or more metadata key and value pairs to be associated with the new volume
761
-
* `--multiattach <MULTIATTACH>` — To enable this volume to attach to more than one server, set this value to `true`. Default is `false`. Note that support for multiattach volumes depends on the volume type being used. See [valid boolean values](#valid-boolean-values)
1015
+
* `--multiattach <MULTIATTACH>`
762
1016
763
1017
Possible values: `true`, `false`
764
1018
@@ -789,7 +1043,7 @@ Creates a new volume.
789
1043
* `--image-id <IMAGE_ID>`
790
1044
* `--image-ref <IMAGE_REF>` — The UUID of the image from which you want to create the volume. Required to create a bootable volume
791
1045
* `--metadata <key=value>` — One or more metadata key and value pairs to be associated with the new volume
792
-
* `--multiattach <MULTIATTACH>` — To enable this volume to attach to more than one server, set this value to `true`. Default is `false`. Note that support for multiattach volumes depends on the volume type being used. See [valid boolean values](#valid-boolean-values)
0 commit comments