package etcd
import "k8s.io/kubernetes/pkg/registry/resourcequota/etcd"
Index ¶
- func NewREST(h tools.EtcdHelper) (*REST, *StatusREST)
- type REST
- func (r *REST) Create(ctx api.Context, obj runtime.Object) (runtime.Object, error)
- func (r *REST) Delete(ctx api.Context, name string) (runtime.Object, error)
- func (r *REST) Get(ctx api.Context, name string) (runtime.Object, error)
- func (r *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
- func (r *REST) New() runtime.Object
- func (r *REST) NewList() runtime.Object
- func (r *REST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)
- func (r *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
- type StatusREST
Functions ¶
func NewREST ¶
func NewREST(h tools.EtcdHelper) (*REST, *StatusREST)
NewREST returns a RESTStorage object that will work against ResourceQuota objects.
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
rest implements a RESTStorage for resourcequotas against etcd
func (*REST) Create ¶
Create creates a resourcequota based on a specification.
func (*REST) Delete ¶
Delete deletes an existing resourcequota specified by its name.
func (*REST) Get ¶
Get gets a specific resourcequota specified by its ID.
func (*REST) List ¶
func (r *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
List obtains a list of resourcequotas with labels that match selector.
func (*REST) New ¶
New returns a new object
func (*REST) NewList ¶
NewList returns a new list object
func (*REST) Update ¶
Update changes a resourcequota specification.
func (*REST) Watch ¶
func (r *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
Watch begins watching for new, changed, or deleted resourcequotas.
type StatusREST ¶
type StatusREST struct {
// contains filtered or unexported fields
}
StatusREST implements the REST endpoint for changing the status of a resourcequota.
func (*StatusREST) New ¶
func (r *StatusREST) New() runtime.Object
func (*StatusREST) Update ¶
Update alters the status subset of an object.
Source Files ¶
etcd.go
- Version
- v0.13.1
- Published
- Mar 17, 2015
- Platform
- linux/amd64
- Imports
- 9 packages
- Last checked
- 14 minutes ago –
Tools for package owners.