gcs: Storage class object header support - fixes #3043
This commit is contained in:
parent
cb16f42075
commit
6ab6c8eefa
2 changed files with 3 additions and 0 deletions
|
@ -1091,6 +1091,8 @@ func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, op
|
||||||
object.ContentLanguage = value
|
object.ContentLanguage = value
|
||||||
case "content-type":
|
case "content-type":
|
||||||
object.ContentType = value
|
object.ContentType = value
|
||||||
|
case "x-goog-storage-class":
|
||||||
|
object.StorageClass = value
|
||||||
default:
|
default:
|
||||||
const googMetaPrefix = "x-goog-meta-"
|
const googMetaPrefix = "x-goog-meta-"
|
||||||
if strings.HasPrefix(lowerKey, googMetaPrefix) {
|
if strings.HasPrefix(lowerKey, googMetaPrefix) {
|
||||||
|
|
|
@ -232,6 +232,7 @@ flag. Google Cloud Storage supports the headers as described in the
|
||||||
- Content-Encoding
|
- Content-Encoding
|
||||||
- Content-Language
|
- Content-Language
|
||||||
- Content-Type
|
- Content-Type
|
||||||
|
- X-Goog-Storage-Class
|
||||||
- X-Goog-Meta-
|
- X-Goog-Meta-
|
||||||
|
|
||||||
Eg `--header-upload "Content-Type text/potato"`
|
Eg `--header-upload "Content-Type text/potato"`
|
||||||
|
|
Loading…
Reference in a new issue