Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = strategy{kapi.Scheme}
Strategy is the default logic that applies when creating and updating Policy objects.
Functions ¶
Types ¶
type Registry ¶
type Registry interface {
// ListPolicies obtains list of policies that match a selector.
ListPolicies(ctx kapi.Context, options *kapi.ListOptions) (*authorizationapi.PolicyList, error)
// GetPolicy retrieves a specific policy.
GetPolicy(ctx kapi.Context, id string) (*authorizationapi.Policy, error)
// CreatePolicy creates a new policy.
CreatePolicy(ctx kapi.Context, policy *authorizationapi.Policy) error
// UpdatePolicy updates a policy.
UpdatePolicy(ctx kapi.Context, policy *authorizationapi.Policy) error
// DeletePolicy deletes a policy.
DeletePolicy(ctx kapi.Context, id string) error
}
Registry is an interface for things that know how to store Policies.
type Storage ¶ added in v0.4.4
type Storage interface {
rest.StandardStorage
}
Storage is an interface for a standard REST Storage backend
type WatchingRegistry ¶ added in v0.5.1
type WatchingRegistry interface {
Registry
// WatchPolicies watches policies.
WatchPolicies(ctx kapi.Context, options *kapi.ListOptions) (watch.Interface, error)
}
func NewRegistry ¶ added in v0.4.4
func NewRegistry(s Storage) WatchingRegistry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.