group

package
v1.0.5 Latest Latest
Warning

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

Go to latest
Published: Aug 24, 2015 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 GroupToSelectableFields

func GroupToSelectableFields(group *api.Group) labels.Set

GroupToSelectableFields returns a label set that represents the object

func MatchGroup

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

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

Types

type Registry

type Registry interface {
	// ListGroups obtains a list of groups having labels which match selector.
	ListGroups(ctx kapi.Context, selector labels.Selector, field fields.Selector) (*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, label labels.Selector, field fields.Selector, resourceVersion string) (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