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 OAuthClientAuthorization objects objects via the REST API.
Functions ¶
func SelectableFields ¶
func SelectableFields(obj *api.OAuthClientAuthorization) labels.Set
SelectableFields returns a label set that represents the object
Types ¶
type Registry ¶
type Registry interface {
// ClientAuthorizationName returns the name of the OAuthClientAuthorization for the given user name and client name
ClientAuthorizationName(userName, clientName string) string
// ListClientAuthorizations obtains a list of client auths that match a selector.
ListClientAuthorizations(ctx kapi.Context, selector labels.Selector) (*api.OAuthClientAuthorizationList, error)
// GetClientAuthorization retrieves a specific client auth.
GetClientAuthorization(ctx kapi.Context, name string) (*api.OAuthClientAuthorization, error)
// CreateClientAuthorization creates a new client auth.
CreateClientAuthorization(ctx kapi.Context, client *api.OAuthClientAuthorization) (*api.OAuthClientAuthorization, error)
// UpdateClientAuthorization updates a client auth.
UpdateClientAuthorization(ctx kapi.Context, client *api.OAuthClientAuthorization) (*api.OAuthClientAuthorization, error)
// DeleteClientAuthorization deletes a client auth.
DeleteClientAuthorization(ctx kapi.Context, name string) error
}
Registry is an interface for things that know how to store OAuthClientAuthorization 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.