identity

package
v0.5.3 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = identityStrategy{kapi.Scheme}

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

Functions

func IdentityToSelectableFields added in v0.4.2

func IdentityToSelectableFields(identity *api.Identity) labels.Set

IdentityToSelectableFields returns a label set that represents the object

func MatchIdentity added in v0.4.2

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

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

Types

type Registry

type Registry interface {
	// ListIdentities obtains a list of Identities having labels which match selector.
	ListIdentities(ctx kapi.Context, selector labels.Selector) (*api.IdentityList, error)
	// GetIdentity returns a specific Identity
	GetIdentity(ctx kapi.Context, name string) (*api.Identity, error)
	// CreateIdentity creates a Identity
	CreateIdentity(ctx kapi.Context, Identity *api.Identity) (*api.Identity, error)
	// UpdateIdentity updates an existing Identity
	UpdateIdentity(ctx kapi.Context, Identity *api.Identity) (*api.Identity, error)
}

Registry is an interface implemented by things that know how to store Identity objects.

func NewRegistry added in v0.4.2

func NewRegistry(s Storage) Registry

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

type Storage added in v0.4.2

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