Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating and updating Identity objects via the REST API.
Functions ¶
func GetAttrs ¶
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.
Types ¶
type Registry ¶
type Registry interface {
// ListIdentities obtains a list of Identities having labels which match selector.
ListIdentities(ctx apirequest.Context, options *metainternal.ListOptions) (*userapi.IdentityList, error)
// GetIdentity returns a specific Identity
GetIdentity(ctx apirequest.Context, name string, options *metav1.GetOptions) (*userapi.Identity, error)
// CreateIdentity creates a Identity
CreateIdentity(ctx apirequest.Context, Identity *userapi.Identity) (*userapi.Identity, error)
// UpdateIdentity updates an existing Identity
UpdateIdentity(ctx apirequest.Context, Identity *userapi.Identity) (*userapi.Identity, error)
}
Registry is an interface implemented by things that know how to store Identity objects.
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
Source Files
¶
- registry.go
- strategy.go
Click to show internal directories.
Click to hide internal directories.