We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99dfe55 commit bba1cb5Copy full SHA for bba1cb5
openstack/image/v2/images/types.go
@@ -13,10 +13,14 @@ const (
13
// been reserved for an image in the image registry.
14
ImageStatusQueued ImageStatus = "queued"
15
16
- // ImageStatusSaving denotes that an image’s raw data is currently being
+ // ImageStatusSaving denotes that an image's raw data is currently being
17
// uploaded to Glance
18
ImageStatusSaving ImageStatus = "saving"
19
20
+ // ImageStatusUploading denotes that an image's raw data is currently being
21
+ // uploaded to Glance through the upload process
22
+ ImageStatusUploading ImageStatus = "uploading"
23
+
24
// ImageStatusActive denotes an image that is fully available in Glance.
25
ImageStatusActive ImageStatus = "active"
26
0 commit comments