// +build !ignore_autogenerated /* 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. */ // autogenerated by controller-gen object, do not modify manually package v2 import ( 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 *ExternalJob) DeepCopyInto(out *ExternalJob) { *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 ExternalJob. func (in *ExternalJob) DeepCopy() *ExternalJob { if in == nil { return nil } out := new(ExternalJob) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ExternalJob) 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 *ExternalJobList) DeepCopyInto(out *ExternalJobList) { *out = *in out.TypeMeta = in.TypeMeta out.ListMeta = in.ListMeta if in.Items != nil { in, out := &in.Items, &out.Items *out = make([]ExternalJob, len(*in)) for i := range *in { (*in)[i].DeepCopyInto(&(*out)[i]) } } } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalJobList. func (in *ExternalJobList) DeepCopy() *ExternalJobList { if in == nil { return nil } out := new(ExternalJobList) in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. func (in *ExternalJobList) 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 *ExternalJobSpec) DeepCopyInto(out *ExternalJobSpec) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalJobSpec. func (in *ExternalJobSpec) DeepCopy() *ExternalJobSpec { if in == nil { return nil } out := new(ExternalJobSpec) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ExternalJobStatus) DeepCopyInto(out *ExternalJobStatus) { *out = *in } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalJobStatus. func (in *ExternalJobStatus) DeepCopy() *ExternalJobStatus { if in == nil { return nil } out := new(ExternalJobStatus) in.DeepCopyInto(out) return out }