group

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: 14 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 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.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 apirequest.Context, options *metainternal.ListOptions) (*userapi.GroupList, error)
	// GetGroup returns a specific group
	GetGroup(ctx apirequest.Context, name string, options *metav1.GetOptions) (*userapi.Group, error)
	// CreateGroup creates a group
	CreateGroup(ctx apirequest.Context, group *userapi.Group) (*userapi.Group, error)
	// UpdateGroup updates an existing group
	UpdateGroup(ctx apirequest.Context, group *userapi.Group) (*userapi.Group, error)
	// DeleteGroup deletes a name.
	DeleteGroup(ctx apirequest.Context, name string) error
	// WatchGroups watches groups.
	WatchGroups(ctx apirequest.Context, options *metainternal.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