kubernetesk8s.io/kubernetes/pkg/registry/endpoint Index | Files

package endpoint

import "k8s.io/kubernetes/pkg/registry/endpoint"

Package endpoint provides Registry interface and it's RESTStorage implementation for storing Endpoint api objects.

Index

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) (runtime.Object, error)

Create satisfies the RESTStorage interface.

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 labels.Selector, field fields.Selector) (runtime.Object, error)

List satisfies the RESTStorage interface.

func (REST) New

func (rs REST) New() runtime.Object

New implements the RESTStorage interface.

func (*REST) NewList

func (*REST) NewList() runtime.Object

func (*REST) Update

func (rs *REST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)

Update satisfies the RESTStorage interface.

func (*REST) Watch

func (rs *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)

Watch returns Endpoint events via a watch.Interface. It implements apiserver.ResourceWatcher.

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 labels.Selector, field fields.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.

Source Files

doc.go registry.go rest.go

Version
v0.13.0
Published
Mar 16, 2015
Platform
js/wasm
Imports
7 packages
Last checked
8 seconds ago

Tools for package owners.