| // +build !ignore_autogenerated |
| |
| /* |
| Copyright 2022. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| // Code generated by controller-gen. DO NOT EDIT. |
| |
| package v1alpha1 |
| |
| import ( |
| "k8s.io/api/core/v1" |
| runtime "k8s.io/apimachinery/pkg/runtime" |
| ) |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Broker) DeepCopyInto(out *Broker) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Broker. |
| func (in *Broker) DeepCopy() *Broker { |
| if in == nil { |
| return nil |
| } |
| out := new(Broker) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *Broker) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *BrokerList) DeepCopyInto(out *BrokerList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]Broker, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BrokerList. |
| func (in *BrokerList) DeepCopy() *BrokerList { |
| if in == nil { |
| return nil |
| } |
| out := new(BrokerList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *BrokerList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *BrokerSpec) DeepCopyInto(out *BrokerSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Env != nil { |
| in, out := &in.Env, &out.Env |
| *out = make([]v1.EnvVar, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.Volumes != nil { |
| in, out := &in.Volumes, &out.Volumes |
| *out = make([]v1.Volume, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.VolumeClaimTemplates != nil { |
| in, out := &in.VolumeClaimTemplates, &out.VolumeClaimTemplates |
| *out = make([]v1.PersistentVolumeClaim, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.PodSecurityContext != nil { |
| in, out := &in.PodSecurityContext, &out.PodSecurityContext |
| *out = new(v1.PodSecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.PodAnnotations != nil { |
| in, out := &in.PodAnnotations, &out.PodAnnotations |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.ContainerSecurityContext != nil { |
| in, out := &in.ContainerSecurityContext, &out.ContainerSecurityContext |
| *out = new(v1.SecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.ImagePullSecrets != nil { |
| in, out := &in.ImagePullSecrets, &out.ImagePullSecrets |
| *out = make([]v1.LocalObjectReference, len(*in)) |
| copy(*out, *in) |
| } |
| if in.Affinity != nil { |
| in, out := &in.Affinity, &out.Affinity |
| *out = new(v1.Affinity) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Tolerations != nil { |
| in, out := &in.Tolerations, &out.Tolerations |
| *out = make([]v1.Toleration, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.NodeSelector != nil { |
| in, out := &in.NodeSelector, &out.NodeSelector |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BrokerSpec. |
| func (in *BrokerSpec) DeepCopy() *BrokerSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(BrokerSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *BrokerStatus) DeepCopyInto(out *BrokerStatus) { |
| *out = *in |
| if in.Nodes != nil { |
| in, out := &in.Nodes, &out.Nodes |
| *out = make([]string, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BrokerStatus. |
| func (in *BrokerStatus) DeepCopy() *BrokerStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(BrokerStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Console) DeepCopyInto(out *Console) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| out.Status = in.Status |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Console. |
| func (in *Console) DeepCopy() *Console { |
| if in == nil { |
| return nil |
| } |
| out := new(Console) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *Console) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ConsoleList) DeepCopyInto(out *ConsoleList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]Console, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleList. |
| func (in *ConsoleList) DeepCopy() *ConsoleList { |
| if in == nil { |
| return nil |
| } |
| out := new(ConsoleList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *ConsoleList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ConsoleSpec) DeepCopyInto(out *ConsoleSpec) { |
| *out = *in |
| in.ConsoleDeployment.DeepCopyInto(&out.ConsoleDeployment) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleSpec. |
| func (in *ConsoleSpec) DeepCopy() *ConsoleSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(ConsoleSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ConsoleStatus) DeepCopyInto(out *ConsoleStatus) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsoleStatus. |
| func (in *ConsoleStatus) DeepCopy() *ConsoleStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(ConsoleStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *Controller) DeepCopyInto(out *Controller) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Controller. |
| func (in *Controller) DeepCopy() *Controller { |
| if in == nil { |
| return nil |
| } |
| out := new(Controller) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *Controller) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ControllerList) DeepCopyInto(out *ControllerList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]Controller, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerList. |
| func (in *ControllerList) DeepCopy() *ControllerList { |
| if in == nil { |
| return nil |
| } |
| out := new(ControllerList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *ControllerList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ControllerSpec) DeepCopyInto(out *ControllerSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Env != nil { |
| in, out := &in.Env, &out.Env |
| *out = make([]v1.EnvVar, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.VolumeClaimTemplates != nil { |
| in, out := &in.VolumeClaimTemplates, &out.VolumeClaimTemplates |
| *out = make([]v1.PersistentVolumeClaim, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.PodSecurityContext != nil { |
| in, out := &in.PodSecurityContext, &out.PodSecurityContext |
| *out = new(v1.PodSecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.PodAnnotations != nil { |
| in, out := &in.PodAnnotations, &out.PodAnnotations |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.ContainerSecurityContext != nil { |
| in, out := &in.ContainerSecurityContext, &out.ContainerSecurityContext |
| *out = new(v1.SecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.ImagePullSecrets != nil { |
| in, out := &in.ImagePullSecrets, &out.ImagePullSecrets |
| *out = make([]v1.LocalObjectReference, len(*in)) |
| copy(*out, *in) |
| } |
| if in.Affinity != nil { |
| in, out := &in.Affinity, &out.Affinity |
| *out = new(v1.Affinity) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Tolerations != nil { |
| in, out := &in.Tolerations, &out.Tolerations |
| *out = make([]v1.Toleration, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.NodeSelector != nil { |
| in, out := &in.NodeSelector, &out.NodeSelector |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerSpec. |
| func (in *ControllerSpec) DeepCopy() *ControllerSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(ControllerSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *ControllerStatus) DeepCopyInto(out *ControllerStatus) { |
| *out = *in |
| if in.Nodes != nil { |
| in, out := &in.Nodes, &out.Nodes |
| *out = make([]string, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerStatus. |
| func (in *ControllerStatus) DeepCopy() *ControllerStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(ControllerStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *NameService) DeepCopyInto(out *NameService) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| in.Spec.DeepCopyInto(&out.Spec) |
| in.Status.DeepCopyInto(&out.Status) |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NameService. |
| func (in *NameService) DeepCopy() *NameService { |
| if in == nil { |
| return nil |
| } |
| out := new(NameService) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *NameService) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *NameServiceList) DeepCopyInto(out *NameServiceList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]NameService, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NameServiceList. |
| func (in *NameServiceList) DeepCopy() *NameServiceList { |
| if in == nil { |
| return nil |
| } |
| out := new(NameServiceList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *NameServiceList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *NameServiceSpec) DeepCopyInto(out *NameServiceSpec) { |
| *out = *in |
| in.Resources.DeepCopyInto(&out.Resources) |
| if in.Env != nil { |
| in, out := &in.Env, &out.Env |
| *out = make([]v1.EnvVar, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.VolumeClaimTemplates != nil { |
| in, out := &in.VolumeClaimTemplates, &out.VolumeClaimTemplates |
| *out = make([]v1.PersistentVolumeClaim, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.PodSecurityContext != nil { |
| in, out := &in.PodSecurityContext, &out.PodSecurityContext |
| *out = new(v1.PodSecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.PodAnnotations != nil { |
| in, out := &in.PodAnnotations, &out.PodAnnotations |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| if in.ContainerSecurityContext != nil { |
| in, out := &in.ContainerSecurityContext, &out.ContainerSecurityContext |
| *out = new(v1.SecurityContext) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.ImagePullSecrets != nil { |
| in, out := &in.ImagePullSecrets, &out.ImagePullSecrets |
| *out = make([]v1.LocalObjectReference, len(*in)) |
| copy(*out, *in) |
| } |
| if in.Affinity != nil { |
| in, out := &in.Affinity, &out.Affinity |
| *out = new(v1.Affinity) |
| (*in).DeepCopyInto(*out) |
| } |
| if in.Tolerations != nil { |
| in, out := &in.Tolerations, &out.Tolerations |
| *out = make([]v1.Toleration, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| if in.NodeSelector != nil { |
| in, out := &in.NodeSelector, &out.NodeSelector |
| *out = make(map[string]string, len(*in)) |
| for key, val := range *in { |
| (*out)[key] = val |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NameServiceSpec. |
| func (in *NameServiceSpec) DeepCopy() *NameServiceSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(NameServiceSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *NameServiceStatus) DeepCopyInto(out *NameServiceStatus) { |
| *out = *in |
| if in.NameServers != nil { |
| in, out := &in.NameServers, &out.NameServers |
| *out = make([]string, len(*in)) |
| copy(*out, *in) |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NameServiceStatus. |
| func (in *NameServiceStatus) DeepCopy() *NameServiceStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(NameServiceStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *TopicTransfer) DeepCopyInto(out *TopicTransfer) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) |
| out.Spec = in.Spec |
| out.Status = in.Status |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopicTransfer. |
| func (in *TopicTransfer) DeepCopy() *TopicTransfer { |
| if in == nil { |
| return nil |
| } |
| out := new(TopicTransfer) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *TopicTransfer) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *TopicTransferList) DeepCopyInto(out *TopicTransferList) { |
| *out = *in |
| out.TypeMeta = in.TypeMeta |
| in.ListMeta.DeepCopyInto(&out.ListMeta) |
| if in.Items != nil { |
| in, out := &in.Items, &out.Items |
| *out = make([]TopicTransfer, len(*in)) |
| for i := range *in { |
| (*in)[i].DeepCopyInto(&(*out)[i]) |
| } |
| } |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopicTransferList. |
| func (in *TopicTransferList) DeepCopy() *TopicTransferList { |
| if in == nil { |
| return nil |
| } |
| out := new(TopicTransferList) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. |
| func (in *TopicTransferList) DeepCopyObject() runtime.Object { |
| if c := in.DeepCopy(); c != nil { |
| return c |
| } |
| return nil |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *TopicTransferSpec) DeepCopyInto(out *TopicTransferSpec) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopicTransferSpec. |
| func (in *TopicTransferSpec) DeepCopy() *TopicTransferSpec { |
| if in == nil { |
| return nil |
| } |
| out := new(TopicTransferSpec) |
| in.DeepCopyInto(out) |
| return out |
| } |
| |
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. |
| func (in *TopicTransferStatus) DeepCopyInto(out *TopicTransferStatus) { |
| *out = *in |
| } |
| |
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TopicTransferStatus. |
| func (in *TopicTransferStatus) DeepCopy() *TopicTransferStatus { |
| if in == nil { |
| return nil |
| } |
| out := new(TopicTransferStatus) |
| in.DeepCopyInto(out) |
| return out |
| } |