Skip to content

Instantly share code, notes, and snippets.

@fourstepper
Created September 27, 2024 19:55
Show Gist options
  • Save fourstepper/1f04a83cfbe833790df633286365e548 to your computer and use it in GitHub Desktop.
Save fourstepper/1f04a83cfbe833790df633286365e548 to your computer and use it in GitHub Desktop.
type RawMessage struct {
raw []byte `yaml:"" json:""`
node *yaml.Node `yaml:"" json:""`
}
func (n *RawMessage) UnmarshalYAML(node *yaml.Node) error {
n.node = node
return nil
}
// UnmarshalJSON sets *m to a copy of data.
func (m *RawMessage) UnmarshalJSON(data []byte) error {
if m == nil {
return errors.New("json.RawMessage: UnmarshalJSON on nil pointer")
}
m.raw = append(m.raw[0:0], data...)
return nil
}
type SLIMetricSource struct {
MetricSourceRef string `yaml:"metricSourceRef,omitempty" json:"metricSourceRef,omitempty"`
Type string `yaml:"type,omitempty" json:"type,omitempty"`
MetricSourceSpec map[string]RawMessage `yaml:"spec" json:"spec"`
}
@fourstepper
Copy link
Author

func (m *RawMessage) UnmarshalJSON(data []byte) error { return m.unmarshal(data) }
func (m *RawMessage) UnmarshalYAML(data []byte) error { return m.unmarshal(data) }

func (m *RawMessage) unmarshal(data []byte) error {
    if m == nil {
        return errors.New("RawMessage: unmarshal on nil pointer")
    }
    *m = append((*m)[0:0], data...)
    return nil
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment