resourcequota

package
v0.16.3-0...-5896210 Latest Latest
Warning

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

Go to latest
Published: May 6, 2015 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package resourcequota provides Registry interface and it's REST implementation for storing ResourceQuota api objects.

Index

Constants

This section is empty.

Variables

View Source
var StatusStrategy = resourcequotaStatusStrategy{Strategy}
View Source
var Strategy = resourcequotaStrategy{api.Scheme, api.SimpleNameGenerator}

Strategy is the default logic that applies when creating and updating ResourceQuota objects via the REST API.

Functions

func MatchResourceQuota

func MatchResourceQuota(label labels.Selector, field fields.Selector) generic.Matcher

MatchResourceQuota returns a generic matcher for a given label and field selector.

func ResourceQuotaToSelectableFields

func ResourceQuotaToSelectableFields(resourcequota *api.ResourceQuota) labels.Set

ResourceQuotaToSelectableFields returns a label set that represents the object TODO: fields are not labels, and the validation rules for them do not apply.

Types

type Registry

type Registry interface {
	// ListResourceQuotas obtains a list of resourceQuotas having labels which match selector.
	ListResourceQuotas(ctx api.Context, selector labels.Selector) (*api.ResourceQuotaList, error)
	// Watch for new/changed/deleted resourceQuotas
	WatchResourceQuotas(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
	// Get a specific resourceQuota
	GetResourceQuota(ctx api.Context, resourceQuotaID string) (*api.ResourceQuota, error)
	// Create a resourceQuota based on a specification.
	CreateResourceQuota(ctx api.Context, resourceQuota *api.ResourceQuota) error
	// Update an existing resourceQuota
	UpdateResourceQuota(ctx api.Context, resourceQuota *api.ResourceQuota) error
	// Delete an existing resourceQuota
	DeleteResourceQuota(ctx api.Context, resourceQuotaID string) error
}

Registry is an interface implemented by things that know how to store ResourceQuota objects.

func NewRegistry

func NewRegistry(s rest.StandardStorage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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