Documentation ¶
Index ¶
- type REST
- func (s *REST) Create(ctx kapi.Context, obj runtime.Object) (runtime.Object, error)
- func (s *REST) Delete(ctx kapi.Context, id string) (runtime.Object, error)
- func (s *REST) Get(ctx kapi.Context, id string) (runtime.Object, error)
- func (s *REST) List(ctx kapi.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
- func (s *REST) New() runtime.Object
- func (*REST) NewList() runtime.Object
- func (s *REST) Update(ctx kapi.Context, obj runtime.Object) (runtime.Object, bool, error)
- type Registry
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST implements the RESTStorage interface in terms of an Registry.
func (*REST) List ¶
func (s *REST) List(ctx kapi.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
List retrieves a list of ClientAuthorizations that match selector.
type Registry ¶
type Registry interface { ClientAuthorizationName(userName, clientName string) string ListClientAuthorizations(label labels.Selector, field fields.Selector) (*api.OAuthClientAuthorizationList, error) GetClientAuthorization(name string) (*api.OAuthClientAuthorization, error) CreateClientAuthorization(token *api.OAuthClientAuthorization) error UpdateClientAuthorization(token *api.OAuthClientAuthorization) error DeleteClientAuthorization(name string) error }
Registry is an interface for things that know how to store ClientAuthorization objects.
Click to show internal directories.
Click to hide internal directories.