blob: dd37f8dd8494dfef274842b0236e73727376a3c5 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001// +build !ignore_autogenerated
2
3/*
4Copyright The Kubernetes Authors.
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17*/
18
19// Code generated by deepcopy-gen. DO NOT EDIT.
20
21package v1beta1
22
23import (
24 core_v1 "k8s.io/api/core/v1"
25 v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
26 runtime "k8s.io/apimachinery/pkg/runtime"
27 intstr "k8s.io/apimachinery/pkg/util/intstr"
28)
29
30// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
31func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision) {
32 *out = *in
33 out.TypeMeta = in.TypeMeta
34 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
35 in.Data.DeepCopyInto(&out.Data)
36 return
37}
38
39// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevision.
40func (in *ControllerRevision) DeepCopy() *ControllerRevision {
41 if in == nil {
42 return nil
43 }
44 out := new(ControllerRevision)
45 in.DeepCopyInto(out)
46 return out
47}
48
49// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
50func (in *ControllerRevision) DeepCopyObject() runtime.Object {
51 if c := in.DeepCopy(); c != nil {
52 return c
53 }
54 return nil
55}
56
57// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
58func (in *ControllerRevisionList) DeepCopyInto(out *ControllerRevisionList) {
59 *out = *in
60 out.TypeMeta = in.TypeMeta
61 out.ListMeta = in.ListMeta
62 if in.Items != nil {
63 in, out := &in.Items, &out.Items
64 *out = make([]ControllerRevision, len(*in))
65 for i := range *in {
66 (*in)[i].DeepCopyInto(&(*out)[i])
67 }
68 }
69 return
70}
71
72// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevisionList.
73func (in *ControllerRevisionList) DeepCopy() *ControllerRevisionList {
74 if in == nil {
75 return nil
76 }
77 out := new(ControllerRevisionList)
78 in.DeepCopyInto(out)
79 return out
80}
81
82// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
83func (in *ControllerRevisionList) DeepCopyObject() runtime.Object {
84 if c := in.DeepCopy(); c != nil {
85 return c
86 }
87 return nil
88}
89
90// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
91func (in *Deployment) DeepCopyInto(out *Deployment) {
92 *out = *in
93 out.TypeMeta = in.TypeMeta
94 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
95 in.Spec.DeepCopyInto(&out.Spec)
96 in.Status.DeepCopyInto(&out.Status)
97 return
98}
99
100// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Deployment.
101func (in *Deployment) DeepCopy() *Deployment {
102 if in == nil {
103 return nil
104 }
105 out := new(Deployment)
106 in.DeepCopyInto(out)
107 return out
108}
109
110// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
111func (in *Deployment) DeepCopyObject() runtime.Object {
112 if c := in.DeepCopy(); c != nil {
113 return c
114 }
115 return nil
116}
117
118// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
119func (in *DeploymentCondition) DeepCopyInto(out *DeploymentCondition) {
120 *out = *in
121 in.LastUpdateTime.DeepCopyInto(&out.LastUpdateTime)
122 in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
123 return
124}
125
126// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentCondition.
127func (in *DeploymentCondition) DeepCopy() *DeploymentCondition {
128 if in == nil {
129 return nil
130 }
131 out := new(DeploymentCondition)
132 in.DeepCopyInto(out)
133 return out
134}
135
136// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
137func (in *DeploymentList) DeepCopyInto(out *DeploymentList) {
138 *out = *in
139 out.TypeMeta = in.TypeMeta
140 out.ListMeta = in.ListMeta
141 if in.Items != nil {
142 in, out := &in.Items, &out.Items
143 *out = make([]Deployment, len(*in))
144 for i := range *in {
145 (*in)[i].DeepCopyInto(&(*out)[i])
146 }
147 }
148 return
149}
150
151// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentList.
152func (in *DeploymentList) DeepCopy() *DeploymentList {
153 if in == nil {
154 return nil
155 }
156 out := new(DeploymentList)
157 in.DeepCopyInto(out)
158 return out
159}
160
161// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
162func (in *DeploymentList) DeepCopyObject() runtime.Object {
163 if c := in.DeepCopy(); c != nil {
164 return c
165 }
166 return nil
167}
168
169// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
170func (in *DeploymentRollback) DeepCopyInto(out *DeploymentRollback) {
171 *out = *in
172 out.TypeMeta = in.TypeMeta
173 if in.UpdatedAnnotations != nil {
174 in, out := &in.UpdatedAnnotations, &out.UpdatedAnnotations
175 *out = make(map[string]string, len(*in))
176 for key, val := range *in {
177 (*out)[key] = val
178 }
179 }
180 out.RollbackTo = in.RollbackTo
181 return
182}
183
184// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentRollback.
185func (in *DeploymentRollback) DeepCopy() *DeploymentRollback {
186 if in == nil {
187 return nil
188 }
189 out := new(DeploymentRollback)
190 in.DeepCopyInto(out)
191 return out
192}
193
194// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
195func (in *DeploymentRollback) DeepCopyObject() runtime.Object {
196 if c := in.DeepCopy(); c != nil {
197 return c
198 }
199 return nil
200}
201
202// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
203func (in *DeploymentSpec) DeepCopyInto(out *DeploymentSpec) {
204 *out = *in
205 if in.Replicas != nil {
206 in, out := &in.Replicas, &out.Replicas
207 if *in == nil {
208 *out = nil
209 } else {
210 *out = new(int32)
211 **out = **in
212 }
213 }
214 if in.Selector != nil {
215 in, out := &in.Selector, &out.Selector
216 if *in == nil {
217 *out = nil
218 } else {
219 *out = new(v1.LabelSelector)
220 (*in).DeepCopyInto(*out)
221 }
222 }
223 in.Template.DeepCopyInto(&out.Template)
224 in.Strategy.DeepCopyInto(&out.Strategy)
225 if in.RevisionHistoryLimit != nil {
226 in, out := &in.RevisionHistoryLimit, &out.RevisionHistoryLimit
227 if *in == nil {
228 *out = nil
229 } else {
230 *out = new(int32)
231 **out = **in
232 }
233 }
234 if in.RollbackTo != nil {
235 in, out := &in.RollbackTo, &out.RollbackTo
236 if *in == nil {
237 *out = nil
238 } else {
239 *out = new(RollbackConfig)
240 **out = **in
241 }
242 }
243 if in.ProgressDeadlineSeconds != nil {
244 in, out := &in.ProgressDeadlineSeconds, &out.ProgressDeadlineSeconds
245 if *in == nil {
246 *out = nil
247 } else {
248 *out = new(int32)
249 **out = **in
250 }
251 }
252 return
253}
254
255// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentSpec.
256func (in *DeploymentSpec) DeepCopy() *DeploymentSpec {
257 if in == nil {
258 return nil
259 }
260 out := new(DeploymentSpec)
261 in.DeepCopyInto(out)
262 return out
263}
264
265// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
266func (in *DeploymentStatus) DeepCopyInto(out *DeploymentStatus) {
267 *out = *in
268 if in.Conditions != nil {
269 in, out := &in.Conditions, &out.Conditions
270 *out = make([]DeploymentCondition, len(*in))
271 for i := range *in {
272 (*in)[i].DeepCopyInto(&(*out)[i])
273 }
274 }
275 if in.CollisionCount != nil {
276 in, out := &in.CollisionCount, &out.CollisionCount
277 if *in == nil {
278 *out = nil
279 } else {
280 *out = new(int32)
281 **out = **in
282 }
283 }
284 return
285}
286
287// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentStatus.
288func (in *DeploymentStatus) DeepCopy() *DeploymentStatus {
289 if in == nil {
290 return nil
291 }
292 out := new(DeploymentStatus)
293 in.DeepCopyInto(out)
294 return out
295}
296
297// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
298func (in *DeploymentStrategy) DeepCopyInto(out *DeploymentStrategy) {
299 *out = *in
300 if in.RollingUpdate != nil {
301 in, out := &in.RollingUpdate, &out.RollingUpdate
302 if *in == nil {
303 *out = nil
304 } else {
305 *out = new(RollingUpdateDeployment)
306 (*in).DeepCopyInto(*out)
307 }
308 }
309 return
310}
311
312// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeploymentStrategy.
313func (in *DeploymentStrategy) DeepCopy() *DeploymentStrategy {
314 if in == nil {
315 return nil
316 }
317 out := new(DeploymentStrategy)
318 in.DeepCopyInto(out)
319 return out
320}
321
322// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
323func (in *RollbackConfig) DeepCopyInto(out *RollbackConfig) {
324 *out = *in
325 return
326}
327
328// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollbackConfig.
329func (in *RollbackConfig) DeepCopy() *RollbackConfig {
330 if in == nil {
331 return nil
332 }
333 out := new(RollbackConfig)
334 in.DeepCopyInto(out)
335 return out
336}
337
338// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
339func (in *RollingUpdateDeployment) DeepCopyInto(out *RollingUpdateDeployment) {
340 *out = *in
341 if in.MaxUnavailable != nil {
342 in, out := &in.MaxUnavailable, &out.MaxUnavailable
343 if *in == nil {
344 *out = nil
345 } else {
346 *out = new(intstr.IntOrString)
347 **out = **in
348 }
349 }
350 if in.MaxSurge != nil {
351 in, out := &in.MaxSurge, &out.MaxSurge
352 if *in == nil {
353 *out = nil
354 } else {
355 *out = new(intstr.IntOrString)
356 **out = **in
357 }
358 }
359 return
360}
361
362// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollingUpdateDeployment.
363func (in *RollingUpdateDeployment) DeepCopy() *RollingUpdateDeployment {
364 if in == nil {
365 return nil
366 }
367 out := new(RollingUpdateDeployment)
368 in.DeepCopyInto(out)
369 return out
370}
371
372// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
373func (in *RollingUpdateStatefulSetStrategy) DeepCopyInto(out *RollingUpdateStatefulSetStrategy) {
374 *out = *in
375 if in.Partition != nil {
376 in, out := &in.Partition, &out.Partition
377 if *in == nil {
378 *out = nil
379 } else {
380 *out = new(int32)
381 **out = **in
382 }
383 }
384 return
385}
386
387// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RollingUpdateStatefulSetStrategy.
388func (in *RollingUpdateStatefulSetStrategy) DeepCopy() *RollingUpdateStatefulSetStrategy {
389 if in == nil {
390 return nil
391 }
392 out := new(RollingUpdateStatefulSetStrategy)
393 in.DeepCopyInto(out)
394 return out
395}
396
397// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
398func (in *Scale) DeepCopyInto(out *Scale) {
399 *out = *in
400 out.TypeMeta = in.TypeMeta
401 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
402 out.Spec = in.Spec
403 in.Status.DeepCopyInto(&out.Status)
404 return
405}
406
407// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Scale.
408func (in *Scale) DeepCopy() *Scale {
409 if in == nil {
410 return nil
411 }
412 out := new(Scale)
413 in.DeepCopyInto(out)
414 return out
415}
416
417// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
418func (in *Scale) DeepCopyObject() runtime.Object {
419 if c := in.DeepCopy(); c != nil {
420 return c
421 }
422 return nil
423}
424
425// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
426func (in *ScaleSpec) DeepCopyInto(out *ScaleSpec) {
427 *out = *in
428 return
429}
430
431// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScaleSpec.
432func (in *ScaleSpec) DeepCopy() *ScaleSpec {
433 if in == nil {
434 return nil
435 }
436 out := new(ScaleSpec)
437 in.DeepCopyInto(out)
438 return out
439}
440
441// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
442func (in *ScaleStatus) DeepCopyInto(out *ScaleStatus) {
443 *out = *in
444 if in.Selector != nil {
445 in, out := &in.Selector, &out.Selector
446 *out = make(map[string]string, len(*in))
447 for key, val := range *in {
448 (*out)[key] = val
449 }
450 }
451 return
452}
453
454// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScaleStatus.
455func (in *ScaleStatus) DeepCopy() *ScaleStatus {
456 if in == nil {
457 return nil
458 }
459 out := new(ScaleStatus)
460 in.DeepCopyInto(out)
461 return out
462}
463
464// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
465func (in *StatefulSet) DeepCopyInto(out *StatefulSet) {
466 *out = *in
467 out.TypeMeta = in.TypeMeta
468 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
469 in.Spec.DeepCopyInto(&out.Spec)
470 in.Status.DeepCopyInto(&out.Status)
471 return
472}
473
474// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSet.
475func (in *StatefulSet) DeepCopy() *StatefulSet {
476 if in == nil {
477 return nil
478 }
479 out := new(StatefulSet)
480 in.DeepCopyInto(out)
481 return out
482}
483
484// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
485func (in *StatefulSet) DeepCopyObject() runtime.Object {
486 if c := in.DeepCopy(); c != nil {
487 return c
488 }
489 return nil
490}
491
492// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
493func (in *StatefulSetCondition) DeepCopyInto(out *StatefulSetCondition) {
494 *out = *in
495 in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
496 return
497}
498
499// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetCondition.
500func (in *StatefulSetCondition) DeepCopy() *StatefulSetCondition {
501 if in == nil {
502 return nil
503 }
504 out := new(StatefulSetCondition)
505 in.DeepCopyInto(out)
506 return out
507}
508
509// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
510func (in *StatefulSetList) DeepCopyInto(out *StatefulSetList) {
511 *out = *in
512 out.TypeMeta = in.TypeMeta
513 out.ListMeta = in.ListMeta
514 if in.Items != nil {
515 in, out := &in.Items, &out.Items
516 *out = make([]StatefulSet, len(*in))
517 for i := range *in {
518 (*in)[i].DeepCopyInto(&(*out)[i])
519 }
520 }
521 return
522}
523
524// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetList.
525func (in *StatefulSetList) DeepCopy() *StatefulSetList {
526 if in == nil {
527 return nil
528 }
529 out := new(StatefulSetList)
530 in.DeepCopyInto(out)
531 return out
532}
533
534// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
535func (in *StatefulSetList) DeepCopyObject() runtime.Object {
536 if c := in.DeepCopy(); c != nil {
537 return c
538 }
539 return nil
540}
541
542// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
543func (in *StatefulSetSpec) DeepCopyInto(out *StatefulSetSpec) {
544 *out = *in
545 if in.Replicas != nil {
546 in, out := &in.Replicas, &out.Replicas
547 if *in == nil {
548 *out = nil
549 } else {
550 *out = new(int32)
551 **out = **in
552 }
553 }
554 if in.Selector != nil {
555 in, out := &in.Selector, &out.Selector
556 if *in == nil {
557 *out = nil
558 } else {
559 *out = new(v1.LabelSelector)
560 (*in).DeepCopyInto(*out)
561 }
562 }
563 in.Template.DeepCopyInto(&out.Template)
564 if in.VolumeClaimTemplates != nil {
565 in, out := &in.VolumeClaimTemplates, &out.VolumeClaimTemplates
566 *out = make([]core_v1.PersistentVolumeClaim, len(*in))
567 for i := range *in {
568 (*in)[i].DeepCopyInto(&(*out)[i])
569 }
570 }
571 in.UpdateStrategy.DeepCopyInto(&out.UpdateStrategy)
572 if in.RevisionHistoryLimit != nil {
573 in, out := &in.RevisionHistoryLimit, &out.RevisionHistoryLimit
574 if *in == nil {
575 *out = nil
576 } else {
577 *out = new(int32)
578 **out = **in
579 }
580 }
581 return
582}
583
584// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetSpec.
585func (in *StatefulSetSpec) DeepCopy() *StatefulSetSpec {
586 if in == nil {
587 return nil
588 }
589 out := new(StatefulSetSpec)
590 in.DeepCopyInto(out)
591 return out
592}
593
594// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
595func (in *StatefulSetStatus) DeepCopyInto(out *StatefulSetStatus) {
596 *out = *in
597 if in.ObservedGeneration != nil {
598 in, out := &in.ObservedGeneration, &out.ObservedGeneration
599 if *in == nil {
600 *out = nil
601 } else {
602 *out = new(int64)
603 **out = **in
604 }
605 }
606 if in.CollisionCount != nil {
607 in, out := &in.CollisionCount, &out.CollisionCount
608 if *in == nil {
609 *out = nil
610 } else {
611 *out = new(int32)
612 **out = **in
613 }
614 }
615 if in.Conditions != nil {
616 in, out := &in.Conditions, &out.Conditions
617 *out = make([]StatefulSetCondition, len(*in))
618 for i := range *in {
619 (*in)[i].DeepCopyInto(&(*out)[i])
620 }
621 }
622 return
623}
624
625// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetStatus.
626func (in *StatefulSetStatus) DeepCopy() *StatefulSetStatus {
627 if in == nil {
628 return nil
629 }
630 out := new(StatefulSetStatus)
631 in.DeepCopyInto(out)
632 return out
633}
634
635// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
636func (in *StatefulSetUpdateStrategy) DeepCopyInto(out *StatefulSetUpdateStrategy) {
637 *out = *in
638 if in.RollingUpdate != nil {
639 in, out := &in.RollingUpdate, &out.RollingUpdate
640 if *in == nil {
641 *out = nil
642 } else {
643 *out = new(RollingUpdateStatefulSetStrategy)
644 (*in).DeepCopyInto(*out)
645 }
646 }
647 return
648}
649
650// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StatefulSetUpdateStrategy.
651func (in *StatefulSetUpdateStrategy) DeepCopy() *StatefulSetUpdateStrategy {
652 if in == nil {
653 return nil
654 }
655 out := new(StatefulSetUpdateStrategy)
656 in.DeepCopyInto(out)
657 return out
658}