kubernetes/staging/src/k8s.io/apimachinery/pkg/runtime/conversion.go

// DefaultMetaV1FieldSelectorConversion auto-accepts metav1 values for name and namespace.
// A cluster scoped resource specifying namespace empty works fine and specifying a particular
// namespace will return no results, as expected.
func DefaultMetaV1FieldSelectorConversion(label, value string) (string, string, error) {}

// JSONKeyMapper uses the struct tags on a conversion to determine the key value for
// the other side. Use when mapping from a map[string]* to a struct or vice versa.
func JSONKeyMapper(key string, sourceTag, destTag reflect.StructTag) (string, string) {}

func Convert_Slice_string_To_string(in *[]string, out *string, s conversion.Scope) error {}

func Convert_Slice_string_To_int(in *[]string, out *int, s conversion.Scope) error {}

// Convert_Slice_string_To_bool will convert a string parameter to boolean.
// Only the absence of a value (i.e. zero-length slice), a value of "false", or a
// value of "0" resolve to false.
// Any other value (including empty string) resolves to true.
func Convert_Slice_string_To_bool(in *[]string, out *bool, s conversion.Scope) error {}

// Convert_Slice_string_To_bool will convert a string parameter to boolean.
// Only the absence of a value (i.e. zero-length slice), a value of "false", or a
// value of "0" resolve to false.
// Any other value (including empty string) resolves to true.
func Convert_Slice_string_To_Pointer_bool(in *[]string, out **bool, s conversion.Scope) error {}

func string_to_int64(in string) (int64, error) {}

func Convert_string_To_int64(in *string, out *int64, s conversion.Scope) error {}

func Convert_Slice_string_To_int64(in *[]string, out *int64, s conversion.Scope) error {}

func Convert_string_To_Pointer_int64(in *string, out **int64, s conversion.Scope) error {}

func Convert_Slice_string_To_Pointer_int64(in *[]string, out **int64, s conversion.Scope) error {}

func RegisterStringConversions(s *Scheme) error {}