forked from TrueCloudLab/frostfs-api-go
732dd51b1b
I knew one day `sed` would save me an hour of manual work: ``` sed -i -n -e ' s/) Set/) Set/ p t setter b end :setter n s/nil/nil/ t hasif p b end :hasif n :loop p n s/}/}/ t end b loop :end ' $@ goimports -w $@ ``` Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package container
|
|
|
|
import (
|
|
netmap "github.com/nspcc-dev/neofs-api-go/v2/netmap/grpc"
|
|
refs "github.com/nspcc-dev/neofs-api-go/v2/refs/grpc"
|
|
)
|
|
|
|
// SetKey sets key to the container attribute.
|
|
func (m *Container_Attribute) SetKey(v string) {
|
|
m.Key = v
|
|
}
|
|
|
|
// SetValue sets value of the container attribute.
|
|
func (m *Container_Attribute) SetValue(v string) {
|
|
m.Value = v
|
|
}
|
|
|
|
// SetOwnerId sets identifier of the container owner,
|
|
func (m *Container) SetOwnerId(v *refs.OwnerID) {
|
|
m.OwnerId = v
|
|
}
|
|
|
|
// SetNonce sets nonce of the container structure.
|
|
func (m *Container) SetNonce(v []byte) {
|
|
m.Nonce = v
|
|
}
|
|
|
|
// SetBasicAcl sets basic ACL of the container.
|
|
func (m *Container) SetBasicAcl(v uint32) {
|
|
m.BasicAcl = v
|
|
}
|
|
|
|
// SetAttributes sets list of the container attributes.
|
|
func (m *Container) SetAttributes(v []*Container_Attribute) {
|
|
m.Attributes = v
|
|
}
|
|
|
|
// SetPlacementPolicy sets placement policy of the container.
|
|
func (m *Container) SetPlacementPolicy(v *netmap.PlacementPolicy) {
|
|
m.PlacementPolicy = v
|
|
}
|
|
|
|
// SetVersion sets version of the container.
|
|
func (m *Container) SetVersion(v *refs.Version) {
|
|
m.Version = v
|
|
}
|