group

package
v1.4.0-alpha.0 Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2016 License: Apache-2.0 Imports: 11 Imported by: 0

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

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 *api.Group) fields.Set

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

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

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.StandardStorage
}

Storage is an interface for a standard REST Storage backend

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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