kubernetesk8s.io/kubernetes/pkg/registry/thirdpartyresourcedata Index | Files | Directories

package thirdpartyresourcedata

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

Package thirdpartyresourcedata provides Registry interface and its REST implementation for storing ThirdPartyResourceData api objects.

Index

Variables

var Strategy = strategy{api.Scheme, api.SimpleNameGenerator}

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

Functions

func ExtractApiGroupAndKind

func ExtractApiGroupAndKind(rsrc *extensions.ThirdPartyResource) (kind string, group string, err error)

func ExtractGroupVersionKind

func IsThirdPartyObject

func IsThirdPartyObject(rawData []byte, gvk *unversioned.GroupVersionKind) (isThirdParty bool, gvkOut *unversioned.GroupVersionKind, err error)

func Matcher

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

func NewCodec

func NewCodec(delegate runtime.Codec, gvk unversioned.GroupVersionKind) runtime.Codec

func NewDecoder

func NewDecoder(delegate runtime.Decoder, kind string) runtime.Decoder

func NewEncoder

func NewEncoder(delegate runtime.Encoder, gvk unversioned.GroupVersionKind) runtime.Encoder

func NewMapper

func NewMapper(mapper meta.RESTMapper, kind, version, group string) meta.RESTMapper

func NewNegotiatedSerializer

func NewNegotiatedSerializer(s runtime.NegotiatedSerializer, kind string, encodeGV, decodeGV unversioned.GroupVersion) runtime.NegotiatedSerializer

func NewObjectCreator

func NewObjectCreator(group, version string, delegate runtime.ObjectCreater) runtime.ObjectCreater

func NewThirdPartyObjectConverter

func NewThirdPartyObjectConverter(converter runtime.ObjectConvertor) runtime.ObjectConvertor

func NewThirdPartyParameterCodec

func NewThirdPartyParameterCodec(p runtime.ParameterCodec) runtime.ParameterCodec

func SelectableFields

func SelectableFields(obj *extensions.ThirdPartyResourceData) fields.Set

SelectableFields returns a field set that can be used for filter selection

Types

type Registry

type Registry interface {
	ListThirdPartyResourceData(ctx api.Context, options *api.ListOptions) (*extensions.ThirdPartyResourceDataList, error)
	WatchThirdPartyResourceData(ctx api.Context, options *api.ListOptions) (watch.Interface, error)
	GetThirdPartyResourceData(ctx api.Context, name string) (*extensions.ThirdPartyResourceData, error)
	CreateThirdPartyResourceData(ctx api.Context, resource *extensions.ThirdPartyResourceData) (*extensions.ThirdPartyResourceData, error)
	UpdateThirdPartyResourceData(ctx api.Context, resource *extensions.ThirdPartyResourceData) (*extensions.ThirdPartyResourceData, error)
	DeleteThirdPartyResourceData(ctx api.Context, name string) error
}

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

func NewRegistry

func NewRegistry(s rest.StandardStorage) Registry

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

Source Files

codec.go doc.go registry.go strategy.go util.go

Directories

PathSynopsis
pkg/registry/thirdpartyresourcedata/etcd
Version
v1.4.9
Published
Feb 15, 2017
Platform
js/wasm
Imports
25 packages
Last checked
1 minute ago

Tools for package owners.