user

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 18, 2015 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = userStrategy{kapi.Scheme}

Strategy is the default logic that applies when creating and updating User objects via the REST API.

Functions

func MatchUser

func MatchUser(label labels.Selector, field fields.Selector) generic.Matcher

MatchUser returns a generic matcher for a given label and field selector.

func UserToSelectableFields

func UserToSelectableFields(user *api.User) labels.Set

UserToSelectableFields returns a label set that represents the object

Types

type Registry

type Registry interface {
	// ListUsers obtains a list of users having labels which match selector.
	ListUsers(ctx kapi.Context, selector labels.Selector) (*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.

func NewRegistry

func NewRegistry(s Storage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL