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 PolicyBinding objects.
Functions ¶
func Matcher ¶ added in v0.4.4
Matcher returns a generic matcher for a given label and field selector.
func NewEmptyPolicyBinding ¶
func NewEmptyPolicyBinding(namespace, policyNamespace string) *authorizationapi.PolicyBinding
func SelectableFields ¶ added in v0.4.4
func SelectableFields(policyBinding *authorizationapi.PolicyBinding) fields.Set
SelectableFields returns a label set that represents the object
Types ¶
type Registry ¶
type Registry interface { // ListPolicyBindings obtains list of policyBindings that match a selector. ListPolicyBindings(ctx kapi.Context, label labels.Selector, field fields.Selector) (*authorizationapi.PolicyBindingList, error) // GetPolicyBinding retrieves a specific policyBinding. GetPolicyBinding(ctx kapi.Context, id string) (*authorizationapi.PolicyBinding, error) // CreatePolicyBinding creates a new policyBinding. CreatePolicyBinding(ctx kapi.Context, policyBinding *authorizationapi.PolicyBinding) error // UpdatePolicyBinding updates a policyBinding. UpdatePolicyBinding(ctx kapi.Context, policyBinding *authorizationapi.PolicyBinding) error // DeletePolicyBinding deletes a policyBinding. DeletePolicyBinding(ctx kapi.Context, id string) error // WatchPolicyBindings watches policyBindings. WatchPolicyBindings(ctx kapi.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) }
Registry is an interface for things that know how to store PolicyBindings.
func NewRegistry ¶ added in v0.4.4
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
type Storage ¶ added in v0.4.4
type Storage interface { rest.StandardStorage }
Storage is an interface for a standard REST Storage backend
Click to show internal directories.
Click to hide internal directories.