mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			151 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2014 The Kubernetes Authors All rights reserved.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package meta
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
 | 
						|
	"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
 | 
						|
)
 | 
						|
 | 
						|
// VersionInterfaces contains the interfaces one should use for dealing with types of a particular version.
 | 
						|
type VersionInterfaces struct {
 | 
						|
	runtime.Codec
 | 
						|
	runtime.ObjectConvertor
 | 
						|
	MetadataAccessor
 | 
						|
}
 | 
						|
 | 
						|
// Interface lets you work with object and list metadata from any of the versioned or
 | 
						|
// internal API objects. Attempting to set or retrieve a field on an object that does
 | 
						|
// not support that field (Name, UID, Namespace on lists) will be a no-op and return
 | 
						|
// a default value.
 | 
						|
// TODO: rename to ObjectInterface when we clear up these interfaces.
 | 
						|
type Interface interface {
 | 
						|
	TypeInterface
 | 
						|
 | 
						|
	Namespace() string
 | 
						|
	SetNamespace(namespace string)
 | 
						|
	Name() string
 | 
						|
	SetName(name string)
 | 
						|
	GenerateName() string
 | 
						|
	SetGenerateName(name string)
 | 
						|
	UID() types.UID
 | 
						|
	SetUID(uid types.UID)
 | 
						|
	ResourceVersion() string
 | 
						|
	SetResourceVersion(version string)
 | 
						|
	SelfLink() string
 | 
						|
	SetSelfLink(selfLink string)
 | 
						|
	Labels() map[string]string
 | 
						|
	SetLabels(labels map[string]string)
 | 
						|
	Annotations() map[string]string
 | 
						|
	SetAnnotations(annotations map[string]string)
 | 
						|
}
 | 
						|
 | 
						|
// TypeInterface exposes the type and APIVersion of versioned or internal API objects.
 | 
						|
type TypeInterface interface {
 | 
						|
	APIVersion() string
 | 
						|
	SetAPIVersion(version string)
 | 
						|
	Kind() string
 | 
						|
	SetKind(kind string)
 | 
						|
}
 | 
						|
 | 
						|
// MetadataAccessor lets you work with object and list metadata from any of the versioned or
 | 
						|
// internal API objects. Attempting to set or retrieve a field on an object that does
 | 
						|
// not support that field (Name, UID, Namespace on lists) will be a no-op and return
 | 
						|
// a default value.
 | 
						|
//
 | 
						|
// MetadataAccessor exposes Interface in a way that can be used with multiple objects.
 | 
						|
type MetadataAccessor interface {
 | 
						|
	APIVersion(obj runtime.Object) (string, error)
 | 
						|
	SetAPIVersion(obj runtime.Object, version string) error
 | 
						|
 | 
						|
	Kind(obj runtime.Object) (string, error)
 | 
						|
	SetKind(obj runtime.Object, kind string) error
 | 
						|
 | 
						|
	Namespace(obj runtime.Object) (string, error)
 | 
						|
	SetNamespace(obj runtime.Object, namespace string) error
 | 
						|
 | 
						|
	Name(obj runtime.Object) (string, error)
 | 
						|
	SetName(obj runtime.Object, name string) error
 | 
						|
 | 
						|
	GenerateName(obj runtime.Object) (string, error)
 | 
						|
	SetGenerateName(obj runtime.Object, name string) error
 | 
						|
 | 
						|
	UID(obj runtime.Object) (types.UID, error)
 | 
						|
	SetUID(obj runtime.Object, uid types.UID) error
 | 
						|
 | 
						|
	SelfLink(obj runtime.Object) (string, error)
 | 
						|
	SetSelfLink(obj runtime.Object, selfLink string) error
 | 
						|
 | 
						|
	Labels(obj runtime.Object) (map[string]string, error)
 | 
						|
	SetLabels(obj runtime.Object, labels map[string]string) error
 | 
						|
 | 
						|
	Annotations(obj runtime.Object) (map[string]string, error)
 | 
						|
	SetAnnotations(obj runtime.Object, annotations map[string]string) error
 | 
						|
 | 
						|
	runtime.ResourceVersioner
 | 
						|
}
 | 
						|
 | 
						|
type RESTScopeName string
 | 
						|
 | 
						|
const (
 | 
						|
	RESTScopeNameNamespace RESTScopeName = "namespace"
 | 
						|
	RESTScopeNameRoot      RESTScopeName = "root"
 | 
						|
)
 | 
						|
 | 
						|
// RESTScope contains the information needed to deal with REST resources that are in a resource hierarchy
 | 
						|
// TODO After we deprecate v1beta1 and v1beta2, we can look a supporting removing the flexibility of supporting
 | 
						|
// either a query or path param, and instead just support path param
 | 
						|
type RESTScope interface {
 | 
						|
	// Name of the scope
 | 
						|
	Name() RESTScopeName
 | 
						|
	// ParamName is the optional name of the parameter that should be inserted in the resource url
 | 
						|
	// If empty, no param will be inserted
 | 
						|
	ParamName() string
 | 
						|
	// ArgumentName is the optional name that should be used for the variable holding the value.
 | 
						|
	ArgumentName() string
 | 
						|
	// ParamDescription is the optional description to use to document the parameter in api documentation
 | 
						|
	ParamDescription() string
 | 
						|
}
 | 
						|
 | 
						|
// RESTMapping contains the information needed to deal with objects of a specific
 | 
						|
// resource and kind in a RESTful manner.
 | 
						|
type RESTMapping struct {
 | 
						|
	// Resource is a string representing the name of this resource as a REST client would see it
 | 
						|
	Resource string
 | 
						|
	// APIVersion represents the APIVersion that represents the resource as presented. It is provided
 | 
						|
	// for convenience for passing around a consistent mapping.
 | 
						|
	APIVersion string
 | 
						|
	Kind       string
 | 
						|
 | 
						|
	// Scope contains the information needed to deal with REST Resources that are in a resource hierarchy
 | 
						|
	Scope RESTScope
 | 
						|
 | 
						|
	runtime.Codec
 | 
						|
	runtime.ObjectConvertor
 | 
						|
	MetadataAccessor
 | 
						|
}
 | 
						|
 | 
						|
// RESTMapper allows clients to map resources to kind, and map kind and version
 | 
						|
// to interfaces for manipulating those objects. It is primarily intended for
 | 
						|
// consumers of Kubernetes compatible REST APIs as defined in docs/api-conventions.md.
 | 
						|
type RESTMapper interface {
 | 
						|
	VersionAndKindForResource(resource string) (defaultVersion, kind string, err error)
 | 
						|
	RESTMapping(kind string, versions ...string) (*RESTMapping, error)
 | 
						|
	AliasesForResource(resource string) ([]string, bool)
 | 
						|
	ResourceSingularizer(resource string) (singular string, err error)
 | 
						|
}
 |