in api/v1alpha1/zz_generated.deepcopy.go [536:565]
func (in *NginxIngressControllerSpec) DeepCopyInto(out *NginxIngressControllerSpec) {
*out = *in
if in.LoadBalancerAnnotations != nil {
in, out := &in.LoadBalancerAnnotations, &out.LoadBalancerAnnotations
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.DefaultSSLCertificate != nil {
in, out := &in.DefaultSSLCertificate, &out.DefaultSSLCertificate
*out = new(DefaultSSLCertificate)
(*in).DeepCopyInto(*out)
}
if in.DefaultBackendService != nil {
in, out := &in.DefaultBackendService, &out.DefaultBackendService
*out = new(NICNamespacedName)
**out = **in
}
if in.CustomHTTPErrors != nil {
in, out := &in.CustomHTTPErrors, &out.CustomHTTPErrors
*out = make([]int32, len(*in))
copy(*out, *in)
}
if in.Scaling != nil {
in, out := &in.Scaling, &out.Scaling
*out = new(Scaling)
(*in).DeepCopyInto(*out)
}
}