user

package
v3.6.1+incompatible Latest Latest
Warning

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

Go to latest
Published: Oct 22, 2017 License: Apache-2.0 Imports: 13 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 GetAttrs

func GetAttrs(o runtime.Object) (labels.Set, fields.Set, error)

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.

func SelectableFields added in v1.4.0

func SelectableFields(obj *userapi.User) fields.Set

SelectableFields returns a field set that can be used for filter selection

Types

type Registry

type Registry interface {
	// ListUsers obtains a list of users having labels which match selector.
	ListUsers(ctx apirequest.Context, options *metainternal.ListOptions) (*userapi.UserList, error)
	// GetUser returns a specific user
	GetUser(ctx apirequest.Context, name string, options *metav1.GetOptions) (*userapi.User, error)
	// CreateUser creates a user
	CreateUser(ctx apirequest.Context, user *userapi.User) (*userapi.User, error)
	// UpdateUser updates an existing user
	UpdateUser(ctx apirequest.Context, user *userapi.User) (*userapi.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 apirequest.Context, obj runtime.Object) (runtime.Object, error)
	Update(ctx apirequest.Context, name string, objInfo rest.UpdatedObjectInfo) (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