gcs: Storage class object header support - fixes #3043

This commit is contained in:
Laurens Janssen 2020-12-03 09:52:12 +01:00 committed by Nick Craig-Wood
parent cb16f42075
commit 6ab6c8eefa
2 changed files with 3 additions and 0 deletions

View File

@ -1091,6 +1091,8 @@ func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, op
object.ContentLanguage = value
case "content-type":
object.ContentType = value
case "x-goog-storage-class":
object.StorageClass = value
default:
const googMetaPrefix = "x-goog-meta-"
if strings.HasPrefix(lowerKey, googMetaPrefix) {

View File

@ -232,6 +232,7 @@ flag. Google Cloud Storage supports the headers as described in the
- Content-Encoding
- Content-Language
- Content-Type
- X-Goog-Storage-Class
- X-Goog-Meta-
Eg `--header-upload "Content-Type text/potato"`