 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Matcher ¶
Matcher returns a generic matcher for a given label and field selector.
func NewStrategy ¶ added in v1.3.0
func NewStrategy(clientGetter oauthclient.Getter) strategy
func SelectableFields ¶
func SelectableFields(obj *api.OAuthAccessToken) fields.Set
SelectableFields returns a field set that can be used for filter selection
Types ¶
type Registry ¶
type Registry interface {
	// ListAccessTokens obtains a list of access tokens that match a selector.
	ListAccessTokens(ctx kapi.Context, options *kapi.ListOptions) (*api.OAuthAccessTokenList, error)
	// GetAccessToken retrieves a specific access token.
	GetAccessToken(ctx kapi.Context, name string) (*api.OAuthAccessToken, error)
	// CreateAccessToken creates a new access token.
	CreateAccessToken(ctx kapi.Context, token *api.OAuthAccessToken) (*api.OAuthAccessToken, error)
	// DeleteAccessToken deletes an access token.
	DeleteAccessToken(ctx kapi.Context, name string) error
}
    Registry is an interface for things that know how to store AccessToken objects.
       Source Files
      ¶
      Source Files
      ¶
    
- registry.go
- strategy.go
 Click to show internal directories. 
   Click to hide internal directories.