kubernetes/vendor/github.com/go-openapi/swag/yaml.go

// YAMLMatcher matches yaml
func YAMLMatcher(path string) bool {}

// YAMLToJSON converts YAML unmarshaled data into json compatible data
func YAMLToJSON(data interface{}

// BytesToYAMLDoc converts a byte slice into a YAML document
func BytesToYAMLDoc(data []byte) (interface{}

func yamlNode(root *yaml.Node) (interface{}

func yamlDocument(node *yaml.Node) (interface{}

func yamlMapping(node *yaml.Node) (interface{}

func yamlSequence(node *yaml.Node) (interface{}

const yamlStringScalar

const yamlIntScalar

const yamlBoolScalar

const yamlFloatScalar

const yamlTimestamp

const yamlNull

func yamlScalar(node *yaml.Node) (interface{}

func yamlStringScalarC(node *yaml.Node) (string, error) {}

type JSONMapSlice

// MarshalJSON renders a JSONMapSlice as JSON
func (s JSONMapSlice) MarshalJSON() ([]byte, error) {}

// MarshalEasyJSON renders a JSONMapSlice as JSON, using easyJSON
func (s JSONMapSlice) MarshalEasyJSON(w *jwriter.Writer) {}

// UnmarshalJSON makes a JSONMapSlice from JSON
func (s *JSONMapSlice) UnmarshalJSON(data []byte) error {}

// UnmarshalEasyJSON makes a JSONMapSlice from JSON, using easyJSON
func (s *JSONMapSlice) UnmarshalEasyJSON(in *jlexer.Lexer) {}

func (s JSONMapSlice) MarshalYAML() (interface{}

func isNil(input interface{}

func json2yaml(item interface{}

type JSONMapItem

// MarshalJSON renders a JSONMapItem as JSON
func (s JSONMapItem) MarshalJSON() ([]byte, error) {}

// MarshalEasyJSON renders a JSONMapItem as JSON, using easyJSON
func (s JSONMapItem) MarshalEasyJSON(w *jwriter.Writer) {}

// UnmarshalJSON makes a JSONMapItem from JSON
func (s *JSONMapItem) UnmarshalJSON(data []byte) error {}

// UnmarshalEasyJSON makes a JSONMapItem from JSON, using easyJSON
func (s *JSONMapItem) UnmarshalEasyJSON(in *jlexer.Lexer) {}

func transformData(input interface{}

// YAMLDoc loads a yaml document from either http or a file and converts it to json
func YAMLDoc(path string) (json.RawMessage, error) {}

// YAMLData loads a yaml document from either http or a file
func YAMLData(path string) (interface{}