Created
September 27, 2024 19:55
-
-
Save fourstepper/1f04a83cfbe833790df633286365e548 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"` | |
} |
Author
fourstepper
commented
Sep 27, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment