Documentation ¶
Index ¶
- func GetAttrs(o runtime.Object) (labels.Set, fields.Set, error)
- func Matcher(label labels.Selector, field fields.Selector) kstorage.SelectionPredicate
- func NewStrategy(clientGetter oauthclient.Getter) strategy
- func SelectableFields(obj *oauthapi.OAuthAuthorizeToken) fields.Set
- type Registry
- type Storage
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewStrategy ¶ added in v1.3.0
func NewStrategy(clientGetter oauthclient.Getter) strategy
func SelectableFields ¶
func SelectableFields(obj *oauthapi.OAuthAuthorizeToken) fields.Set
SelectableFields returns a field set that can be used for filter selection
Types ¶
type Registry ¶
type Registry interface { // ListAuthorizeTokens obtains a list of authorize tokens that match a selector. ListAuthorizeTokens(ctx apirequest.Context, options *metainternal.ListOptions) (*oauthapi.OAuthAuthorizeTokenList, error) // GetAuthorizeToken retrieves a specific authorize token. GetAuthorizeToken(ctx apirequest.Context, name string, options *metav1.GetOptions) (*oauthapi.OAuthAuthorizeToken, error) // CreateAuthorizeToken creates a new authorize token. CreateAuthorizeToken(ctx apirequest.Context, token *oauthapi.OAuthAuthorizeToken) (*oauthapi.OAuthAuthorizeToken, error) // DeleteAuthorizeToken deletes an authorize token. DeleteAuthorizeToken(ctx apirequest.Context, name string) error }
Registry is an interface for things that know how to store AuthorizeToken objects.
func NewRegistry ¶
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.