forked from TrueCloudLab/frostfs-http-gw
Prioritize getting s3 object with the key, which equals to valid FrostFS OID, rather than getting non-existent object with OID via native protocol for GET and HEAD requests Signed-off-by: Nikita Zinkevich <n.zinkevich@yadro.com>
12 lines
324 B
Go
12 lines
324 B
Go
package data
|
|
|
|
import (
|
|
cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
)
|
|
|
|
type BucketInfo struct {
|
|
Name string // container name from system attribute
|
|
Zone string // container zone from system attribute
|
|
CID cid.ID
|
|
HomomorphicHashDisabled bool
|
|
}
|