kubelatte-ce

Форк
2
Форк от sbertech/kubelatte-ce
/
zz_generated.deepcopy.go 
1033 строки · 28.7 Кб
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 v1alpha1
23

24
import (
25
	runtime "k8s.io/apimachinery/pkg/runtime"
26
)
27

28
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
29
func (in *Annotation) DeepCopyInto(out *Annotation) {
30
	*out = *in
31
	if in.Containers != nil {
32
		in, out := &in.Containers, &out.Containers
33
		*out = make([]string, len(*in))
34
		copy(*out, *in)
35
	}
36
	if in.InitContainers != nil {
37
		in, out := &in.InitContainers, &out.InitContainers
38
		*out = make([]string, len(*in))
39
		copy(*out, *in)
40
	}
41
}
42

43
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Annotation.
44
func (in *Annotation) DeepCopy() *Annotation {
45
	if in == nil {
46
		return nil
47
	}
48
	out := new(Annotation)
49
	in.DeepCopyInto(out)
50
	return out
51
}
52

53
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
54
func (in *AnnotationConfig) DeepCopyInto(out *AnnotationConfig) {
55
	*out = *in
56
	if in.VolumeMounts != nil {
57
		in, out := &in.VolumeMounts, &out.VolumeMounts
58
		*out = make([]VolumeMountAnnotation, len(*in))
59
		for i := range *in {
60
			(*in)[i].DeepCopyInto(&(*out)[i])
61
		}
62
	}
63
}
64

65
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnnotationConfig.
66
func (in *AnnotationConfig) DeepCopy() *AnnotationConfig {
67
	if in == nil {
68
		return nil
69
	}
70
	out := new(AnnotationConfig)
71
	in.DeepCopyInto(out)
72
	return out
73
}
74

75
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
76
func (in *AnnotationSelector) DeepCopyInto(out *AnnotationSelector) {
77
	*out = *in
78
	if in.MatchExpressions != nil {
79
		in, out := &in.MatchExpressions, &out.MatchExpressions
80
		*out = make([]MatchExpression, len(*in))
81
		for i := range *in {
82
			(*in)[i].DeepCopyInto(&(*out)[i])
83
		}
84
	}
85
}
86

87
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnnotationSelector.
88
func (in *AnnotationSelector) DeepCopy() *AnnotationSelector {
89
	if in == nil {
90
		return nil
91
	}
92
	out := new(AnnotationSelector)
93
	in.DeepCopyInto(out)
94
	return out
95
}
96

97
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
98
func (in *Condition) DeepCopyInto(out *Condition) {
99
	*out = *in
100
	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
101
}
102

103
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Condition.
104
func (in *Condition) DeepCopy() *Condition {
105
	if in == nil {
106
		return nil
107
	}
108
	out := new(Condition)
109
	in.DeepCopyInto(out)
110
	return out
111
}
112

113
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
114
func (in *ContainerInfo) DeepCopyInto(out *ContainerInfo) {
115
	*out = *in
116
}
117

118
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerInfo.
119
func (in *ContainerInfo) DeepCopy() *ContainerInfo {
120
	if in == nil {
121
		return nil
122
	}
123
	out := new(ContainerInfo)
124
	in.DeepCopyInto(out)
125
	return out
126
}
127

128
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
129
func (in *CreationConfig) DeepCopyInto(out *CreationConfig) {
130
	*out = *in
131
	in.LabelSelector.DeepCopyInto(&out.LabelSelector)
132
	if in.TemplateRefs != nil {
133
		in, out := &in.TemplateRefs, &out.TemplateRefs
134
		*out = make([]string, len(*in))
135
		copy(*out, *in)
136
	}
137
}
138

139
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CreationConfig.
140
func (in *CreationConfig) DeepCopy() *CreationConfig {
141
	if in == nil {
142
		return nil
143
	}
144
	out := new(CreationConfig)
145
	in.DeepCopyInto(out)
146
	return out
147
}
148

149
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
150
func (in *Item) DeepCopyInto(out *Item) {
151
	*out = *in
152
	in.Match.DeepCopyInto(&out.Match)
153
	in.Rule.DeepCopyInto(&out.Rule)
154
}
155

156
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Item.
157
func (in *Item) DeepCopy() *Item {
158
	if in == nil {
159
		return nil
160
	}
161
	out := new(Item)
162
	in.DeepCopyInto(out)
163
	return out
164
}
165

166
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
167
func (in *Kind) DeepCopyInto(out *Kind) {
168
	*out = *in
169
	if in.Kind != nil {
170
		in, out := &in.Kind, &out.Kind
171
		*out = make([]string, len(*in))
172
		copy(*out, *in)
173
	}
174
	if in.ApiGroups != nil {
175
		in, out := &in.ApiGroups, &out.ApiGroups
176
		*out = make([]string, len(*in))
177
		copy(*out, *in)
178
	}
179
}
180

181
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Kind.
182
func (in *Kind) DeepCopy() *Kind {
183
	if in == nil {
184
		return nil
185
	}
186
	out := new(Kind)
187
	in.DeepCopyInto(out)
188
	return out
189
}
190

191
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
192
func (in *Label) DeepCopyInto(out *Label) {
193
	*out = *in
194
	if in.Name != nil {
195
		in, out := &in.Name, &out.Name
196
		*out = make([]string, len(*in))
197
		copy(*out, *in)
198
	}
199
	if in.Containers != nil {
200
		in, out := &in.Containers, &out.Containers
201
		*out = make([]string, len(*in))
202
		copy(*out, *in)
203
	}
204
	if in.InitContainers != nil {
205
		in, out := &in.InitContainers, &out.InitContainers
206
		*out = make([]string, len(*in))
207
		copy(*out, *in)
208
	}
209
}
210

211
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Label.
212
func (in *Label) DeepCopy() *Label {
213
	if in == nil {
214
		return nil
215
	}
216
	out := new(Label)
217
	in.DeepCopyInto(out)
218
	return out
219
}
220

221
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
222
func (in *LabelAndAnnotationInfo) DeepCopyInto(out *LabelAndAnnotationInfo) {
223
	*out = *in
224
	in.LabelAndAnnotationNotFound.DeepCopyInto(&out.LabelAndAnnotationNotFound)
225
	if in.Annotations != nil {
226
		in, out := &in.Annotations, &out.Annotations
227
		*out = make([]Annotation, len(*in))
228
		for i := range *in {
229
			(*in)[i].DeepCopyInto(&(*out)[i])
230
		}
231
	}
232
	if in.Labels != nil {
233
		in, out := &in.Labels, &out.Labels
234
		*out = make([]Label, len(*in))
235
		for i := range *in {
236
			(*in)[i].DeepCopyInto(&(*out)[i])
237
		}
238
	}
239
}
240

241
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LabelAndAnnotationInfo.
242
func (in *LabelAndAnnotationInfo) DeepCopy() *LabelAndAnnotationInfo {
243
	if in == nil {
244
		return nil
245
	}
246
	out := new(LabelAndAnnotationInfo)
247
	in.DeepCopyInto(out)
248
	return out
249
}
250

251
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
252
func (in *LabelAndAnnotationNotFound) DeepCopyInto(out *LabelAndAnnotationNotFound) {
253
	*out = *in
254
	if in.Containers != nil {
255
		in, out := &in.Containers, &out.Containers
256
		*out = make([]string, len(*in))
257
		copy(*out, *in)
258
	}
259
	if in.InitContainers != nil {
260
		in, out := &in.InitContainers, &out.InitContainers
261
		*out = make([]string, len(*in))
262
		copy(*out, *in)
263
	}
264
}
265

266
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LabelAndAnnotationNotFound.
267
func (in *LabelAndAnnotationNotFound) DeepCopy() *LabelAndAnnotationNotFound {
268
	if in == nil {
269
		return nil
270
	}
271
	out := new(LabelAndAnnotationNotFound)
272
	in.DeepCopyInto(out)
273
	return out
274
}
275

276
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
277
func (in *LabelSelector) DeepCopyInto(out *LabelSelector) {
278
	*out = *in
279
	if in.MatchExpressions != nil {
280
		in, out := &in.MatchExpressions, &out.MatchExpressions
281
		*out = make([]MatchExpression, len(*in))
282
		for i := range *in {
283
			(*in)[i].DeepCopyInto(&(*out)[i])
284
		}
285
	}
286
}
287

288
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LabelSelector.
289
func (in *LabelSelector) DeepCopy() *LabelSelector {
290
	if in == nil {
291
		return nil
292
	}
293
	out := new(LabelSelector)
294
	in.DeepCopyInto(out)
295
	return out
296
}
297

298
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
299
func (in *Match) DeepCopyInto(out *Match) {
300
	*out = *in
301
	if in.Operations != nil {
302
		in, out := &in.Operations, &out.Operations
303
		*out = make([]string, len(*in))
304
		copy(*out, *in)
305
	}
306
	out.UserInfo = in.UserInfo
307
	if in.Kinds != nil {
308
		in, out := &in.Kinds, &out.Kinds
309
		*out = make([]Kind, len(*in))
310
		for i := range *in {
311
			(*in)[i].DeepCopyInto(&(*out)[i])
312
		}
313
	}
314
	out.Name = in.Name
315
	in.NamespaceSelector.DeepCopyInto(&out.NamespaceSelector)
316
	in.ExcludedNamespaces.DeepCopyInto(&out.ExcludedNamespaces)
317
	in.IncludedNamespaces.DeepCopyInto(&out.IncludedNamespaces)
318
	in.AnnotationSelector.DeepCopyInto(&out.AnnotationSelector)
319
	in.LabelSelector.DeepCopyInto(&out.LabelSelector)
320
	in.MatchConditions.DeepCopyInto(&out.MatchConditions)
321
}
322

323
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Match.
324
func (in *Match) DeepCopy() *Match {
325
	if in == nil {
326
		return nil
327
	}
328
	out := new(Match)
329
	in.DeepCopyInto(out)
330
	return out
331
}
332

333
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
334
func (in *MatchConditions) DeepCopyInto(out *MatchConditions) {
335
	*out = *in
336
	if in.Object != nil {
337
		in, out := &in.Object, &out.Object
338
		*out = make([]Obj, len(*in))
339
		copy(*out, *in)
340
	}
341
	if in.OldObject != nil {
342
		in, out := &in.OldObject, &out.OldObject
343
		*out = make([]Obj, len(*in))
344
		copy(*out, *in)
345
	}
346
}
347

348
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchConditions.
349
func (in *MatchConditions) DeepCopy() *MatchConditions {
350
	if in == nil {
351
		return nil
352
	}
353
	out := new(MatchConditions)
354
	in.DeepCopyInto(out)
355
	return out
356
}
357

358
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
359
func (in *MatchExpression) DeepCopyInto(out *MatchExpression) {
360
	*out = *in
361
	if in.Values != nil {
362
		in, out := &in.Values, &out.Values
363
		*out = make([]string, len(*in))
364
		copy(*out, *in)
365
	}
366
}
367

368
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchExpression.
369
func (in *MatchExpression) DeepCopy() *MatchExpression {
370
	if in == nil {
371
		return nil
372
	}
373
	out := new(MatchExpression)
374
	in.DeepCopyInto(out)
375
	return out
376
}
377

378
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
379
func (in *MutationConfig) DeepCopyInto(out *MutationConfig) {
380
	*out = *in
381
	in.LabelSelector.DeepCopyInto(&out.LabelSelector)
382
	if in.Containers != nil {
383
		in, out := &in.Containers, &out.Containers
384
		*out = make([]string, len(*in))
385
		copy(*out, *in)
386
	}
387
	if in.IgnoreNamespaces != nil {
388
		in, out := &in.IgnoreNamespaces, &out.IgnoreNamespaces
389
		*out = make([]string, len(*in))
390
		copy(*out, *in)
391
	}
392
	if in.Annotations != nil {
393
		in, out := &in.Annotations, &out.Annotations
394
		*out = make([]string, len(*in))
395
		copy(*out, *in)
396
	}
397
	if in.Volumes != nil {
398
		in, out := &in.Volumes, &out.Volumes
399
		*out = make([]string, len(*in))
400
		copy(*out, *in)
401
	}
402
	if in.TemplateRefs != nil {
403
		in, out := &in.TemplateRefs, &out.TemplateRefs
404
		*out = make([]string, len(*in))
405
		copy(*out, *in)
406
	}
407
	out.ObjectSelector = in.ObjectSelector
408
	in.Match.DeepCopyInto(&out.Match)
409
}
410

411
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MutationConfig.
412
func (in *MutationConfig) DeepCopy() *MutationConfig {
413
	if in == nil {
414
		return nil
415
	}
416
	out := new(MutationConfig)
417
	in.DeepCopyInto(out)
418
	return out
419
}
420

421
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
422
func (in *Name) DeepCopyInto(out *Name) {
423
	*out = *in
424
}
425

426
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Name.
427
func (in *Name) DeepCopy() *Name {
428
	if in == nil {
429
		return nil
430
	}
431
	out := new(Name)
432
	in.DeepCopyInto(out)
433
	return out
434
}
435

436
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
437
func (in *Namespace) DeepCopyInto(out *Namespace) {
438
	*out = *in
439
	if in.Values != nil {
440
		in, out := &in.Values, &out.Values
441
		*out = make([]string, len(*in))
442
		copy(*out, *in)
443
	}
444
	if in.Regex != nil {
445
		in, out := &in.Regex, &out.Regex
446
		*out = make([]string, len(*in))
447
		copy(*out, *in)
448
	}
449
}
450

451
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Namespace.
452
func (in *Namespace) DeepCopy() *Namespace {
453
	if in == nil {
454
		return nil
455
	}
456
	out := new(Namespace)
457
	in.DeepCopyInto(out)
458
	return out
459
}
460

461
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
462
func (in *NamespaceSelector) DeepCopyInto(out *NamespaceSelector) {
463
	*out = *in
464
	if in.MatchExpressions != nil {
465
		in, out := &in.MatchExpressions, &out.MatchExpressions
466
		*out = make([]MatchExpression, len(*in))
467
		for i := range *in {
468
			(*in)[i].DeepCopyInto(&(*out)[i])
469
		}
470
	}
471
}
472

473
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NamespaceSelector.
474
func (in *NamespaceSelector) DeepCopy() *NamespaceSelector {
475
	if in == nil {
476
		return nil
477
	}
478
	out := new(NamespaceSelector)
479
	in.DeepCopyInto(out)
480
	return out
481
}
482

483
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
484
func (in *Obj) DeepCopyInto(out *Obj) {
485
	*out = *in
486
}
487

488
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Obj.
489
func (in *Obj) DeepCopy() *Obj {
490
	if in == nil {
491
		return nil
492
	}
493
	out := new(Obj)
494
	in.DeepCopyInto(out)
495
	return out
496
}
497

498
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
499
func (in *ObjectSelector) DeepCopyInto(out *ObjectSelector) {
500
	*out = *in
501
}
502

503
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectSelector.
504
func (in *ObjectSelector) DeepCopy() *ObjectSelector {
505
	if in == nil {
506
		return nil
507
	}
508
	out := new(ObjectSelector)
509
	in.DeepCopyInto(out)
510
	return out
511
}
512

513
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
514
func (in *Rego) DeepCopyInto(out *Rego) {
515
	*out = *in
516
}
517

518
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rego.
519
func (in *Rego) DeepCopy() *Rego {
520
	if in == nil {
521
		return nil
522
	}
523
	out := new(Rego)
524
	in.DeepCopyInto(out)
525
	return out
526
}
527

528
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
529
func (in *ResourceStatus) DeepCopyInto(out *ResourceStatus) {
530
	*out = *in
531
}
532

533
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceStatus.
534
func (in *ResourceStatus) DeepCopy() *ResourceStatus {
535
	if in == nil {
536
		return nil
537
	}
538
	out := new(ResourceStatus)
539
	in.DeepCopyInto(out)
540
	return out
541
}
542

543
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
544
func (in *Rule) DeepCopyInto(out *Rule) {
545
	*out = *in
546
	if in.Simples != nil {
547
		in, out := &in.Simples, &out.Simples
548
		*out = make([]Simple, len(*in))
549
		copy(*out, *in)
550
	}
551
	out.Rego = in.Rego
552
}
553

554
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Rule.
555
func (in *Rule) DeepCopy() *Rule {
556
	if in == nil {
557
		return nil
558
	}
559
	out := new(Rule)
560
	in.DeepCopyInto(out)
561
	return out
562
}
563

564
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
565
func (in *Scope) DeepCopyInto(out *Scope) {
566
	*out = *in
567
	out.TypeMeta = in.TypeMeta
568
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
569
	in.Spec.DeepCopyInto(&out.Spec)
570
	in.Status.DeepCopyInto(&out.Status)
571
}
572

573
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Scope.
574
func (in *Scope) DeepCopy() *Scope {
575
	if in == nil {
576
		return nil
577
	}
578
	out := new(Scope)
579
	in.DeepCopyInto(out)
580
	return out
581
}
582

583
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
584
func (in *Scope) DeepCopyObject() runtime.Object {
585
	if c := in.DeepCopy(); c != nil {
586
		return c
587
	}
588
	return nil
589
}
590

591
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
592
func (in *ScopeList) DeepCopyInto(out *ScopeList) {
593
	*out = *in
594
	out.TypeMeta = in.TypeMeta
595
	in.ListMeta.DeepCopyInto(&out.ListMeta)
596
	if in.Items != nil {
597
		in, out := &in.Items, &out.Items
598
		*out = make([]Scope, len(*in))
599
		for i := range *in {
600
			(*in)[i].DeepCopyInto(&(*out)[i])
601
		}
602
	}
603
}
604

605
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScopeList.
606
func (in *ScopeList) DeepCopy() *ScopeList {
607
	if in == nil {
608
		return nil
609
	}
610
	out := new(ScopeList)
611
	in.DeepCopyInto(out)
612
	return out
613
}
614

615
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
616
func (in *ScopeList) DeepCopyObject() runtime.Object {
617
	if c := in.DeepCopy(); c != nil {
618
		return c
619
	}
620
	return nil
621
}
622

623
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
624
func (in *ScopeSpec) DeepCopyInto(out *ScopeSpec) {
625
	*out = *in
626
	if in.Items != nil {
627
		in, out := &in.Items, &out.Items
628
		*out = make([]Item, len(*in))
629
		for i := range *in {
630
			(*in)[i].DeepCopyInto(&(*out)[i])
631
		}
632
	}
633
}
634

635
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScopeSpec.
636
func (in *ScopeSpec) DeepCopy() *ScopeSpec {
637
	if in == nil {
638
		return nil
639
	}
640
	out := new(ScopeSpec)
641
	in.DeepCopyInto(out)
642
	return out
643
}
644

645
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
646
func (in *ScopeStatus) DeepCopyInto(out *ScopeStatus) {
647
	*out = *in
648
	if in.Conditions != nil {
649
		in, out := &in.Conditions, &out.Conditions
650
		*out = make([]Condition, len(*in))
651
		for i := range *in {
652
			(*in)[i].DeepCopyInto(&(*out)[i])
653
		}
654
	}
655
}
656

657
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScopeStatus.
658
func (in *ScopeStatus) DeepCopy() *ScopeStatus {
659
	if in == nil {
660
		return nil
661
	}
662
	out := new(ScopeStatus)
663
	in.DeepCopyInto(out)
664
	return out
665
}
666

667
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
668
func (in *SideEffectConfig) DeepCopyInto(out *SideEffectConfig) {
669
	*out = *in
670
	in.Match.DeepCopyInto(&out.Match)
671
	if in.TemplateRefs != nil {
672
		in, out := &in.TemplateRefs, &out.TemplateRefs
673
		*out = make([]string, len(*in))
674
		copy(*out, *in)
675
	}
676
}
677

678
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SideEffectConfig.
679
func (in *SideEffectConfig) DeepCopy() *SideEffectConfig {
680
	if in == nil {
681
		return nil
682
	}
683
	out := new(SideEffectConfig)
684
	in.DeepCopyInto(out)
685
	return out
686
}
687

688
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
689
func (in *Simple) DeepCopyInto(out *Simple) {
690
	*out = *in
691
}
692

693
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Simple.
694
func (in *Simple) DeepCopy() *Simple {
695
	if in == nil {
696
		return nil
697
	}
698
	out := new(Simple)
699
	in.DeepCopyInto(out)
700
	return out
701
}
702

703
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
704
func (in *Template) DeepCopyInto(out *Template) {
705
	*out = *in
706
	out.TypeMeta = in.TypeMeta
707
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
708
	out.Spec = in.Spec
709
	in.Status.DeepCopyInto(&out.Status)
710
}
711

712
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Template.
713
func (in *Template) DeepCopy() *Template {
714
	if in == nil {
715
		return nil
716
	}
717
	out := new(Template)
718
	in.DeepCopyInto(out)
719
	return out
720
}
721

722
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
723
func (in *Template) DeepCopyObject() runtime.Object {
724
	if c := in.DeepCopy(); c != nil {
725
		return c
726
	}
727
	return nil
728
}
729

730
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
731
func (in *TemplateList) DeepCopyInto(out *TemplateList) {
732
	*out = *in
733
	out.TypeMeta = in.TypeMeta
734
	in.ListMeta.DeepCopyInto(&out.ListMeta)
735
	if in.Items != nil {
736
		in, out := &in.Items, &out.Items
737
		*out = make([]Template, len(*in))
738
		for i := range *in {
739
			(*in)[i].DeepCopyInto(&(*out)[i])
740
		}
741
	}
742
}
743

744
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateList.
745
func (in *TemplateList) DeepCopy() *TemplateList {
746
	if in == nil {
747
		return nil
748
	}
749
	out := new(TemplateList)
750
	in.DeepCopyInto(out)
751
	return out
752
}
753

754
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
755
func (in *TemplateList) DeepCopyObject() runtime.Object {
756
	if c := in.DeepCopy(); c != nil {
757
		return c
758
	}
759
	return nil
760
}
761

762
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
763
func (in *TemplateSpec) DeepCopyInto(out *TemplateSpec) {
764
	*out = *in
765
}
766

767
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateSpec.
768
func (in *TemplateSpec) DeepCopy() *TemplateSpec {
769
	if in == nil {
770
		return nil
771
	}
772
	out := new(TemplateSpec)
773
	in.DeepCopyInto(out)
774
	return out
775
}
776

777
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
778
func (in *TemplateStatus) DeepCopyInto(out *TemplateStatus) {
779
	*out = *in
780
	if in.Conditions != nil {
781
		in, out := &in.Conditions, &out.Conditions
782
		*out = make([]Condition, len(*in))
783
		for i := range *in {
784
			(*in)[i].DeepCopyInto(&(*out)[i])
785
		}
786
	}
787
}
788

789
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TemplateStatus.
790
func (in *TemplateStatus) DeepCopy() *TemplateStatus {
791
	if in == nil {
792
		return nil
793
	}
794
	out := new(TemplateStatus)
795
	in.DeepCopyInto(out)
796
	return out
797
}
798

799
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
800
func (in *Trigger) DeepCopyInto(out *Trigger) {
801
	*out = *in
802
	out.TypeMeta = in.TypeMeta
803
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
804
	in.Spec.DeepCopyInto(&out.Spec)
805
	in.Status.DeepCopyInto(&out.Status)
806
}
807

808
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Trigger.
809
func (in *Trigger) DeepCopy() *Trigger {
810
	if in == nil {
811
		return nil
812
	}
813
	out := new(Trigger)
814
	in.DeepCopyInto(out)
815
	return out
816
}
817

818
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
819
func (in *Trigger) DeepCopyObject() runtime.Object {
820
	if c := in.DeepCopy(); c != nil {
821
		return c
822
	}
823
	return nil
824
}
825

826
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
827
func (in *TriggerInstance) DeepCopyInto(out *TriggerInstance) {
828
	*out = *in
829
	out.TypeMeta = in.TypeMeta
830
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
831
	in.Spec.DeepCopyInto(&out.Spec)
832
	in.Status.DeepCopyInto(&out.Status)
833
}
834

835
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerInstance.
836
func (in *TriggerInstance) DeepCopy() *TriggerInstance {
837
	if in == nil {
838
		return nil
839
	}
840
	out := new(TriggerInstance)
841
	in.DeepCopyInto(out)
842
	return out
843
}
844

845
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
846
func (in *TriggerInstance) DeepCopyObject() runtime.Object {
847
	if c := in.DeepCopy(); c != nil {
848
		return c
849
	}
850
	return nil
851
}
852

853
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
854
func (in *TriggerInstanceList) DeepCopyInto(out *TriggerInstanceList) {
855
	*out = *in
856
	out.TypeMeta = in.TypeMeta
857
	in.ListMeta.DeepCopyInto(&out.ListMeta)
858
	if in.Items != nil {
859
		in, out := &in.Items, &out.Items
860
		*out = make([]TriggerInstance, len(*in))
861
		for i := range *in {
862
			(*in)[i].DeepCopyInto(&(*out)[i])
863
		}
864
	}
865
}
866

867
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerInstanceList.
868
func (in *TriggerInstanceList) DeepCopy() *TriggerInstanceList {
869
	if in == nil {
870
		return nil
871
	}
872
	out := new(TriggerInstanceList)
873
	in.DeepCopyInto(out)
874
	return out
875
}
876

877
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
878
func (in *TriggerInstanceList) DeepCopyObject() runtime.Object {
879
	if c := in.DeepCopy(); c != nil {
880
		return c
881
	}
882
	return nil
883
}
884

885
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
886
func (in *TriggerInstanceStatus) DeepCopyInto(out *TriggerInstanceStatus) {
887
	*out = *in
888
	if in.ResourceStatus != nil {
889
		in, out := &in.ResourceStatus, &out.ResourceStatus
890
		*out = make([]ResourceStatus, len(*in))
891
		copy(*out, *in)
892
	}
893
}
894

895
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerInstanceStatus.
896
func (in *TriggerInstanceStatus) DeepCopy() *TriggerInstanceStatus {
897
	if in == nil {
898
		return nil
899
	}
900
	out := new(TriggerInstanceStatus)
901
	in.DeepCopyInto(out)
902
	return out
903
}
904

905
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
906
func (in *TriggerList) DeepCopyInto(out *TriggerList) {
907
	*out = *in
908
	out.TypeMeta = in.TypeMeta
909
	in.ListMeta.DeepCopyInto(&out.ListMeta)
910
	if in.Items != nil {
911
		in, out := &in.Items, &out.Items
912
		*out = make([]Trigger, len(*in))
913
		for i := range *in {
914
			(*in)[i].DeepCopyInto(&(*out)[i])
915
		}
916
	}
917
}
918

919
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerList.
920
func (in *TriggerList) DeepCopy() *TriggerList {
921
	if in == nil {
922
		return nil
923
	}
924
	out := new(TriggerList)
925
	in.DeepCopyInto(out)
926
	return out
927
}
928

929
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
930
func (in *TriggerList) DeepCopyObject() runtime.Object {
931
	if c := in.DeepCopy(); c != nil {
932
		return c
933
	}
934
	return nil
935
}
936

937
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
938
func (in *TriggerSpec) DeepCopyInto(out *TriggerSpec) {
939
	*out = *in
940
	if in.CreationConfigs != nil {
941
		in, out := &in.CreationConfigs, &out.CreationConfigs
942
		*out = make([]CreationConfig, len(*in))
943
		for i := range *in {
944
			(*in)[i].DeepCopyInto(&(*out)[i])
945
		}
946
	}
947
	if in.MutationConfigs != nil {
948
		in, out := &in.MutationConfigs, &out.MutationConfigs
949
		*out = make([]MutationConfig, len(*in))
950
		for i := range *in {
951
			(*in)[i].DeepCopyInto(&(*out)[i])
952
		}
953
	}
954
	if in.SideEffectConfigs != nil {
955
		in, out := &in.SideEffectConfigs, &out.SideEffectConfigs
956
		*out = make([]SideEffectConfig, len(*in))
957
		for i := range *in {
958
			(*in)[i].DeepCopyInto(&(*out)[i])
959
		}
960
	}
961
}
962

963
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerSpec.
964
func (in *TriggerSpec) DeepCopy() *TriggerSpec {
965
	if in == nil {
966
		return nil
967
	}
968
	out := new(TriggerSpec)
969
	in.DeepCopyInto(out)
970
	return out
971
}
972

973
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
974
func (in *TriggerStatus) DeepCopyInto(out *TriggerStatus) {
975
	*out = *in
976
	if in.Conditions != nil {
977
		in, out := &in.Conditions, &out.Conditions
978
		*out = make([]Condition, len(*in))
979
		for i := range *in {
980
			(*in)[i].DeepCopyInto(&(*out)[i])
981
		}
982
	}
983
}
984

985
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TriggerStatus.
986
func (in *TriggerStatus) DeepCopy() *TriggerStatus {
987
	if in == nil {
988
		return nil
989
	}
990
	out := new(TriggerStatus)
991
	in.DeepCopyInto(out)
992
	return out
993
}
994

995
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
996
func (in *UserInfo) DeepCopyInto(out *UserInfo) {
997
	*out = *in
998
}
999

1000
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserInfo.
1001
func (in *UserInfo) DeepCopy() *UserInfo {
1002
	if in == nil {
1003
		return nil
1004
	}
1005
	out := new(UserInfo)
1006
	in.DeepCopyInto(out)
1007
	return out
1008
}
1009

1010
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1011
func (in *VolumeMountAnnotation) DeepCopyInto(out *VolumeMountAnnotation) {
1012
	*out = *in
1013
	if in.InitContainerRefs != nil {
1014
		in, out := &in.InitContainerRefs, &out.InitContainerRefs
1015
		*out = make([]string, len(*in))
1016
		copy(*out, *in)
1017
	}
1018
	if in.ContainerRefs != nil {
1019
		in, out := &in.ContainerRefs, &out.ContainerRefs
1020
		*out = make([]string, len(*in))
1021
		copy(*out, *in)
1022
	}
1023
}
1024

1025
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeMountAnnotation.
1026
func (in *VolumeMountAnnotation) DeepCopy() *VolumeMountAnnotation {
1027
	if in == nil {
1028
		return nil
1029
	}
1030
	out := new(VolumeMountAnnotation)
1031
	in.DeepCopyInto(out)
1032
	return out
1033
}
1034

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.