forked from TrueCloudLab/frostfs-http-gw
Denis Kirillov
9a5a2239bd
Mainly it was added because we need to know if TZ hashing is disabled or not for container Signed-off-by: Denis Kirillov <d.kirillov@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
|
|
}
|