1
2
3
18
19
20
21 package v1beta1
22
23 import (
24 "github.com/fluxcd/pkg/apis/acl"
25 "github.com/fluxcd/pkg/apis/meta"
26 "k8s.io/apimachinery/pkg/apis/meta/v1"
27 runtime "k8s.io/apimachinery/pkg/runtime"
28 )
29
30
31 func (in *Artifact) DeepCopyInto(out *Artifact) {
32 *out = *in
33 in.LastUpdateTime.DeepCopyInto(&out.LastUpdateTime)
34 }
35
36
37 func (in *Artifact) DeepCopy() *Artifact {
38 if in == nil {
39 return nil
40 }
41 out := new(Artifact)
42 in.DeepCopyInto(out)
43 return out
44 }
45
46
47 func (in *Bucket) DeepCopyInto(out *Bucket) {
48 *out = *in
49 out.TypeMeta = in.TypeMeta
50 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
51 in.Spec.DeepCopyInto(&out.Spec)
52 in.Status.DeepCopyInto(&out.Status)
53 }
54
55
56 func (in *Bucket) DeepCopy() *Bucket {
57 if in == nil {
58 return nil
59 }
60 out := new(Bucket)
61 in.DeepCopyInto(out)
62 return out
63 }
64
65
66 func (in *Bucket) DeepCopyObject() runtime.Object {
67 if c := in.DeepCopy(); c != nil {
68 return c
69 }
70 return nil
71 }
72
73
74 func (in *BucketList) DeepCopyInto(out *BucketList) {
75 *out = *in
76 out.TypeMeta = in.TypeMeta
77 in.ListMeta.DeepCopyInto(&out.ListMeta)
78 if in.Items != nil {
79 in, out := &in.Items, &out.Items
80 *out = make([]Bucket, len(*in))
81 for i := range *in {
82 (*in)[i].DeepCopyInto(&(*out)[i])
83 }
84 }
85 }
86
87
88 func (in *BucketList) DeepCopy() *BucketList {
89 if in == nil {
90 return nil
91 }
92 out := new(BucketList)
93 in.DeepCopyInto(out)
94 return out
95 }
96
97
98 func (in *BucketList) DeepCopyObject() runtime.Object {
99 if c := in.DeepCopy(); c != nil {
100 return c
101 }
102 return nil
103 }
104
105
106 func (in *BucketSpec) DeepCopyInto(out *BucketSpec) {
107 *out = *in
108 if in.SecretRef != nil {
109 in, out := &in.SecretRef, &out.SecretRef
110 *out = new(meta.LocalObjectReference)
111 **out = **in
112 }
113 out.Interval = in.Interval
114 if in.Timeout != nil {
115 in, out := &in.Timeout, &out.Timeout
116 *out = new(v1.Duration)
117 **out = **in
118 }
119 if in.Ignore != nil {
120 in, out := &in.Ignore, &out.Ignore
121 *out = new(string)
122 **out = **in
123 }
124 if in.AccessFrom != nil {
125 in, out := &in.AccessFrom, &out.AccessFrom
126 *out = new(acl.AccessFrom)
127 (*in).DeepCopyInto(*out)
128 }
129 }
130
131
132 func (in *BucketSpec) DeepCopy() *BucketSpec {
133 if in == nil {
134 return nil
135 }
136 out := new(BucketSpec)
137 in.DeepCopyInto(out)
138 return out
139 }
140
141
142 func (in *BucketStatus) DeepCopyInto(out *BucketStatus) {
143 *out = *in
144 if in.Conditions != nil {
145 in, out := &in.Conditions, &out.Conditions
146 *out = make([]v1.Condition, len(*in))
147 for i := range *in {
148 (*in)[i].DeepCopyInto(&(*out)[i])
149 }
150 }
151 if in.Artifact != nil {
152 in, out := &in.Artifact, &out.Artifact
153 *out = new(Artifact)
154 (*in).DeepCopyInto(*out)
155 }
156 out.ReconcileRequestStatus = in.ReconcileRequestStatus
157 }
158
159
160 func (in *BucketStatus) DeepCopy() *BucketStatus {
161 if in == nil {
162 return nil
163 }
164 out := new(BucketStatus)
165 in.DeepCopyInto(out)
166 return out
167 }
168
169
170 func (in *GitRepository) DeepCopyInto(out *GitRepository) {
171 *out = *in
172 out.TypeMeta = in.TypeMeta
173 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
174 in.Spec.DeepCopyInto(&out.Spec)
175 in.Status.DeepCopyInto(&out.Status)
176 }
177
178
179 func (in *GitRepository) DeepCopy() *GitRepository {
180 if in == nil {
181 return nil
182 }
183 out := new(GitRepository)
184 in.DeepCopyInto(out)
185 return out
186 }
187
188
189 func (in *GitRepository) DeepCopyObject() runtime.Object {
190 if c := in.DeepCopy(); c != nil {
191 return c
192 }
193 return nil
194 }
195
196
197 func (in *GitRepositoryInclude) DeepCopyInto(out *GitRepositoryInclude) {
198 *out = *in
199 out.GitRepositoryRef = in.GitRepositoryRef
200 }
201
202
203 func (in *GitRepositoryInclude) DeepCopy() *GitRepositoryInclude {
204 if in == nil {
205 return nil
206 }
207 out := new(GitRepositoryInclude)
208 in.DeepCopyInto(out)
209 return out
210 }
211
212
213 func (in *GitRepositoryList) DeepCopyInto(out *GitRepositoryList) {
214 *out = *in
215 out.TypeMeta = in.TypeMeta
216 in.ListMeta.DeepCopyInto(&out.ListMeta)
217 if in.Items != nil {
218 in, out := &in.Items, &out.Items
219 *out = make([]GitRepository, len(*in))
220 for i := range *in {
221 (*in)[i].DeepCopyInto(&(*out)[i])
222 }
223 }
224 }
225
226
227 func (in *GitRepositoryList) DeepCopy() *GitRepositoryList {
228 if in == nil {
229 return nil
230 }
231 out := new(GitRepositoryList)
232 in.DeepCopyInto(out)
233 return out
234 }
235
236
237 func (in *GitRepositoryList) DeepCopyObject() runtime.Object {
238 if c := in.DeepCopy(); c != nil {
239 return c
240 }
241 return nil
242 }
243
244
245 func (in *GitRepositoryRef) DeepCopyInto(out *GitRepositoryRef) {
246 *out = *in
247 }
248
249
250 func (in *GitRepositoryRef) DeepCopy() *GitRepositoryRef {
251 if in == nil {
252 return nil
253 }
254 out := new(GitRepositoryRef)
255 in.DeepCopyInto(out)
256 return out
257 }
258
259
260 func (in *GitRepositorySpec) DeepCopyInto(out *GitRepositorySpec) {
261 *out = *in
262 if in.SecretRef != nil {
263 in, out := &in.SecretRef, &out.SecretRef
264 *out = new(meta.LocalObjectReference)
265 **out = **in
266 }
267 out.Interval = in.Interval
268 if in.Timeout != nil {
269 in, out := &in.Timeout, &out.Timeout
270 *out = new(v1.Duration)
271 **out = **in
272 }
273 if in.Reference != nil {
274 in, out := &in.Reference, &out.Reference
275 *out = new(GitRepositoryRef)
276 **out = **in
277 }
278 if in.Verification != nil {
279 in, out := &in.Verification, &out.Verification
280 *out = new(GitRepositoryVerification)
281 **out = **in
282 }
283 if in.Ignore != nil {
284 in, out := &in.Ignore, &out.Ignore
285 *out = new(string)
286 **out = **in
287 }
288 if in.Include != nil {
289 in, out := &in.Include, &out.Include
290 *out = make([]GitRepositoryInclude, len(*in))
291 copy(*out, *in)
292 }
293 if in.AccessFrom != nil {
294 in, out := &in.AccessFrom, &out.AccessFrom
295 *out = new(acl.AccessFrom)
296 (*in).DeepCopyInto(*out)
297 }
298 }
299
300
301 func (in *GitRepositorySpec) DeepCopy() *GitRepositorySpec {
302 if in == nil {
303 return nil
304 }
305 out := new(GitRepositorySpec)
306 in.DeepCopyInto(out)
307 return out
308 }
309
310
311 func (in *GitRepositoryStatus) DeepCopyInto(out *GitRepositoryStatus) {
312 *out = *in
313 if in.Conditions != nil {
314 in, out := &in.Conditions, &out.Conditions
315 *out = make([]v1.Condition, len(*in))
316 for i := range *in {
317 (*in)[i].DeepCopyInto(&(*out)[i])
318 }
319 }
320 if in.Artifact != nil {
321 in, out := &in.Artifact, &out.Artifact
322 *out = new(Artifact)
323 (*in).DeepCopyInto(*out)
324 }
325 if in.IncludedArtifacts != nil {
326 in, out := &in.IncludedArtifacts, &out.IncludedArtifacts
327 *out = make([]*Artifact, len(*in))
328 for i := range *in {
329 if (*in)[i] != nil {
330 in, out := &(*in)[i], &(*out)[i]
331 *out = new(Artifact)
332 (*in).DeepCopyInto(*out)
333 }
334 }
335 }
336 out.ReconcileRequestStatus = in.ReconcileRequestStatus
337 }
338
339
340 func (in *GitRepositoryStatus) DeepCopy() *GitRepositoryStatus {
341 if in == nil {
342 return nil
343 }
344 out := new(GitRepositoryStatus)
345 in.DeepCopyInto(out)
346 return out
347 }
348
349
350 func (in *GitRepositoryVerification) DeepCopyInto(out *GitRepositoryVerification) {
351 *out = *in
352 out.SecretRef = in.SecretRef
353 }
354
355
356 func (in *GitRepositoryVerification) DeepCopy() *GitRepositoryVerification {
357 if in == nil {
358 return nil
359 }
360 out := new(GitRepositoryVerification)
361 in.DeepCopyInto(out)
362 return out
363 }
364
365
366 func (in *HelmChart) DeepCopyInto(out *HelmChart) {
367 *out = *in
368 out.TypeMeta = in.TypeMeta
369 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
370 in.Spec.DeepCopyInto(&out.Spec)
371 in.Status.DeepCopyInto(&out.Status)
372 }
373
374
375 func (in *HelmChart) DeepCopy() *HelmChart {
376 if in == nil {
377 return nil
378 }
379 out := new(HelmChart)
380 in.DeepCopyInto(out)
381 return out
382 }
383
384
385 func (in *HelmChart) DeepCopyObject() runtime.Object {
386 if c := in.DeepCopy(); c != nil {
387 return c
388 }
389 return nil
390 }
391
392
393 func (in *HelmChartList) DeepCopyInto(out *HelmChartList) {
394 *out = *in
395 out.TypeMeta = in.TypeMeta
396 in.ListMeta.DeepCopyInto(&out.ListMeta)
397 if in.Items != nil {
398 in, out := &in.Items, &out.Items
399 *out = make([]HelmChart, len(*in))
400 for i := range *in {
401 (*in)[i].DeepCopyInto(&(*out)[i])
402 }
403 }
404 }
405
406
407 func (in *HelmChartList) DeepCopy() *HelmChartList {
408 if in == nil {
409 return nil
410 }
411 out := new(HelmChartList)
412 in.DeepCopyInto(out)
413 return out
414 }
415
416
417 func (in *HelmChartList) DeepCopyObject() runtime.Object {
418 if c := in.DeepCopy(); c != nil {
419 return c
420 }
421 return nil
422 }
423
424
425 func (in *HelmChartSpec) DeepCopyInto(out *HelmChartSpec) {
426 *out = *in
427 out.SourceRef = in.SourceRef
428 out.Interval = in.Interval
429 if in.ValuesFiles != nil {
430 in, out := &in.ValuesFiles, &out.ValuesFiles
431 *out = make([]string, len(*in))
432 copy(*out, *in)
433 }
434 if in.AccessFrom != nil {
435 in, out := &in.AccessFrom, &out.AccessFrom
436 *out = new(acl.AccessFrom)
437 (*in).DeepCopyInto(*out)
438 }
439 }
440
441
442 func (in *HelmChartSpec) DeepCopy() *HelmChartSpec {
443 if in == nil {
444 return nil
445 }
446 out := new(HelmChartSpec)
447 in.DeepCopyInto(out)
448 return out
449 }
450
451
452 func (in *HelmChartStatus) DeepCopyInto(out *HelmChartStatus) {
453 *out = *in
454 if in.Conditions != nil {
455 in, out := &in.Conditions, &out.Conditions
456 *out = make([]v1.Condition, len(*in))
457 for i := range *in {
458 (*in)[i].DeepCopyInto(&(*out)[i])
459 }
460 }
461 if in.Artifact != nil {
462 in, out := &in.Artifact, &out.Artifact
463 *out = new(Artifact)
464 (*in).DeepCopyInto(*out)
465 }
466 out.ReconcileRequestStatus = in.ReconcileRequestStatus
467 }
468
469
470 func (in *HelmChartStatus) DeepCopy() *HelmChartStatus {
471 if in == nil {
472 return nil
473 }
474 out := new(HelmChartStatus)
475 in.DeepCopyInto(out)
476 return out
477 }
478
479
480 func (in *HelmRepository) DeepCopyInto(out *HelmRepository) {
481 *out = *in
482 out.TypeMeta = in.TypeMeta
483 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
484 in.Spec.DeepCopyInto(&out.Spec)
485 in.Status.DeepCopyInto(&out.Status)
486 }
487
488
489 func (in *HelmRepository) DeepCopy() *HelmRepository {
490 if in == nil {
491 return nil
492 }
493 out := new(HelmRepository)
494 in.DeepCopyInto(out)
495 return out
496 }
497
498
499 func (in *HelmRepository) DeepCopyObject() runtime.Object {
500 if c := in.DeepCopy(); c != nil {
501 return c
502 }
503 return nil
504 }
505
506
507 func (in *HelmRepositoryList) DeepCopyInto(out *HelmRepositoryList) {
508 *out = *in
509 out.TypeMeta = in.TypeMeta
510 in.ListMeta.DeepCopyInto(&out.ListMeta)
511 if in.Items != nil {
512 in, out := &in.Items, &out.Items
513 *out = make([]HelmRepository, len(*in))
514 for i := range *in {
515 (*in)[i].DeepCopyInto(&(*out)[i])
516 }
517 }
518 }
519
520
521 func (in *HelmRepositoryList) DeepCopy() *HelmRepositoryList {
522 if in == nil {
523 return nil
524 }
525 out := new(HelmRepositoryList)
526 in.DeepCopyInto(out)
527 return out
528 }
529
530
531 func (in *HelmRepositoryList) DeepCopyObject() runtime.Object {
532 if c := in.DeepCopy(); c != nil {
533 return c
534 }
535 return nil
536 }
537
538
539 func (in *HelmRepositorySpec) DeepCopyInto(out *HelmRepositorySpec) {
540 *out = *in
541 if in.SecretRef != nil {
542 in, out := &in.SecretRef, &out.SecretRef
543 *out = new(meta.LocalObjectReference)
544 **out = **in
545 }
546 out.Interval = in.Interval
547 if in.Timeout != nil {
548 in, out := &in.Timeout, &out.Timeout
549 *out = new(v1.Duration)
550 **out = **in
551 }
552 if in.AccessFrom != nil {
553 in, out := &in.AccessFrom, &out.AccessFrom
554 *out = new(acl.AccessFrom)
555 (*in).DeepCopyInto(*out)
556 }
557 }
558
559
560 func (in *HelmRepositorySpec) DeepCopy() *HelmRepositorySpec {
561 if in == nil {
562 return nil
563 }
564 out := new(HelmRepositorySpec)
565 in.DeepCopyInto(out)
566 return out
567 }
568
569
570 func (in *HelmRepositoryStatus) DeepCopyInto(out *HelmRepositoryStatus) {
571 *out = *in
572 if in.Conditions != nil {
573 in, out := &in.Conditions, &out.Conditions
574 *out = make([]v1.Condition, len(*in))
575 for i := range *in {
576 (*in)[i].DeepCopyInto(&(*out)[i])
577 }
578 }
579 if in.Artifact != nil {
580 in, out := &in.Artifact, &out.Artifact
581 *out = new(Artifact)
582 (*in).DeepCopyInto(*out)
583 }
584 out.ReconcileRequestStatus = in.ReconcileRequestStatus
585 }
586
587
588 func (in *HelmRepositoryStatus) DeepCopy() *HelmRepositoryStatus {
589 if in == nil {
590 return nil
591 }
592 out := new(HelmRepositoryStatus)
593 in.DeepCopyInto(out)
594 return out
595 }
596
597
598 func (in *LocalHelmChartSourceReference) DeepCopyInto(out *LocalHelmChartSourceReference) {
599 *out = *in
600 }
601
602
603 func (in *LocalHelmChartSourceReference) DeepCopy() *LocalHelmChartSourceReference {
604 if in == nil {
605 return nil
606 }
607 out := new(LocalHelmChartSourceReference)
608 in.DeepCopyInto(out)
609 return out
610 }
611
View as plain text