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 ClusterPolicy objects.
Functions ¶
func NewSimulatedRegistry ¶
Types ¶
type ReadOnlyClusterPolicy ¶
type ReadOnlyClusterPolicy struct {
Registry Registry
}
func (ReadOnlyClusterPolicy) Get ¶
func (s ReadOnlyClusterPolicy) Get(name string, options *metav1.GetOptions) (*authorizationapi.ClusterPolicy, error)
func (ReadOnlyClusterPolicy) List ¶
func (s ReadOnlyClusterPolicy) List(options metav1.ListOptions) (*authorizationapi.ClusterPolicyList, error)
type ReadOnlyClusterPolicyClientShim ¶
type ReadOnlyClusterPolicyClientShim struct {
ReadOnlyClusterPolicy ReadOnlyClusterPolicy
}
func (*ReadOnlyClusterPolicyClientShim) Get ¶
func (r *ReadOnlyClusterPolicyClientShim) Get(name string) (*authorizationapi.ClusterPolicy, error)
func (*ReadOnlyClusterPolicyClientShim) List ¶
func (r *ReadOnlyClusterPolicyClientShim) List(label labels.Selector) ([]*authorizationapi.ClusterPolicy, error)
type ReadOnlyClusterPolicyInterface ¶
type ReadOnlyClusterPolicyInterface interface { List(options metainternal.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 apirequest.Context, options *metainternal.ListOptions) (*authorizationapi.ClusterPolicyList, error) // GetClusterPolicy retrieves a specific policy. GetClusterPolicy(ctx apirequest.Context, id string, options *metav1.GetOptions) (*authorizationapi.ClusterPolicy, error) // CreateClusterPolicy creates a new policy. CreateClusterPolicy(ctx apirequest.Context, policy *authorizationapi.ClusterPolicy) error // UpdateClusterPolicy updates a policy. UpdateClusterPolicy(ctx apirequest.Context, policy *authorizationapi.ClusterPolicy) error // DeleteClusterPolicy deletes a policy. DeleteClusterPolicy(ctx apirequest.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 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.
Click to show internal directories.
Click to hide internal directories.