func()

in alibabacloudservicemesh/v1/zz_generated.deepcopy.go [5507:5569]


func (in *KServeConfig) DeepCopyInto(out *KServeConfig) {
	*out = *in
	if in.Tag != nil {
		in, out := &in.Tag, &out.Tag
		*out = new(string)
		**out = **in
	}
	if in.CertManagerEnabled != nil {
		in, out := &in.CertManagerEnabled, &out.CertManagerEnabled
		*out = new(bool)
		**out = **in
	}
	if in.CertManagerUseExisting != nil {
		in, out := &in.CertManagerUseExisting, &out.CertManagerUseExisting
		*out = new(bool)
		**out = **in
	}
	if in.CertManagerPreserved != nil {
		in, out := &in.CertManagerPreserved, &out.CertManagerPreserved
		*out = new(bool)
		**out = **in
	}
	if in.InferenceServiceConfig != nil {
		in, out := &in.InferenceServiceConfig, &out.InferenceServiceConfig
		*out = new(InferenceServiceConfig)
		(*in).DeepCopyInto(*out)
	}
	if in.CustomImageRepo != nil {
		in, out := &in.CustomImageRepo, &out.CustomImageRepo
		*out = new(CustomImageRepo)
		(*in).DeepCopyInto(*out)
	}
	if in.MultiModel != nil {
		in, out := &in.MultiModel, &out.MultiModel
		*out = new(bool)
		**out = **in
	}
	if in.SingleModelServerless != nil {
		in, out := &in.SingleModelServerless, &out.SingleModelServerless
		*out = new(bool)
		**out = **in
	}
	if in.MultiModelControllerNamespace != nil {
		in, out := &in.MultiModelControllerNamespace, &out.MultiModelControllerNamespace
		*out = new(string)
		**out = **in
	}
	if in.BuiltInServingRuntimeEnabled != nil {
		in, out := &in.BuiltInServingRuntimeEnabled, &out.BuiltInServingRuntimeEnabled
		*out = new(bool)
		**out = **in
	}
	if in.BuiltInClusterServingRuntimeEnabled != nil {
		in, out := &in.BuiltInClusterServingRuntimeEnabled, &out.BuiltInClusterServingRuntimeEnabled
		*out = new(bool)
		**out = **in
	}
	if in.EnableMmCallLocalModelFirst != nil {
		in, out := &in.EnableMmCallLocalModelFirst, &out.EnableMmCallLocalModelFirst
		*out = new(bool)
		**out = **in
	}
}