1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 23:08:25 +00:00

go generate

This commit is contained in:
galal-hussein
2018-07-17 02:31:39 +02:00
committed by Alena Prokharchyk
parent 1a4b8ecd84
commit 83409a3bca
4 changed files with 40 additions and 0 deletions

View File

@@ -2987,6 +2987,29 @@ func (in *MetadataOpenstackOpts) DeepCopy() *MetadataOpenstackOpts {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *MonitoringConfig) DeepCopyInto(out *MonitoringConfig) {
*out = *in
if in.Options != nil {
in, out := &in.Options, &out.Options
*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 MonitoringConfig.
func (in *MonitoringConfig) DeepCopy() *MonitoringConfig {
if in == nil {
return nil
}
out := new(MonitoringConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NetworkConfig) DeepCopyInto(out *NetworkConfig) {
*out = *in
@@ -5365,6 +5388,7 @@ func (in *RancherKubernetesEngineConfig) DeepCopyInto(out *RancherKubernetesEngi
in.Ingress.DeepCopyInto(&out.Ingress)
in.CloudProvider.DeepCopyInto(&out.CloudProvider)
out.BastionHost = in.BastionHost
in.Monitoring.DeepCopyInto(&out.Monitoring)
return
}