Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Strategy = strategy{kapi.Scheme}
Strategy is the default logic that applies when creating or updating OAuthClient objects 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 ¶
func Matcher(label labels.Selector, field fields.Selector) kstorage.SelectionPredicate
Matcher returns a generic matcher for a given label and field selector.
func SelectableFields ¶
func SelectableFields(obj *api.OAuthClient) fields.Set
SelectableFields returns a field set that can be used for filter selection
Types ¶
type Getter ¶ added in v1.3.0
type Getter interface {
GetClient(ctx kapi.Context, name string) (*api.OAuthClient, error)
}
Getter exposes a way to get a specific client. This is useful for other registries to get scope limitations on particular clients. This interface will make its easier to write a future cache on it
type Registry ¶
type Registry interface {
// ListClients obtains a list of clients that match a selector.
ListClients(ctx kapi.Context, options *kapi.ListOptions) (*api.OAuthClientList, error)
// GetClient retrieves a specific client.
GetClient(ctx kapi.Context, name string) (*api.OAuthClient, error)
// CreateClient creates a new client.
CreateClient(ctx kapi.Context, client *api.OAuthClient) (*api.OAuthClient, error)
// UpdateClient updates a client.
UpdateClient(ctx kapi.Context, client *api.OAuthClient) (*api.OAuthClient, error)
// DeleteClient deletes a client.
DeleteClient(ctx kapi.Context, name string) error
}
Registry is an interface for things that know how to store OAuthClient objects.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.