Some checks failed
/ DCO (pull_request) Successful in 28s
/ Builds (pull_request) Failing after 56s
/ Vulncheck (pull_request) Successful in 1m46s
/ OCI image (pull_request) Successful in 2m21s
/ Lint (pull_request) Successful in 2m8s
/ Tests (pull_request) Successful in 51s
/ Integration tests (pull_request) Failing after 6m21s
Signed-off-by: Nikita Zinkevich <n.zinkevich@yadro.com>
21 lines
619 B
Go
21 lines
619 B
Go
package data
|
|
|
|
import (
|
|
"time"
|
|
|
|
cid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
|
)
|
|
|
|
type BucketInfo struct {
|
|
Name string // container name from system attribute
|
|
Zone string // container zone from system attribute
|
|
CID cid.ID
|
|
Owner user.ID
|
|
Created time.Time
|
|
LocationConstraint string
|
|
ObjectLockEnabled bool
|
|
HomomorphicHashDisabled bool
|
|
PlacementPolicy netmap.PlacementPolicy
|
|
}
|