mirror of
https://github.com/rancher/types.git
synced 2025-06-26 13:41:33 +00:00
Add monitoring version types
This commit is contained in:
parent
839eead94c
commit
facd19d687
@ -256,10 +256,12 @@ type IngressCapabilities struct {
|
||||
}
|
||||
|
||||
type MonitoringInput struct {
|
||||
Version string `json:"version,omitempty"`
|
||||
Answers map[string]string `json:"answers,omitempty"`
|
||||
}
|
||||
|
||||
type MonitoringOutput struct {
|
||||
Version string `json:"version,omitempty"`
|
||||
Answers map[string]string `json:"answers,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -3,8 +3,10 @@ package client
|
||||
const (
|
||||
MonitoringInputType = "monitoringInput"
|
||||
MonitoringInputFieldAnswers = "answers"
|
||||
MonitoringInputFieldVersion = "version"
|
||||
)
|
||||
|
||||
type MonitoringInput struct {
|
||||
Answers map[string]string `json:"answers,omitempty" yaml:"answers,omitempty"`
|
||||
Version string `json:"version,omitempty" yaml:"version,omitempty"`
|
||||
}
|
||||
|
@ -3,8 +3,10 @@ package client
|
||||
const (
|
||||
MonitoringOutputType = "monitoringOutput"
|
||||
MonitoringOutputFieldAnswers = "answers"
|
||||
MonitoringOutputFieldVersion = "version"
|
||||
)
|
||||
|
||||
type MonitoringOutput struct {
|
||||
Answers map[string]string `json:"answers,omitempty" yaml:"answers,omitempty"`
|
||||
Version string `json:"version,omitempty" yaml:"version,omitempty"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user