package util
import "k8s.io/kube-openapi/pkg/util"
Index ¶
- func GetCanonicalTypeName(model interface{}) string
- func ToCanonicalName(name string) string
- func ToRESTFriendlyName(name string) string
- type OpenAPICanonicalTypeNamer
- type Trie
Functions ¶
func GetCanonicalTypeName ¶
func GetCanonicalTypeName(model interface{}) string
GetCanonicalTypeName will find the canonical type name of a sample object, removing the "vendor" part of the path
func ToCanonicalName ¶
[DEPRECATED] ToCanonicalName converts Golang package/type canonical name into REST friendly OpenAPI name. This method is deprecated because it has a misleading name. Please use ToRESTFriendlyName instead
NOTE: actually the "canonical name" in this method should be named "REST friendly OpenAPI name", which is different from "canonical name" defined in GetCanonicalTypeName. The "canonical name" defined in GetCanonicalTypeName means Go type names with full package path.
Examples of REST friendly OpenAPI name:
Input: k8s.io/api/core/v1.Pod Output: io.k8s.api.core.v1.Pod Input: k8s.io/api/core/v1 Output: io.k8s.api.core.v1 Input: csi.storage.k8s.io/v1alpha1.CSINodeInfo Output: io.k8s.storage.csi.v1alpha1.CSINodeInfo
func ToRESTFriendlyName ¶
ToRESTFriendlyName converts Golang package/type canonical name into REST friendly OpenAPI name.
Examples of REST friendly OpenAPI name:
Input: k8s.io/api/core/v1.Pod Output: io.k8s.api.core.v1.Pod Input: k8s.io/api/core/v1 Output: io.k8s.api.core.v1 Input: csi.storage.k8s.io/v1alpha1.CSINodeInfo Output: io.k8s.storage.csi.v1alpha1.CSINodeInfo
Types ¶
type OpenAPICanonicalTypeNamer ¶
type OpenAPICanonicalTypeNamer interface { OpenAPICanonicalTypeName() string }
OpenAPICanonicalTypeNamer is an interface for models without Go type to seed model name.
OpenAPI canonical names are Go type names with full package path, for uniquely indentifying a model / Go type. If a Go type is vendored from another package, only the path after "/vendor/" should be used. For custom resource definition (CRD), the canonical name is expected to be
group/version.kind
Examples of canonical name:
Go type: k8s.io/kubernetes/pkg/apis/core.Pod CRD: csi.storage.k8s.io/v1alpha1.CSINodeInfo
Example for vendored Go type:
Original full path: k8s.io/kubernetes/vendor/k8s.io/api/core/v1.Pod Canonical name: k8s.io/api/core/v1.Pod Original full path: vendor/k8s.io/api/core/v1.Pod Canonical name: k8s.io/api/core/v1.Pod
type Trie ¶
type Trie struct {
// contains filtered or unexported fields
}
A simple trie implementation with Add and HasPrefix methods only.
func NewTrie ¶
NewTrie creates a Trie and add all strings in the provided list to it.
func (*Trie) Add ¶
Add adds a word to this trie
func (*Trie) GetPrefix ¶
GetPrefix is like HasPrefix but return the prefix in case of match or empty string otherwise.
func (*Trie) HasPrefix ¶
HasPrefix returns true of v has any of the prefixes stored in this trie.
Source Files ¶
trie.go util.go
Directories ¶
Path | Synopsis |
---|---|
pkg/util/jsontesting | |
pkg/util/proto | Package proto is a collection of libraries for parsing and indexing the type definitions. |
pkg/util/proto/testing | |
pkg/util/proto/validation | |
pkg/util/sets |
- Version
- v0.0.0-20250318190949-c8a335a9a2ff (latest)
- Published
- Mar 18, 2025
- Platform
- linux/amd64
- Imports
- 2 packages
- Last checked
- 1 month ago –
Tools for package owners.