Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
Strategy is the default logic that applies when creating or updating OAuthClient objects objects via the REST API.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes
func Matcher ¶
Matcher returns a generic matcher for a given label and field selector.
func SelectableFields ¶
func SelectableFields(obj *oauthapi.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 apirequest.Context, name string, options *metav1.GetOptions) (*oauthapi.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 apirequest.Context, options *metainternal.ListOptions) (*oauthapi.OAuthClientList, error)
	// GetClient retrieves a specific client.
	GetClient(ctx apirequest.Context, name string, options *metav1.GetOptions) (*oauthapi.OAuthClient, error)
	// CreateClient creates a new client.
	CreateClient(ctx apirequest.Context, client *oauthapi.OAuthClient) (*oauthapi.OAuthClient, error)
	// UpdateClient updates a client.
	UpdateClient(ctx apirequest.Context, client *oauthapi.OAuthClient) (*oauthapi.OAuthClient, error)
	// DeleteClient deletes a client.
	DeleteClient(ctx apirequest.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.
      
      Source Files
      ¶
    
- registry.go
 - strategy.go