2020-08-13 12:43:47 +00:00
|
|
|
package acl
|
2020-08-12 19:06:10 +00:00
|
|
|
|
|
|
|
import (
|
2020-08-14 16:00:16 +00:00
|
|
|
refs "github.com/nspcc-dev/neofs-api-go/v2/refs/grpc"
|
2020-08-12 19:06:10 +00:00
|
|
|
)
|
|
|
|
|
2020-09-04 07:50:09 +00:00
|
|
|
// SetVersion sets version of EACL rules in table.
|
|
|
|
func (m *EACLTable) SetVersion(v *refs.Version) {
|
|
|
|
if m != nil {
|
|
|
|
m.Version = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-12 19:06:10 +00:00
|
|
|
// SetContainerId sets container identifier of the eACL table.
|
|
|
|
func (m *EACLTable) SetContainerId(v *refs.ContainerID) {
|
|
|
|
if m != nil {
|
|
|
|
m.ContainerId = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetRecords sets record list of the eACL table.
|
|
|
|
func (m *EACLTable) SetRecords(v []*EACLRecord) {
|
|
|
|
if m != nil {
|
|
|
|
m.Records = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOperation sets operation of the eACL record.
|
2020-08-17 11:30:09 +00:00
|
|
|
func (m *EACLRecord) SetOperation(v Operation) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
|
|
|
m.Operation = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAction sets action of the eACL record.
|
2020-08-17 11:30:09 +00:00
|
|
|
func (m *EACLRecord) SetAction(v Action) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
|
|
|
m.Action = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetFilters sets filter list of the eACL record.
|
2020-09-04 07:50:09 +00:00
|
|
|
func (m *EACLRecord) SetFilters(v []*EACLRecord_Filter) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
|
|
|
m.Filters = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTargets sets target list of the eACL record.
|
2020-09-04 07:50:09 +00:00
|
|
|
func (m *EACLRecord) SetTargets(v []*EACLRecord_Target) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
|
|
|
m.Targets = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetHeader sets header type of the eACL filter.
|
2020-09-04 07:50:09 +00:00
|
|
|
func (m *EACLRecord_Filter) SetHeader(v HeaderType) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
2020-09-04 07:50:09 +00:00
|
|
|
m.HeaderType = v
|
2020-08-12 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetMatchType sets match type of the eACL filter.
|
2020-09-04 07:50:09 +00:00
|
|
|
func (m *EACLRecord_Filter) SetMatchType(v MatchType) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
|
|
|
m.MatchType = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 13:55:19 +00:00
|
|
|
// SetKey sets key of the eACL filter.
|
|
|
|
func (m *EACLRecord_Filter) SetKey(v string) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
2020-10-27 13:55:19 +00:00
|
|
|
m.Key = v
|
2020-08-12 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-27 13:55:19 +00:00
|
|
|
// SetValue sets value of the eACL filter.
|
|
|
|
func (m *EACLRecord_Filter) SetValue(v string) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
2020-10-27 13:55:19 +00:00
|
|
|
m.Value = v
|
2020-08-12 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 07:50:09 +00:00
|
|
|
// SetRole sets target group of the eACL target.
|
|
|
|
func (m *EACLRecord_Target) SetRole(v Role) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
2020-09-04 07:50:09 +00:00
|
|
|
m.Role = v
|
2020-08-12 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-19 12:39:13 +00:00
|
|
|
// SetKeys of the eACL target.
|
|
|
|
func (m *EACLRecord_Target) SetKeys(v [][]byte) {
|
2020-08-12 19:06:10 +00:00
|
|
|
if m != nil {
|
2020-10-19 12:39:13 +00:00
|
|
|
m.Keys = v
|
2020-08-12 19:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-20 10:07:35 +00:00
|
|
|
|
|
|
|
// SetEaclTable sets eACL table of the bearer token.
|
|
|
|
func (m *BearerToken_Body) SetEaclTable(v *EACLTable) {
|
|
|
|
if m != nil {
|
|
|
|
m.EaclTable = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetOwnerId sets identifier of the bearer token owner.
|
|
|
|
func (m *BearerToken_Body) SetOwnerId(v *refs.OwnerID) {
|
|
|
|
if m != nil {
|
|
|
|
m.OwnerId = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetLifetime sets lifetime of the bearer token.
|
|
|
|
func (m *BearerToken_Body) SetLifetime(v *BearerToken_Body_TokenLifetime) {
|
|
|
|
if m != nil {
|
|
|
|
m.Lifetime = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetBody sets bearer token body.
|
|
|
|
func (m *BearerToken) SetBody(v *BearerToken_Body) {
|
|
|
|
if m != nil {
|
|
|
|
m.Body = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetSignature sets bearer token signature.
|
|
|
|
func (m *BearerToken) SetSignature(v *refs.Signature) {
|
|
|
|
if m != nil {
|
|
|
|
m.Signature = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetExp sets epoch number of the token expiration.
|
|
|
|
func (m *BearerToken_Body_TokenLifetime) SetExp(v uint64) {
|
|
|
|
if m != nil {
|
|
|
|
m.Exp = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetNbf sets starting epoch number of the token.
|
|
|
|
func (m *BearerToken_Body_TokenLifetime) SetNbf(v uint64) {
|
|
|
|
if m != nil {
|
|
|
|
m.Nbf = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetIat sets the number of the epoch in which the token was issued.
|
|
|
|
func (m *BearerToken_Body_TokenLifetime) SetIat(v uint64) {
|
|
|
|
if m != nil {
|
|
|
|
m.Iat = v
|
|
|
|
}
|
|
|
|
}
|
2021-06-18 12:27:01 +00:00
|
|
|
|
|
|
|
// FromString parses Action from a string representation,
|
|
|
|
// It is a reverse action to String().
|
|
|
|
//
|
|
|
|
// Returns true if s was parsed successfully.
|
|
|
|
func (x *Action) FromString(s string) bool {
|
|
|
|
i, ok := Action_value[s]
|
|
|
|
if ok {
|
|
|
|
*x = Action(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromString parses Role from a string representation,
|
|
|
|
// It is a reverse action to String().
|
|
|
|
//
|
|
|
|
// Returns true if s was parsed successfully.
|
|
|
|
func (x *Role) FromString(s string) bool {
|
|
|
|
i, ok := Role_value[s]
|
|
|
|
if ok {
|
|
|
|
*x = Role(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromString parses Operation from a string representation,
|
|
|
|
// It is a reverse action to String().
|
|
|
|
//
|
|
|
|
// Returns true if s was parsed successfully.
|
|
|
|
func (x *Operation) FromString(s string) bool {
|
|
|
|
i, ok := Operation_value[s]
|
|
|
|
if ok {
|
|
|
|
*x = Operation(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromString parses MatchType from a string representation,
|
|
|
|
// It is a reverse action to String().
|
|
|
|
//
|
|
|
|
// Returns true if s was parsed successfully.
|
|
|
|
func (x *MatchType) FromString(s string) bool {
|
|
|
|
i, ok := MatchType_value[s]
|
|
|
|
if ok {
|
|
|
|
*x = MatchType(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromString parses HeaderType from a string representation,
|
|
|
|
// It is a reverse action to String().
|
|
|
|
//
|
|
|
|
// Returns true if s was parsed successfully.
|
|
|
|
func (x *HeaderType) FromString(s string) bool {
|
|
|
|
i, ok := HeaderType_value[s]
|
|
|
|
if ok {
|
|
|
|
*x = HeaderType(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|