addons/strimzi/duck/v1beta2/zz_generated.deepcopy.go (122 lines of code) (raw):

//go:build !ignore_autogenerated // +build !ignore_autogenerated // Code generated by controller-gen. DO NOT EDIT. package v1beta2 import ( "k8s.io/apimachinery/pkg/runtime" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Kafka) DeepCopyInto(out *Kafka) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Status.DeepCopyInto(&out.Status) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kafka. func (in *Kafka) DeepCopy() *Kafka { if in == nil { return nil } out := new(Kafka) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *Kafka) 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 *KafkaList) DeepCopyInto(out *KafkaList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]Kafka, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KafkaList. func (in *KafkaList) DeepCopy() *KafkaList { if in == nil { return nil } out := new(KafkaList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KafkaList) 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 *KafkaStatus) DeepCopyInto(out *KafkaStatus) { *out = *in if in.Listeners != nil { in, out := &in.Listeners, &out.Listeners *out = make([]KafkaStatusListener, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KafkaStatus. func (in *KafkaStatus) DeepCopy() *KafkaStatus { if in == nil { return nil } out := new(KafkaStatus) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KafkaStatusListener) DeepCopyInto(out *KafkaStatusListener) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KafkaStatusListener. func (in *KafkaStatusListener) DeepCopy() *KafkaStatusListener { if in == nil { return nil } out := new(KafkaStatusListener) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *KafkaTopic) DeepCopyInto(out *KafkaTopic) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KafkaTopic. func (in *KafkaTopic) DeepCopy() *KafkaTopic { if in == nil { return nil } out := new(KafkaTopic) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KafkaTopic) 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 *KafkaTopicList) DeepCopyInto(out *KafkaTopicList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]KafkaTopic, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KafkaTopicList. func (in *KafkaTopicList) DeepCopy() *KafkaTopicList { if in == nil { return nil } out := new(KafkaTopicList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *KafkaTopicList) DeepCopyObject() runtime.Object { if c := in.DeepCopy(); c != nil { return c } return nil }