 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating ClusterPolicy objects.
Functions ¶
func Matcher ¶
Matcher returns a generic matcher for a given label and field selector.
Types ¶
type ReadOnlyClusterPolicy ¶ added in v1.3.0
type ReadOnlyClusterPolicy struct {
	Registry
}
    func (ReadOnlyClusterPolicy) Get ¶ added in v1.3.0
func (s ReadOnlyClusterPolicy) Get(name string) (*authorizationapi.ClusterPolicy, error)
func (ReadOnlyClusterPolicy) List ¶ added in v1.3.0
func (s ReadOnlyClusterPolicy) List(options kapi.ListOptions) (*authorizationapi.ClusterPolicyList, error)
type ReadOnlyClusterPolicyInterface ¶ added in v1.3.0
type ReadOnlyClusterPolicyInterface interface {
	List(options kapi.ListOptions) (*authorizationapi.ClusterPolicyList, error)
	Get(name string) (*authorizationapi.ClusterPolicy, error)
}
    type Registry ¶
type Registry interface {
	// ListClusterPolicies obtains list of policies that match a selector.
	ListClusterPolicies(ctx kapi.Context, options *kapi.ListOptions) (*authorizationapi.ClusterPolicyList, error)
	// GetClusterPolicy retrieves a specific policy.
	GetClusterPolicy(ctx kapi.Context, id string) (*authorizationapi.ClusterPolicy, error)
	// CreateClusterPolicy creates a new policy.
	CreateClusterPolicy(ctx kapi.Context, policy *authorizationapi.ClusterPolicy) error
	// UpdateClusterPolicy updates a policy.
	UpdateClusterPolicy(ctx kapi.Context, policy *authorizationapi.ClusterPolicy) error
	// DeleteClusterPolicy deletes a policy.
	DeleteClusterPolicy(ctx kapi.Context, id string) error
}
    Registry is an interface for things that know how to store ClusterPolicies.
type Storage ¶
type Storage interface {
	rest.StandardStorage
}
    Storage is an interface for a standard REST Storage backend
type WatchingRegistry ¶
type WatchingRegistry interface {
	Registry
	// WatchClusterPolicies watches policies.
	WatchClusterPolicies(ctx kapi.Context, options *kapi.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
      ¶
      Source Files
      ¶
    
- registry.go
- strategy.go
 Click to show internal directories. 
   Click to hide internal directories.