crossplane

Форк
0
/
zz_generated.deepcopy.go 
497 строк · 14.5 Кб
1
//go:build !ignore_autogenerated
2

3
/*
4
Copyright 2021 The Crossplane Authors.
5

6
Licensed under the Apache License, Version 2.0 (the "License");
7
you may not use this file except in compliance with the License.
8
You may obtain a copy of the License at
9

10
    http://www.apache.org/licenses/LICENSE-2.0
11

12
Unless required by applicable law or agreed to in writing, software
13
distributed under the License is distributed on an "AS IS" BASIS,
14
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
See the License for the specific language governing permissions and
16
limitations under the License.
17
*/
18

19
// Code generated by controller-gen. DO NOT EDIT.
20

21
package v1beta1
22

23
import (
24
	"k8s.io/api/apps/v1"
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 *Dependency) DeepCopyInto(out *Dependency) {
30
	*out = *in
31
}
32

33
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Dependency.
34
func (in *Dependency) DeepCopy() *Dependency {
35
	if in == nil {
36
		return nil
37
	}
38
	out := new(Dependency)
39
	in.DeepCopyInto(out)
40
	return out
41
}
42

43
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
44
func (in *DeploymentRuntimeConfig) DeepCopyInto(out *DeploymentRuntimeConfig) {
45
	*out = *in
46
	out.TypeMeta = in.TypeMeta
47
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
48
	in.Spec.DeepCopyInto(&out.Spec)
49
}
50

51
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentRuntimeConfig.
52
func (in *DeploymentRuntimeConfig) DeepCopy() *DeploymentRuntimeConfig {
53
	if in == nil {
54
		return nil
55
	}
56
	out := new(DeploymentRuntimeConfig)
57
	in.DeepCopyInto(out)
58
	return out
59
}
60

61
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
62
func (in *DeploymentRuntimeConfig) DeepCopyObject() runtime.Object {
63
	if c := in.DeepCopy(); c != nil {
64
		return c
65
	}
66
	return nil
67
}
68

69
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
70
func (in *DeploymentRuntimeConfigList) DeepCopyInto(out *DeploymentRuntimeConfigList) {
71
	*out = *in
72
	out.TypeMeta = in.TypeMeta
73
	in.ListMeta.DeepCopyInto(&out.ListMeta)
74
	if in.Items != nil {
75
		in, out := &in.Items, &out.Items
76
		*out = make([]DeploymentRuntimeConfig, len(*in))
77
		for i := range *in {
78
			(*in)[i].DeepCopyInto(&(*out)[i])
79
		}
80
	}
81
}
82

83
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentRuntimeConfigList.
84
func (in *DeploymentRuntimeConfigList) DeepCopy() *DeploymentRuntimeConfigList {
85
	if in == nil {
86
		return nil
87
	}
88
	out := new(DeploymentRuntimeConfigList)
89
	in.DeepCopyInto(out)
90
	return out
91
}
92

93
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
94
func (in *DeploymentRuntimeConfigList) DeepCopyObject() runtime.Object {
95
	if c := in.DeepCopy(); c != nil {
96
		return c
97
	}
98
	return nil
99
}
100

101
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
102
func (in *DeploymentRuntimeConfigSpec) DeepCopyInto(out *DeploymentRuntimeConfigSpec) {
103
	*out = *in
104
	if in.DeploymentTemplate != nil {
105
		in, out := &in.DeploymentTemplate, &out.DeploymentTemplate
106
		*out = new(DeploymentTemplate)
107
		(*in).DeepCopyInto(*out)
108
	}
109
	if in.ServiceTemplate != nil {
110
		in, out := &in.ServiceTemplate, &out.ServiceTemplate
111
		*out = new(ServiceTemplate)
112
		(*in).DeepCopyInto(*out)
113
	}
114
	if in.ServiceAccountTemplate != nil {
115
		in, out := &in.ServiceAccountTemplate, &out.ServiceAccountTemplate
116
		*out = new(ServiceAccountTemplate)
117
		(*in).DeepCopyInto(*out)
118
	}
119
}
120

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

131
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
132
func (in *DeploymentTemplate) DeepCopyInto(out *DeploymentTemplate) {
133
	*out = *in
134
	if in.Metadata != nil {
135
		in, out := &in.Metadata, &out.Metadata
136
		*out = new(ObjectMeta)
137
		(*in).DeepCopyInto(*out)
138
	}
139
	if in.Spec != nil {
140
		in, out := &in.Spec, &out.Spec
141
		*out = new(v1.DeploymentSpec)
142
		(*in).DeepCopyInto(*out)
143
	}
144
}
145

146
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentTemplate.
147
func (in *DeploymentTemplate) DeepCopy() *DeploymentTemplate {
148
	if in == nil {
149
		return nil
150
	}
151
	out := new(DeploymentTemplate)
152
	in.DeepCopyInto(out)
153
	return out
154
}
155

156
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
157
func (in *Function) DeepCopyInto(out *Function) {
158
	*out = *in
159
	out.TypeMeta = in.TypeMeta
160
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
161
	in.Spec.DeepCopyInto(&out.Spec)
162
	in.Status.DeepCopyInto(&out.Status)
163
}
164

165
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Function.
166
func (in *Function) DeepCopy() *Function {
167
	if in == nil {
168
		return nil
169
	}
170
	out := new(Function)
171
	in.DeepCopyInto(out)
172
	return out
173
}
174

175
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
176
func (in *Function) DeepCopyObject() runtime.Object {
177
	if c := in.DeepCopy(); c != nil {
178
		return c
179
	}
180
	return nil
181
}
182

183
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
184
func (in *FunctionList) DeepCopyInto(out *FunctionList) {
185
	*out = *in
186
	out.TypeMeta = in.TypeMeta
187
	in.ListMeta.DeepCopyInto(&out.ListMeta)
188
	if in.Items != nil {
189
		in, out := &in.Items, &out.Items
190
		*out = make([]Function, len(*in))
191
		for i := range *in {
192
			(*in)[i].DeepCopyInto(&(*out)[i])
193
		}
194
	}
195
}
196

197
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionList.
198
func (in *FunctionList) DeepCopy() *FunctionList {
199
	if in == nil {
200
		return nil
201
	}
202
	out := new(FunctionList)
203
	in.DeepCopyInto(out)
204
	return out
205
}
206

207
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
208
func (in *FunctionList) DeepCopyObject() runtime.Object {
209
	if c := in.DeepCopy(); c != nil {
210
		return c
211
	}
212
	return nil
213
}
214

215
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
216
func (in *FunctionRevision) DeepCopyInto(out *FunctionRevision) {
217
	*out = *in
218
	out.TypeMeta = in.TypeMeta
219
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
220
	in.Spec.DeepCopyInto(&out.Spec)
221
	in.Status.DeepCopyInto(&out.Status)
222
}
223

224
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionRevision.
225
func (in *FunctionRevision) DeepCopy() *FunctionRevision {
226
	if in == nil {
227
		return nil
228
	}
229
	out := new(FunctionRevision)
230
	in.DeepCopyInto(out)
231
	return out
232
}
233

234
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
235
func (in *FunctionRevision) DeepCopyObject() runtime.Object {
236
	if c := in.DeepCopy(); c != nil {
237
		return c
238
	}
239
	return nil
240
}
241

242
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
243
func (in *FunctionRevisionList) DeepCopyInto(out *FunctionRevisionList) {
244
	*out = *in
245
	out.TypeMeta = in.TypeMeta
246
	in.ListMeta.DeepCopyInto(&out.ListMeta)
247
	if in.Items != nil {
248
		in, out := &in.Items, &out.Items
249
		*out = make([]FunctionRevision, len(*in))
250
		for i := range *in {
251
			(*in)[i].DeepCopyInto(&(*out)[i])
252
		}
253
	}
254
}
255

256
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionRevisionList.
257
func (in *FunctionRevisionList) DeepCopy() *FunctionRevisionList {
258
	if in == nil {
259
		return nil
260
	}
261
	out := new(FunctionRevisionList)
262
	in.DeepCopyInto(out)
263
	return out
264
}
265

266
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
267
func (in *FunctionRevisionList) DeepCopyObject() runtime.Object {
268
	if c := in.DeepCopy(); c != nil {
269
		return c
270
	}
271
	return nil
272
}
273

274
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
275
func (in *FunctionRevisionSpec) DeepCopyInto(out *FunctionRevisionSpec) {
276
	*out = *in
277
	in.PackageRevisionSpec.DeepCopyInto(&out.PackageRevisionSpec)
278
	in.PackageRevisionRuntimeSpec.DeepCopyInto(&out.PackageRevisionRuntimeSpec)
279
}
280

281
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionRevisionSpec.
282
func (in *FunctionRevisionSpec) DeepCopy() *FunctionRevisionSpec {
283
	if in == nil {
284
		return nil
285
	}
286
	out := new(FunctionRevisionSpec)
287
	in.DeepCopyInto(out)
288
	return out
289
}
290

291
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
292
func (in *FunctionRevisionStatus) DeepCopyInto(out *FunctionRevisionStatus) {
293
	*out = *in
294
	in.PackageRevisionStatus.DeepCopyInto(&out.PackageRevisionStatus)
295
}
296

297
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionRevisionStatus.
298
func (in *FunctionRevisionStatus) DeepCopy() *FunctionRevisionStatus {
299
	if in == nil {
300
		return nil
301
	}
302
	out := new(FunctionRevisionStatus)
303
	in.DeepCopyInto(out)
304
	return out
305
}
306

307
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
308
func (in *FunctionSpec) DeepCopyInto(out *FunctionSpec) {
309
	*out = *in
310
	in.PackageSpec.DeepCopyInto(&out.PackageSpec)
311
	in.PackageRuntimeSpec.DeepCopyInto(&out.PackageRuntimeSpec)
312
}
313

314
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionSpec.
315
func (in *FunctionSpec) DeepCopy() *FunctionSpec {
316
	if in == nil {
317
		return nil
318
	}
319
	out := new(FunctionSpec)
320
	in.DeepCopyInto(out)
321
	return out
322
}
323

324
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
325
func (in *FunctionStatus) DeepCopyInto(out *FunctionStatus) {
326
	*out = *in
327
	in.ConditionedStatus.DeepCopyInto(&out.ConditionedStatus)
328
	out.PackageStatus = in.PackageStatus
329
}
330

331
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FunctionStatus.
332
func (in *FunctionStatus) DeepCopy() *FunctionStatus {
333
	if in == nil {
334
		return nil
335
	}
336
	out := new(FunctionStatus)
337
	in.DeepCopyInto(out)
338
	return out
339
}
340

341
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
342
func (in *Lock) DeepCopyInto(out *Lock) {
343
	*out = *in
344
	out.TypeMeta = in.TypeMeta
345
	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
346
	if in.Packages != nil {
347
		in, out := &in.Packages, &out.Packages
348
		*out = make([]LockPackage, len(*in))
349
		for i := range *in {
350
			(*in)[i].DeepCopyInto(&(*out)[i])
351
		}
352
	}
353
}
354

355
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Lock.
356
func (in *Lock) DeepCopy() *Lock {
357
	if in == nil {
358
		return nil
359
	}
360
	out := new(Lock)
361
	in.DeepCopyInto(out)
362
	return out
363
}
364

365
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
366
func (in *Lock) DeepCopyObject() runtime.Object {
367
	if c := in.DeepCopy(); c != nil {
368
		return c
369
	}
370
	return nil
371
}
372

373
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
374
func (in *LockList) DeepCopyInto(out *LockList) {
375
	*out = *in
376
	out.TypeMeta = in.TypeMeta
377
	in.ListMeta.DeepCopyInto(&out.ListMeta)
378
	if in.Items != nil {
379
		in, out := &in.Items, &out.Items
380
		*out = make([]Lock, len(*in))
381
		for i := range *in {
382
			(*in)[i].DeepCopyInto(&(*out)[i])
383
		}
384
	}
385
}
386

387
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LockList.
388
func (in *LockList) DeepCopy() *LockList {
389
	if in == nil {
390
		return nil
391
	}
392
	out := new(LockList)
393
	in.DeepCopyInto(out)
394
	return out
395
}
396

397
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
398
func (in *LockList) DeepCopyObject() runtime.Object {
399
	if c := in.DeepCopy(); c != nil {
400
		return c
401
	}
402
	return nil
403
}
404

405
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
406
func (in *LockPackage) DeepCopyInto(out *LockPackage) {
407
	*out = *in
408
	if in.Dependencies != nil {
409
		in, out := &in.Dependencies, &out.Dependencies
410
		*out = make([]Dependency, len(*in))
411
		copy(*out, *in)
412
	}
413
}
414

415
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LockPackage.
416
func (in *LockPackage) DeepCopy() *LockPackage {
417
	if in == nil {
418
		return nil
419
	}
420
	out := new(LockPackage)
421
	in.DeepCopyInto(out)
422
	return out
423
}
424

425
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
426
func (in *ObjectMeta) DeepCopyInto(out *ObjectMeta) {
427
	*out = *in
428
	if in.Name != nil {
429
		in, out := &in.Name, &out.Name
430
		*out = new(string)
431
		**out = **in
432
	}
433
	if in.Annotations != nil {
434
		in, out := &in.Annotations, &out.Annotations
435
		*out = make(map[string]string, len(*in))
436
		for key, val := range *in {
437
			(*out)[key] = val
438
		}
439
	}
440
	if in.Labels != nil {
441
		in, out := &in.Labels, &out.Labels
442
		*out = make(map[string]string, len(*in))
443
		for key, val := range *in {
444
			(*out)[key] = val
445
		}
446
	}
447
}
448

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

459
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
460
func (in *ServiceAccountTemplate) DeepCopyInto(out *ServiceAccountTemplate) {
461
	*out = *in
462
	if in.Metadata != nil {
463
		in, out := &in.Metadata, &out.Metadata
464
		*out = new(ObjectMeta)
465
		(*in).DeepCopyInto(*out)
466
	}
467
}
468

469
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceAccountTemplate.
470
func (in *ServiceAccountTemplate) DeepCopy() *ServiceAccountTemplate {
471
	if in == nil {
472
		return nil
473
	}
474
	out := new(ServiceAccountTemplate)
475
	in.DeepCopyInto(out)
476
	return out
477
}
478

479
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
480
func (in *ServiceTemplate) DeepCopyInto(out *ServiceTemplate) {
481
	*out = *in
482
	if in.Metadata != nil {
483
		in, out := &in.Metadata, &out.Metadata
484
		*out = new(ObjectMeta)
485
		(*in).DeepCopyInto(*out)
486
	}
487
}
488

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

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

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

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

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