mirror of
https://github.com/rancher/types.git
synced 2025-09-01 13:18:20 +00:00
Go generated
This commit is contained in:
@@ -45,7 +45,7 @@ var (
|
||||
Init(mgmtSecretTypes)
|
||||
|
||||
TokenSchemas = factory.Schemas(&Version).
|
||||
Init(tokens)
|
||||
Init(tokens)
|
||||
)
|
||||
|
||||
func rkeTypes(schemas *types.Schemas) *types.Schemas {
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user