func()

in appconfigmgrv2/api/v1alpha1/zz_generated.deepcopy.go [284:306]


func (in *AppEnvConfigTemplateV2Spec) DeepCopyInto(out *AppEnvConfigTemplateV2Spec) {
	*out = *in
	if in.Services != nil {
		in, out := &in.Services, &out.Services
		*out = make([]AppEnvConfigTemplateServiceInfo, len(*in))
		for i := range *in {
			(*in)[i].DeepCopyInto(&(*out)[i])
		}
	}
	if in.AllowedEgress != nil {
		in, out := &in.AllowedEgress, &out.AllowedEgress
		*out = make([]AppEnvConfigTemplateAllowedEgress, len(*in))
		for i := range *in {
			(*in)[i].DeepCopyInto(&(*out)[i])
		}
	}
	if in.Auth != nil {
		in, out := &in.Auth, &out.Auth
		*out = new(AppEnvConfigTemplateAuth)
		(*in).DeepCopyInto(*out)
	}
	in.Ingress.DeepCopyInto(&out.Ingress)
}