endpoint

package
v0.0.0-...-ac8ee45 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 17, 2014 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

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

Index

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

Create satisfies the RESTStorage interface but is unimplemented.

func (*REST) Delete

func (rs *REST) Delete(id string) (<-chan runtime.Object, error)

Delete satisfies the RESTStorage interface but is unimplemented.

func (*REST) Get

func (rs *REST) Get(id string) (runtime.Object, error)

Get satisfies the RESTStorage interface.

func (*REST) List

func (rs *REST) List(selector labels.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) Update

func (rs *REST) Update(obj runtime.Object) (<-chan runtime.Object, error)

Update satisfies the RESTStorage interface but is unimplemented.

func (*REST) Watch

func (rs *REST) Watch(label, field labels.Selector, resourceVersion uint64) (watch.Interface, error)

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

type Registry

type Registry interface {
	ListEndpoints() (*api.EndpointsList, error)
	GetEndpoints(name string) (*api.Endpoints, error)
	WatchEndpoints(labels, fields labels.Selector, resourceVersion uint64) (watch.Interface, error)
	UpdateEndpoints(e *api.Endpoints) error
}

Registry is an interface for things that know how to store endpoints.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL