Airat Arifullin
9e825239ac
All checks were successful
DCO action / DCO (pull_request) Successful in 57s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m31s
Tests and linters / Lint (pull_request) Successful in 1m42s
Tests and linters / Tests (1.19) (pull_request) Successful in 1m41s
Tests and linters / Tests with -race (pull_request) Successful in 2m17s
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
70 lines
1.8 KiB
Go
70 lines
1.8 KiB
Go
package acl
|
|
|
|
import (
|
|
acl "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/acl/grpc"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
|
|
)
|
|
|
|
func (f *HeaderFilter) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(f)
|
|
}
|
|
|
|
func (f *HeaderFilter) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(f, data, new(acl.EACLRecord_Filter))
|
|
}
|
|
|
|
func (t *Target) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(t)
|
|
}
|
|
|
|
func (t *Target) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(t, data, new(acl.EACLRecord_Target))
|
|
}
|
|
|
|
func (a *APEOverride) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(a)
|
|
}
|
|
|
|
func (a *APEOverride) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(a, data, new(acl.BearerToken_Body_APEOverride))
|
|
}
|
|
|
|
func (r *Record) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(r)
|
|
}
|
|
|
|
func (r *Record) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(r, data, new(acl.EACLRecord))
|
|
}
|
|
|
|
func (t *Table) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(t)
|
|
}
|
|
|
|
func (t *Table) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(t, data, new(acl.EACLTable))
|
|
}
|
|
|
|
func (l *TokenLifetime) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(l)
|
|
}
|
|
|
|
func (l *TokenLifetime) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(l, data, new(acl.BearerToken_Body_TokenLifetime))
|
|
}
|
|
|
|
func (bt *BearerTokenBody) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(bt)
|
|
}
|
|
|
|
func (bt *BearerTokenBody) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(bt, data, new(acl.BearerToken_Body))
|
|
}
|
|
|
|
func (bt *BearerToken) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(bt)
|
|
}
|
|
|
|
func (bt *BearerToken) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(bt, data, new(acl.BearerToken))
|
|
}
|