forked from TrueCloudLab/frostfs-http-gw
13 lines
324 B
Go
13 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
|
||
|
}
|