package event
import "k8s.io/kubernetes/pkg/registry/event"
Package event provides Registry interface and it's REST implementation for storing Event api objects.
Index ¶
- func NewEtcdRegistry(h tools.EtcdHelper, ttl uint64) generic.Registry
- type REST
- func NewREST(registry generic.Registry) *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 (*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)
Functions ¶
func NewEtcdRegistry ¶
func NewEtcdRegistry(h tools.EtcdHelper, ttl uint64) generic.Registry
NewEtcdRegistry returns a registry which will store Events in the given EtcdHelper. ttl is the time that Events will be retained by the system.
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST adapts an event registry into apiserver's RESTStorage model.
func NewREST ¶
NewREST returns a new REST. You must use a registry created by NewEtcdRegistry unless you're testing.
func (*REST) Create ¶
func (*REST) Delete ¶
func (*REST) Get ¶
func (*REST) List ¶
func (*REST) New ¶
New returns a new api.Event
func (*REST) Update ¶
Update returns an error: Events are not mutable.
func (*REST) Watch ¶
func (rs *REST) Watch(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error)
Watch returns Events events via a watch.Interface. It implements apiserver.ResourceWatcher.
Source Files ¶
doc.go registry.go rest.go
- Version
- v0.5.3
- Published
- Nov 24, 2014
- Platform
- js/wasm
- Imports
- 13 packages
- Last checked
- 5 minutes ago –
Tools for package owners.