github.com/redhat-appstudio/release-service@v0.0.0-20240507143925-083712697924/tekton/utils/zz_generated.deepcopy.go (about) 1 //go:build !ignore_autogenerated 2 // +build !ignore_autogenerated 3 4 /* 5 Copyright 2022. 6 7 Licensed under the Apache License, Version 2.0 (the "License"); 8 you may not use this file except in compliance with the License. 9 You may obtain a copy of the License at 10 11 http://www.apache.org/licenses/LICENSE-2.0 12 13 Unless required by applicable law or agreed to in writing, software 14 distributed under the License is distributed on an "AS IS" BASIS, 15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 See the License for the specific language governing permissions and 17 limitations under the License. 18 */ 19 20 // Code generated by controller-gen. DO NOT EDIT. 21 22 package utils 23 24 import () 25 26 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 27 func (in *ParameterizedPipeline) DeepCopyInto(out *ParameterizedPipeline) { 28 *out = *in 29 in.Pipeline.DeepCopyInto(&out.Pipeline) 30 if in.Params != nil { 31 in, out := &in.Params, &out.Params 32 *out = make([]Param, len(*in)) 33 copy(*out, *in) 34 } 35 } 36 37 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParameterizedPipeline. 38 func (in *ParameterizedPipeline) DeepCopy() *ParameterizedPipeline { 39 if in == nil { 40 return nil 41 } 42 out := new(ParameterizedPipeline) 43 in.DeepCopyInto(out) 44 return out 45 } 46 47 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 48 func (in *Pipeline) DeepCopyInto(out *Pipeline) { 49 *out = *in 50 in.PipelineRef.DeepCopyInto(&out.PipelineRef) 51 in.Timeouts.DeepCopyInto(&out.Timeouts) 52 } 53 54 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Pipeline. 55 func (in *Pipeline) DeepCopy() *Pipeline { 56 if in == nil { 57 return nil 58 } 59 out := new(Pipeline) 60 in.DeepCopyInto(out) 61 return out 62 } 63 64 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 65 func (in *PipelineRef) DeepCopyInto(out *PipelineRef) { 66 *out = *in 67 if in.Params != nil { 68 in, out := &in.Params, &out.Params 69 *out = make([]Param, len(*in)) 70 copy(*out, *in) 71 } 72 } 73 74 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PipelineRef. 75 func (in *PipelineRef) DeepCopy() *PipelineRef { 76 if in == nil { 77 return nil 78 } 79 out := new(PipelineRef) 80 in.DeepCopyInto(out) 81 return out 82 }