Versions in this module Expand all Collapse all v0 v0.7.1 Jan 15, 2026 v0.7.0 Jan 15, 2026 v0.6.17 Jan 8, 2026 Changes in this version + type Any = Data[any] + func FromRawExtension(ext runtime.RawExtension) (Any, error) + func MustParse(jsonStr string) Any + func NewAny(v any) Any + type Data struct + Value T + func NewData[T any](v T) Data[T] + func (d *Data[T]) DeepCopy() *Data[T] + func (d *Data[T]) DeepCopyInto(out *Data[T]) + func (d *Data[T]) UnmarshalJSON(data []byte) error + func (d *Data[T]) UnmarshalYAML(node *yaml.Node) error + func (d Data[T]) Get() T + func (d Data[T]) IsEmpty() bool + func (d Data[T]) MarshalJSON() ([]byte, error) + func (d Data[T]) MarshalYAML() (interface{}, error) + func (d Data[T]) ToAny() (any, error) + func (d Data[T]) ToMap() (map[string]any, error) + type Map = Data[map[string]any] + func MapFromRawExtension(ext runtime.RawExtension) (Map, error) + func NewMap(m map[string]any) Map