Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = groupStrategy{kapi.Scheme}
Strategy is the default logic that applies when creating and updating Group objects via the REST API.
Functions ¶
Types ¶
type Registry ¶
type Registry interface { // ListGroups obtains a list of groups having labels which match selector. ListGroups(ctx kapi.Context, options *kapi.ListOptions) (*api.GroupList, error) // GetGroup returns a specific group GetGroup(ctx kapi.Context, name string) (*api.Group, error) // CreateGroup creates a group CreateGroup(ctx kapi.Context, group *api.Group) (*api.Group, error) // UpdateGroup updates an existing group UpdateGroup(ctx kapi.Context, group *api.Group) (*api.Group, error) // DeleteGroup deletes a name. DeleteGroup(ctx kapi.Context, name string) error // WatchGroups watches groups. WatchGroups(ctx kapi.Context, options *kapi.ListOptions) (watch.Interface, error) }
Registry is an interface implemented by things that know how to store Group objects.
func NewRegistry ¶
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
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.