Skip to content

Commit bba1cb5

Browse files
committed
Add image uploading status
1 parent 99dfe55 commit bba1cb5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

openstack/image/v2/images/types.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ const (
1313
// been reserved for an image in the image registry.
1414
ImageStatusQueued ImageStatus = "queued"
1515

16-
// ImageStatusSaving denotes that an images raw data is currently being
16+
// ImageStatusSaving denotes that an image's raw data is currently being
1717
// uploaded to Glance
1818
ImageStatusSaving ImageStatus = "saving"
1919

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+
2024
// ImageStatusActive denotes an image that is fully available in Glance.
2125
ImageStatusActive ImageStatus = "active"
2226

0 commit comments

Comments
 (0)