//go:build !ignore_autogenerated // Code generated by controller-gen. DO NOT EDIT. package v1 import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/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 *IENPatch) DeepCopyInto(out *IENPatch) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) in.Spec.DeepCopyInto(&out.Spec) if in.Status != nil { in, out := &in.Status, &out.Status *out = new(IENPatchStatus) (*in).DeepCopyInto(*out) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IENPatch. func (in *IENPatch) DeepCopy() *IENPatch { if in == nil { return nil } out := new(IENPatch) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *IENPatch) 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 *IENPatchList) DeepCopyInto(out *IENPatchList) { *out = *in out.TypeMeta = in.TypeMeta in.ListMeta.DeepCopyInto(&out.ListMeta) if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]IENPatch, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IENPatchList. func (in *IENPatchList) DeepCopy() *IENPatchList { if in == nil { return nil } out := new(IENPatchList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *IENPatchList) 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 *IENPatchSpec) DeepCopyInto(out *IENPatchSpec) { *out = *in if in.NodeTargets != nil { in, out := &in.NodeTargets, &out.NodeTargets *out = make([]string, len(*in)) copy(*out, *in) } if in.SourceVersions != nil { in, out := &in.SourceVersions, &out.SourceVersions *out = make([]string, len(*in)) copy(*out, *in) } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IENPatchSpec. func (in *IENPatchSpec) DeepCopy() *IENPatchSpec { if in == nil { return nil } out := new(IENPatchSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *IENPatchStatus) DeepCopyInto(out *IENPatchStatus) { *out = *in if in.Conditions != nil { in, out := &in.Conditions, &out.Conditions *out = make([]metav1.Condition, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IENPatchStatus. func (in *IENPatchStatus) DeepCopy() *IENPatchStatus { if in == nil { return nil } out := new(IENPatchStatus) in.DeepCopyInto(out) return out }