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 ¶
func SelectableFields ¶
func SelectableFields(policy *authorizationapi.Policy) fields.Set
SelectableFields returns a label set that represents the object
Types ¶
type Registry ¶
type Registry interface {
	// ListPolicies obtains list of policies that match a selector.
	ListPolicies(ctx kapi.Context, label labels.Selector, field fields.Selector) (*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 ¶
type Storage interface {
	rest.StandardStorage
}
    Storage is an interface for a standard REST Storage backend
type WatchingRegistry ¶
type WatchingRegistry interface {
	Registry
	// WatchPolicies watches policies.
	WatchPolicies(ctx kapi.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
}
    func NewRegistry ¶
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.