1
0
mirror of https://github.com/rancher/types.git synced 2025-09-01 13:18:20 +00:00

Go generated

This commit is contained in:
Frank Mai
2019-02-14 12:10:04 +08:00
committed by Craig Jellick
parent abe9de4bb8
commit 003b587a64
5 changed files with 64 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ var (
Init(mgmtSecretTypes)
TokenSchemas = factory.Schemas(&Version).
Init(tokens)
Init(tokens)
)
func rkeTypes(schemas *types.Schemas) *types.Schemas {

View File

@@ -4296,6 +4296,29 @@ func (in *MonitoringInput) DeepCopy() *MonitoringInput {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MonitoringOutput) DeepCopyInto(out *MonitoringOutput) {
*out = *in
if in.Answers != nil {
in, out := &in.Answers, &out.Answers
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MonitoringOutput.
func (in *MonitoringOutput) DeepCopy() *MonitoringOutput {
if in == nil {
return nil
}
out := new(MonitoringOutput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MonitoringStatus) DeepCopyInto(out *MonitoringStatus) {
*out = *in