Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating User objects via the REST API.
Functions ¶
Types ¶
type Registry ¶
type Registry interface {
// ListUsers obtains a list of users having labels which match selector.
ListUsers(ctx kapi.Context, options *kapi.ListOptions) (*api.UserList, error)
// GetUser returns a specific user
GetUser(ctx kapi.Context, name string) (*api.User, error)
// CreateUser creates a user
CreateUser(ctx kapi.Context, user *api.User) (*api.User, error)
// UpdateUser updates an existing user
UpdateUser(ctx kapi.Context, user *api.User) (*api.User, error)
}
Registry is an interface implemented by things that know how to store User objects.
type Storage ¶
type Storage interface {
rest.Lister
rest.Getter
Create(ctx kapi.Context, obj runtime.Object) (runtime.Object, error)
Update(ctx kapi.Context, obj runtime.Object) (runtime.Object, bool, error)
}
Storage is an interface for a standard REST Storage backend TODO: move me somewhere common
Source Files
¶
- registry.go
- strategy.go
Click to show internal directories.
Click to hide internal directories.