Documentation
¶
Overview ¶
Package endpoint provides Registry interface and it's RESTStorage implementation for storing Endpoint api objects.
Index ¶
- type REST
- func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)
- func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error)
- func (rs REST) New() runtime.Object
- func (rs *REST) Update(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Watch(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, 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 adapts endpoints into apiserver's RESTStorage model.
func NewREST ¶
func NewREST(registry Registry) *REST
NewREST returns a new apiserver.RESTStorage implementation for endpoints
func (*REST) Create ¶
func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
Create satisfies the RESTStorage interface.
func (*REST) Delete ¶
func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error)
Delete satisfies the RESTStorage interface but is unimplemented.
func (*REST) Get ¶
func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)
Get satisfies the RESTStorage interface.
func (*REST) List ¶
func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error)
List satisfies the RESTStorage interface.
type Registry ¶
type Registry interface {
ListEndpoints(ctx api.Context) (*api.EndpointsList, error)
GetEndpoints(ctx api.Context, name string) (*api.Endpoints, error)
WatchEndpoints(ctx api.Context, labels, fields labels.Selector, resourceVersion string) (watch.Interface, error)
UpdateEndpoints(ctx api.Context, e *api.Endpoints) error
}
Registry is an interface for things that know how to store endpoints.
Click to show internal directories.
Click to hide internal directories.