Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating Group objects via the REST API.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes
func Matcher ¶ added in v1.0.8
Matcher returns a generic matcher for a given label and field selector.
Types ¶
type Registry ¶
type Registry interface { // ListGroups obtains a list of groups having labels which match selector. ListGroups(ctx apirequest.Context, options *metainternal.ListOptions) (*userapi.GroupList, error) // GetGroup returns a specific group GetGroup(ctx apirequest.Context, name string, options *metav1.GetOptions) (*userapi.Group, error) // CreateGroup creates a group CreateGroup(ctx apirequest.Context, group *userapi.Group) (*userapi.Group, error) // UpdateGroup updates an existing group UpdateGroup(ctx apirequest.Context, group *userapi.Group) (*userapi.Group, error) // DeleteGroup deletes a name. DeleteGroup(ctx apirequest.Context, name string) error // WatchGroups watches groups. WatchGroups(ctx apirequest.Context, options *metainternal.ListOptions) (watch.Interface, error) }
Registry is an interface implemented by things that know how to store Group objects.
type Storage ¶
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.