Documentation ¶
Index ¶
- Variables
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error)
- func Matcher(label labels.Selector, field fields.Selector) kstorage.SelectionPredicate
- func NewSimulatedRegistry(clusterRegistry Registry) policybinding.Registry
- type ReadOnlyClusterPolicyBinding
- type ReadOnlyClusterPolicyBindingClientShim
- type ReadOnlyClusterPolicyInterface
- type Registry
- type Storage
- type WatchingRegistry
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = strategy{kapi.Scheme}
Strategy is the default logic that applies when creating and updating ClusterPolicyBinding objects.
Functions ¶
func NewSimulatedRegistry ¶
func NewSimulatedRegistry(clusterRegistry Registry) policybinding.Registry
Types ¶
type ReadOnlyClusterPolicyBinding ¶
type ReadOnlyClusterPolicyBinding struct {
Registry
}
func (ReadOnlyClusterPolicyBinding) Get ¶
func (s ReadOnlyClusterPolicyBinding) Get(name string, options *metav1.GetOptions) (*authorizationapi.ClusterPolicyBinding, error)
func (ReadOnlyClusterPolicyBinding) List ¶
func (s ReadOnlyClusterPolicyBinding) List(options metav1.ListOptions) (*authorizationapi.ClusterPolicyBindingList, error)
type ReadOnlyClusterPolicyBindingClientShim ¶
type ReadOnlyClusterPolicyBindingClientShim struct {
ReadOnlyClusterPolicyBinding
}
func (*ReadOnlyClusterPolicyBindingClientShim) Get ¶
func (r *ReadOnlyClusterPolicyBindingClientShim) Get(name string, options metav1.GetOptions) (*authorizationapi.ClusterPolicyBinding, error)
func (*ReadOnlyClusterPolicyBindingClientShim) List ¶
func (r *ReadOnlyClusterPolicyBindingClientShim) List(options metav1.ListOptions) (*authorizationapi.ClusterPolicyBindingList, error)
type ReadOnlyClusterPolicyInterface ¶
type ReadOnlyClusterPolicyInterface interface { List(options metainternal.ListOptions) (*authorizationapi.ClusterPolicyBindingList, error) Get(name string) (*authorizationapi.ClusterPolicyBinding, error) }
type Registry ¶
type Registry interface { // ListClusterPolicyBindings obtains list of policyBindings that match a selector. ListClusterPolicyBindings(ctx apirequest.Context, options *metainternal.ListOptions) (*authorizationapi.ClusterPolicyBindingList, error) // GetClusterPolicyBinding retrieves a specific policyBinding. GetClusterPolicyBinding(ctx apirequest.Context, name string, options *metav1.GetOptions) (*authorizationapi.ClusterPolicyBinding, error) // CreateClusterPolicyBinding creates a new policyBinding. CreateClusterPolicyBinding(ctx apirequest.Context, policyBinding *authorizationapi.ClusterPolicyBinding) error // UpdateClusterPolicyBinding updates a policyBinding. UpdateClusterPolicyBinding(ctx apirequest.Context, policyBinding *authorizationapi.ClusterPolicyBinding) error // DeleteClusterPolicyBinding deletes a policyBinding. DeleteClusterPolicyBinding(ctx apirequest.Context, name string) error }
Registry is an interface for things that know how to store ClusterPolicyBindings.
type Storage ¶
type Storage interface { rest.StandardStorage }
Storage is an interface for a standard REST Storage backend
type WatchingRegistry ¶
type WatchingRegistry interface { Registry // WatchClusterPolicyBindings watches policyBindings. WatchClusterPolicyBindings(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.