forked from TrueCloudLab/policy-engine
a08f600d97
* Create pkg package * Move chain-relates structures to pkg/chain package * Move inmemory and interface files to pkg/engine package * Move resource structures to pkg/resource package * Move GlobMatch to util package Signed-off-by: Airat Arifullin <aarifullin@yadro.com>
19 lines
620 B
Go
19 lines
620 B
Go
package resource
|
|
|
|
// Request represents generic named resource (bucket, container etc.).
|
|
// Name is resource depenent but should be globally unique for any given
|
|
// type of resource.
|
|
type Request interface {
|
|
// Name is the operation name, such as Object.Put. Must not include wildcards.
|
|
Operation() string
|
|
// Property returns request properties, such as IP address of the origin.
|
|
Property(string) string
|
|
// Resource returns resource the operation is applied to.
|
|
Resource() Resource
|
|
}
|
|
|
|
// Resource represents the resource operation is applied to.
|
|
type Resource interface {
|
|
Name() string
|
|
Property(string) string
|
|
}
|