Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating Policy objects.
Functions ¶
This section is empty.
Types ¶
type ReadOnlyPolicyListerNamespacer ¶
type ReadOnlyPolicyListerNamespacer struct {
	Registry Registry
}
    func (ReadOnlyPolicyListerNamespacer) List ¶
func (s ReadOnlyPolicyListerNamespacer) List(label labels.Selector) ([]*authorizationapi.Policy, error)
func (ReadOnlyPolicyListerNamespacer) Policies ¶
func (s ReadOnlyPolicyListerNamespacer) Policies(namespace string) authorizationlister.PolicyNamespaceLister
type Registry ¶
type Registry interface {
	// ListPolicies obtains list of policies that match a selector.
	ListPolicies(ctx apirequest.Context, options *metainternal.ListOptions) (*authorizationapi.PolicyList, error)
	// GetPolicy retrieves a specific policy.
	GetPolicy(ctx apirequest.Context, id string, options *metav1.GetOptions) (*authorizationapi.Policy, error)
	// CreatePolicy creates a new policy.
	CreatePolicy(ctx apirequest.Context, policy *authorizationapi.Policy) error
	// UpdatePolicy updates a policy.
	UpdatePolicy(ctx apirequest.Context, policy *authorizationapi.Policy) error
	// DeletePolicy deletes a policy.
	DeletePolicy(ctx apirequest.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 apirequest.Context, options *metainternal.ListOptions) (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.
      
      Source Files
      ¶
    
- registry.go
 - strategy.go
 
 Click to show internal directories. 
   Click to hide internal directories.