Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = strategy{kapi.Scheme}
Strategy is the default logic that applies when creating or updating OAuthClient objects objects via the REST API.
Functions ¶
Types ¶
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.
Click to show internal directories.
Click to hide internal directories.