1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 package v1alpha1
26
27 import (
28 k8sv1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/k8s/v1alpha1"
29 runtime "k8s.io/apimachinery/pkg/runtime"
30 )
31
32
33 func (in *AddonsconfigAddonsConfig) DeepCopyInto(out *AddonsconfigAddonsConfig) {
34 *out = *in
35 if in.AdvancedApiOpsConfig != nil {
36 in, out := &in.AdvancedApiOpsConfig, &out.AdvancedApiOpsConfig
37 *out = new(AddonsconfigAdvancedApiOpsConfig)
38 (*in).DeepCopyInto(*out)
39 }
40 if in.ApiSecurityConfig != nil {
41 in, out := &in.ApiSecurityConfig, &out.ApiSecurityConfig
42 *out = new(AddonsconfigApiSecurityConfig)
43 (*in).DeepCopyInto(*out)
44 }
45 if in.ConnectorsPlatformConfig != nil {
46 in, out := &in.ConnectorsPlatformConfig, &out.ConnectorsPlatformConfig
47 *out = new(AddonsconfigConnectorsPlatformConfig)
48 (*in).DeepCopyInto(*out)
49 }
50 if in.IntegrationConfig != nil {
51 in, out := &in.IntegrationConfig, &out.IntegrationConfig
52 *out = new(AddonsconfigIntegrationConfig)
53 (*in).DeepCopyInto(*out)
54 }
55 if in.MonetizationConfig != nil {
56 in, out := &in.MonetizationConfig, &out.MonetizationConfig
57 *out = new(AddonsconfigMonetizationConfig)
58 (*in).DeepCopyInto(*out)
59 }
60 return
61 }
62
63
64 func (in *AddonsconfigAddonsConfig) DeepCopy() *AddonsconfigAddonsConfig {
65 if in == nil {
66 return nil
67 }
68 out := new(AddonsconfigAddonsConfig)
69 in.DeepCopyInto(out)
70 return out
71 }
72
73
74 func (in *AddonsconfigAdvancedApiOpsConfig) DeepCopyInto(out *AddonsconfigAdvancedApiOpsConfig) {
75 *out = *in
76 if in.Enabled != nil {
77 in, out := &in.Enabled, &out.Enabled
78 *out = new(bool)
79 **out = **in
80 }
81 return
82 }
83
84
85 func (in *AddonsconfigAdvancedApiOpsConfig) DeepCopy() *AddonsconfigAdvancedApiOpsConfig {
86 if in == nil {
87 return nil
88 }
89 out := new(AddonsconfigAdvancedApiOpsConfig)
90 in.DeepCopyInto(out)
91 return out
92 }
93
94
95 func (in *AddonsconfigApiSecurityConfig) DeepCopyInto(out *AddonsconfigApiSecurityConfig) {
96 *out = *in
97 if in.Enabled != nil {
98 in, out := &in.Enabled, &out.Enabled
99 *out = new(bool)
100 **out = **in
101 }
102 if in.ExpiresAt != nil {
103 in, out := &in.ExpiresAt, &out.ExpiresAt
104 *out = new(string)
105 **out = **in
106 }
107 return
108 }
109
110
111 func (in *AddonsconfigApiSecurityConfig) DeepCopy() *AddonsconfigApiSecurityConfig {
112 if in == nil {
113 return nil
114 }
115 out := new(AddonsconfigApiSecurityConfig)
116 in.DeepCopyInto(out)
117 return out
118 }
119
120
121 func (in *AddonsconfigConnectorsPlatformConfig) DeepCopyInto(out *AddonsconfigConnectorsPlatformConfig) {
122 *out = *in
123 if in.Enabled != nil {
124 in, out := &in.Enabled, &out.Enabled
125 *out = new(bool)
126 **out = **in
127 }
128 if in.ExpiresAt != nil {
129 in, out := &in.ExpiresAt, &out.ExpiresAt
130 *out = new(string)
131 **out = **in
132 }
133 return
134 }
135
136
137 func (in *AddonsconfigConnectorsPlatformConfig) DeepCopy() *AddonsconfigConnectorsPlatformConfig {
138 if in == nil {
139 return nil
140 }
141 out := new(AddonsconfigConnectorsPlatformConfig)
142 in.DeepCopyInto(out)
143 return out
144 }
145
146
147 func (in *AddonsconfigIntegrationConfig) DeepCopyInto(out *AddonsconfigIntegrationConfig) {
148 *out = *in
149 if in.Enabled != nil {
150 in, out := &in.Enabled, &out.Enabled
151 *out = new(bool)
152 **out = **in
153 }
154 return
155 }
156
157
158 func (in *AddonsconfigIntegrationConfig) DeepCopy() *AddonsconfigIntegrationConfig {
159 if in == nil {
160 return nil
161 }
162 out := new(AddonsconfigIntegrationConfig)
163 in.DeepCopyInto(out)
164 return out
165 }
166
167
168 func (in *AddonsconfigMonetizationConfig) DeepCopyInto(out *AddonsconfigMonetizationConfig) {
169 *out = *in
170 if in.Enabled != nil {
171 in, out := &in.Enabled, &out.Enabled
172 *out = new(bool)
173 **out = **in
174 }
175 return
176 }
177
178
179 func (in *AddonsconfigMonetizationConfig) DeepCopy() *AddonsconfigMonetizationConfig {
180 if in == nil {
181 return nil
182 }
183 out := new(AddonsconfigMonetizationConfig)
184 in.DeepCopyInto(out)
185 return out
186 }
187
188
189 func (in *ApigeeAddonsConfig) DeepCopyInto(out *ApigeeAddonsConfig) {
190 *out = *in
191 out.TypeMeta = in.TypeMeta
192 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
193 in.Spec.DeepCopyInto(&out.Spec)
194 in.Status.DeepCopyInto(&out.Status)
195 return
196 }
197
198
199 func (in *ApigeeAddonsConfig) DeepCopy() *ApigeeAddonsConfig {
200 if in == nil {
201 return nil
202 }
203 out := new(ApigeeAddonsConfig)
204 in.DeepCopyInto(out)
205 return out
206 }
207
208
209 func (in *ApigeeAddonsConfig) DeepCopyObject() runtime.Object {
210 if c := in.DeepCopy(); c != nil {
211 return c
212 }
213 return nil
214 }
215
216
217 func (in *ApigeeAddonsConfigList) DeepCopyInto(out *ApigeeAddonsConfigList) {
218 *out = *in
219 out.TypeMeta = in.TypeMeta
220 in.ListMeta.DeepCopyInto(&out.ListMeta)
221 if in.Items != nil {
222 in, out := &in.Items, &out.Items
223 *out = make([]ApigeeAddonsConfig, len(*in))
224 for i := range *in {
225 (*in)[i].DeepCopyInto(&(*out)[i])
226 }
227 }
228 return
229 }
230
231
232 func (in *ApigeeAddonsConfigList) DeepCopy() *ApigeeAddonsConfigList {
233 if in == nil {
234 return nil
235 }
236 out := new(ApigeeAddonsConfigList)
237 in.DeepCopyInto(out)
238 return out
239 }
240
241
242 func (in *ApigeeAddonsConfigList) DeepCopyObject() runtime.Object {
243 if c := in.DeepCopy(); c != nil {
244 return c
245 }
246 return nil
247 }
248
249
250 func (in *ApigeeAddonsConfigSpec) DeepCopyInto(out *ApigeeAddonsConfigSpec) {
251 *out = *in
252 if in.AddonsConfig != nil {
253 in, out := &in.AddonsConfig, &out.AddonsConfig
254 *out = new(AddonsconfigAddonsConfig)
255 (*in).DeepCopyInto(*out)
256 }
257 if in.ResourceID != nil {
258 in, out := &in.ResourceID, &out.ResourceID
259 *out = new(string)
260 **out = **in
261 }
262 return
263 }
264
265
266 func (in *ApigeeAddonsConfigSpec) DeepCopy() *ApigeeAddonsConfigSpec {
267 if in == nil {
268 return nil
269 }
270 out := new(ApigeeAddonsConfigSpec)
271 in.DeepCopyInto(out)
272 return out
273 }
274
275
276 func (in *ApigeeAddonsConfigStatus) DeepCopyInto(out *ApigeeAddonsConfigStatus) {
277 *out = *in
278 if in.Conditions != nil {
279 in, out := &in.Conditions, &out.Conditions
280 *out = make([]k8sv1alpha1.Condition, len(*in))
281 copy(*out, *in)
282 }
283 if in.ObservedGeneration != nil {
284 in, out := &in.ObservedGeneration, &out.ObservedGeneration
285 *out = new(int)
286 **out = **in
287 }
288 return
289 }
290
291
292 func (in *ApigeeAddonsConfigStatus) DeepCopy() *ApigeeAddonsConfigStatus {
293 if in == nil {
294 return nil
295 }
296 out := new(ApigeeAddonsConfigStatus)
297 in.DeepCopyInto(out)
298 return out
299 }
300
301
302 func (in *ApigeeEndpointAttachment) DeepCopyInto(out *ApigeeEndpointAttachment) {
303 *out = *in
304 out.TypeMeta = in.TypeMeta
305 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
306 in.Spec.DeepCopyInto(&out.Spec)
307 in.Status.DeepCopyInto(&out.Status)
308 return
309 }
310
311
312 func (in *ApigeeEndpointAttachment) DeepCopy() *ApigeeEndpointAttachment {
313 if in == nil {
314 return nil
315 }
316 out := new(ApigeeEndpointAttachment)
317 in.DeepCopyInto(out)
318 return out
319 }
320
321
322 func (in *ApigeeEndpointAttachment) DeepCopyObject() runtime.Object {
323 if c := in.DeepCopy(); c != nil {
324 return c
325 }
326 return nil
327 }
328
329
330 func (in *ApigeeEndpointAttachmentList) DeepCopyInto(out *ApigeeEndpointAttachmentList) {
331 *out = *in
332 out.TypeMeta = in.TypeMeta
333 in.ListMeta.DeepCopyInto(&out.ListMeta)
334 if in.Items != nil {
335 in, out := &in.Items, &out.Items
336 *out = make([]ApigeeEndpointAttachment, len(*in))
337 for i := range *in {
338 (*in)[i].DeepCopyInto(&(*out)[i])
339 }
340 }
341 return
342 }
343
344
345 func (in *ApigeeEndpointAttachmentList) DeepCopy() *ApigeeEndpointAttachmentList {
346 if in == nil {
347 return nil
348 }
349 out := new(ApigeeEndpointAttachmentList)
350 in.DeepCopyInto(out)
351 return out
352 }
353
354
355 func (in *ApigeeEndpointAttachmentList) DeepCopyObject() runtime.Object {
356 if c := in.DeepCopy(); c != nil {
357 return c
358 }
359 return nil
360 }
361
362
363 func (in *ApigeeEndpointAttachmentSpec) DeepCopyInto(out *ApigeeEndpointAttachmentSpec) {
364 *out = *in
365 if in.ResourceID != nil {
366 in, out := &in.ResourceID, &out.ResourceID
367 *out = new(string)
368 **out = **in
369 }
370 return
371 }
372
373
374 func (in *ApigeeEndpointAttachmentSpec) DeepCopy() *ApigeeEndpointAttachmentSpec {
375 if in == nil {
376 return nil
377 }
378 out := new(ApigeeEndpointAttachmentSpec)
379 in.DeepCopyInto(out)
380 return out
381 }
382
383
384 func (in *ApigeeEndpointAttachmentStatus) DeepCopyInto(out *ApigeeEndpointAttachmentStatus) {
385 *out = *in
386 if in.Conditions != nil {
387 in, out := &in.Conditions, &out.Conditions
388 *out = make([]k8sv1alpha1.Condition, len(*in))
389 copy(*out, *in)
390 }
391 if in.ConnectionState != nil {
392 in, out := &in.ConnectionState, &out.ConnectionState
393 *out = new(string)
394 **out = **in
395 }
396 if in.Host != nil {
397 in, out := &in.Host, &out.Host
398 *out = new(string)
399 **out = **in
400 }
401 if in.Name != nil {
402 in, out := &in.Name, &out.Name
403 *out = new(string)
404 **out = **in
405 }
406 if in.ObservedGeneration != nil {
407 in, out := &in.ObservedGeneration, &out.ObservedGeneration
408 *out = new(int)
409 **out = **in
410 }
411 return
412 }
413
414
415 func (in *ApigeeEndpointAttachmentStatus) DeepCopy() *ApigeeEndpointAttachmentStatus {
416 if in == nil {
417 return nil
418 }
419 out := new(ApigeeEndpointAttachmentStatus)
420 in.DeepCopyInto(out)
421 return out
422 }
423
424
425 func (in *ApigeeEnvgroup) DeepCopyInto(out *ApigeeEnvgroup) {
426 *out = *in
427 out.TypeMeta = in.TypeMeta
428 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
429 in.Spec.DeepCopyInto(&out.Spec)
430 in.Status.DeepCopyInto(&out.Status)
431 return
432 }
433
434
435 func (in *ApigeeEnvgroup) DeepCopy() *ApigeeEnvgroup {
436 if in == nil {
437 return nil
438 }
439 out := new(ApigeeEnvgroup)
440 in.DeepCopyInto(out)
441 return out
442 }
443
444
445 func (in *ApigeeEnvgroup) DeepCopyObject() runtime.Object {
446 if c := in.DeepCopy(); c != nil {
447 return c
448 }
449 return nil
450 }
451
452
453 func (in *ApigeeEnvgroupAttachment) DeepCopyInto(out *ApigeeEnvgroupAttachment) {
454 *out = *in
455 out.TypeMeta = in.TypeMeta
456 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
457 in.Spec.DeepCopyInto(&out.Spec)
458 in.Status.DeepCopyInto(&out.Status)
459 return
460 }
461
462
463 func (in *ApigeeEnvgroupAttachment) DeepCopy() *ApigeeEnvgroupAttachment {
464 if in == nil {
465 return nil
466 }
467 out := new(ApigeeEnvgroupAttachment)
468 in.DeepCopyInto(out)
469 return out
470 }
471
472
473 func (in *ApigeeEnvgroupAttachment) DeepCopyObject() runtime.Object {
474 if c := in.DeepCopy(); c != nil {
475 return c
476 }
477 return nil
478 }
479
480
481 func (in *ApigeeEnvgroupAttachmentList) DeepCopyInto(out *ApigeeEnvgroupAttachmentList) {
482 *out = *in
483 out.TypeMeta = in.TypeMeta
484 in.ListMeta.DeepCopyInto(&out.ListMeta)
485 if in.Items != nil {
486 in, out := &in.Items, &out.Items
487 *out = make([]ApigeeEnvgroupAttachment, len(*in))
488 for i := range *in {
489 (*in)[i].DeepCopyInto(&(*out)[i])
490 }
491 }
492 return
493 }
494
495
496 func (in *ApigeeEnvgroupAttachmentList) DeepCopy() *ApigeeEnvgroupAttachmentList {
497 if in == nil {
498 return nil
499 }
500 out := new(ApigeeEnvgroupAttachmentList)
501 in.DeepCopyInto(out)
502 return out
503 }
504
505
506 func (in *ApigeeEnvgroupAttachmentList) DeepCopyObject() runtime.Object {
507 if c := in.DeepCopy(); c != nil {
508 return c
509 }
510 return nil
511 }
512
513
514 func (in *ApigeeEnvgroupAttachmentSpec) DeepCopyInto(out *ApigeeEnvgroupAttachmentSpec) {
515 *out = *in
516 if in.ResourceID != nil {
517 in, out := &in.ResourceID, &out.ResourceID
518 *out = new(string)
519 **out = **in
520 }
521 return
522 }
523
524
525 func (in *ApigeeEnvgroupAttachmentSpec) DeepCopy() *ApigeeEnvgroupAttachmentSpec {
526 if in == nil {
527 return nil
528 }
529 out := new(ApigeeEnvgroupAttachmentSpec)
530 in.DeepCopyInto(out)
531 return out
532 }
533
534
535 func (in *ApigeeEnvgroupAttachmentStatus) DeepCopyInto(out *ApigeeEnvgroupAttachmentStatus) {
536 *out = *in
537 if in.Conditions != nil {
538 in, out := &in.Conditions, &out.Conditions
539 *out = make([]k8sv1alpha1.Condition, len(*in))
540 copy(*out, *in)
541 }
542 if in.Name != nil {
543 in, out := &in.Name, &out.Name
544 *out = new(string)
545 **out = **in
546 }
547 if in.ObservedGeneration != nil {
548 in, out := &in.ObservedGeneration, &out.ObservedGeneration
549 *out = new(int)
550 **out = **in
551 }
552 return
553 }
554
555
556 func (in *ApigeeEnvgroupAttachmentStatus) DeepCopy() *ApigeeEnvgroupAttachmentStatus {
557 if in == nil {
558 return nil
559 }
560 out := new(ApigeeEnvgroupAttachmentStatus)
561 in.DeepCopyInto(out)
562 return out
563 }
564
565
566 func (in *ApigeeEnvgroupList) DeepCopyInto(out *ApigeeEnvgroupList) {
567 *out = *in
568 out.TypeMeta = in.TypeMeta
569 in.ListMeta.DeepCopyInto(&out.ListMeta)
570 if in.Items != nil {
571 in, out := &in.Items, &out.Items
572 *out = make([]ApigeeEnvgroup, len(*in))
573 for i := range *in {
574 (*in)[i].DeepCopyInto(&(*out)[i])
575 }
576 }
577 return
578 }
579
580
581 func (in *ApigeeEnvgroupList) DeepCopy() *ApigeeEnvgroupList {
582 if in == nil {
583 return nil
584 }
585 out := new(ApigeeEnvgroupList)
586 in.DeepCopyInto(out)
587 return out
588 }
589
590
591 func (in *ApigeeEnvgroupList) DeepCopyObject() runtime.Object {
592 if c := in.DeepCopy(); c != nil {
593 return c
594 }
595 return nil
596 }
597
598
599 func (in *ApigeeEnvgroupSpec) DeepCopyInto(out *ApigeeEnvgroupSpec) {
600 *out = *in
601 if in.Hostnames != nil {
602 in, out := &in.Hostnames, &out.Hostnames
603 *out = make([]string, len(*in))
604 copy(*out, *in)
605 }
606 if in.ResourceID != nil {
607 in, out := &in.ResourceID, &out.ResourceID
608 *out = new(string)
609 **out = **in
610 }
611 return
612 }
613
614
615 func (in *ApigeeEnvgroupSpec) DeepCopy() *ApigeeEnvgroupSpec {
616 if in == nil {
617 return nil
618 }
619 out := new(ApigeeEnvgroupSpec)
620 in.DeepCopyInto(out)
621 return out
622 }
623
624
625 func (in *ApigeeEnvgroupStatus) DeepCopyInto(out *ApigeeEnvgroupStatus) {
626 *out = *in
627 if in.Conditions != nil {
628 in, out := &in.Conditions, &out.Conditions
629 *out = make([]k8sv1alpha1.Condition, len(*in))
630 copy(*out, *in)
631 }
632 if in.ObservedGeneration != nil {
633 in, out := &in.ObservedGeneration, &out.ObservedGeneration
634 *out = new(int)
635 **out = **in
636 }
637 return
638 }
639
640
641 func (in *ApigeeEnvgroupStatus) DeepCopy() *ApigeeEnvgroupStatus {
642 if in == nil {
643 return nil
644 }
645 out := new(ApigeeEnvgroupStatus)
646 in.DeepCopyInto(out)
647 return out
648 }
649
650
651 func (in *ApigeeInstance) DeepCopyInto(out *ApigeeInstance) {
652 *out = *in
653 out.TypeMeta = in.TypeMeta
654 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
655 in.Spec.DeepCopyInto(&out.Spec)
656 in.Status.DeepCopyInto(&out.Status)
657 return
658 }
659
660
661 func (in *ApigeeInstance) DeepCopy() *ApigeeInstance {
662 if in == nil {
663 return nil
664 }
665 out := new(ApigeeInstance)
666 in.DeepCopyInto(out)
667 return out
668 }
669
670
671 func (in *ApigeeInstance) DeepCopyObject() runtime.Object {
672 if c := in.DeepCopy(); c != nil {
673 return c
674 }
675 return nil
676 }
677
678
679 func (in *ApigeeInstanceAttachment) DeepCopyInto(out *ApigeeInstanceAttachment) {
680 *out = *in
681 out.TypeMeta = in.TypeMeta
682 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
683 in.Spec.DeepCopyInto(&out.Spec)
684 in.Status.DeepCopyInto(&out.Status)
685 return
686 }
687
688
689 func (in *ApigeeInstanceAttachment) DeepCopy() *ApigeeInstanceAttachment {
690 if in == nil {
691 return nil
692 }
693 out := new(ApigeeInstanceAttachment)
694 in.DeepCopyInto(out)
695 return out
696 }
697
698
699 func (in *ApigeeInstanceAttachment) DeepCopyObject() runtime.Object {
700 if c := in.DeepCopy(); c != nil {
701 return c
702 }
703 return nil
704 }
705
706
707 func (in *ApigeeInstanceAttachmentList) DeepCopyInto(out *ApigeeInstanceAttachmentList) {
708 *out = *in
709 out.TypeMeta = in.TypeMeta
710 in.ListMeta.DeepCopyInto(&out.ListMeta)
711 if in.Items != nil {
712 in, out := &in.Items, &out.Items
713 *out = make([]ApigeeInstanceAttachment, len(*in))
714 for i := range *in {
715 (*in)[i].DeepCopyInto(&(*out)[i])
716 }
717 }
718 return
719 }
720
721
722 func (in *ApigeeInstanceAttachmentList) DeepCopy() *ApigeeInstanceAttachmentList {
723 if in == nil {
724 return nil
725 }
726 out := new(ApigeeInstanceAttachmentList)
727 in.DeepCopyInto(out)
728 return out
729 }
730
731
732 func (in *ApigeeInstanceAttachmentList) DeepCopyObject() runtime.Object {
733 if c := in.DeepCopy(); c != nil {
734 return c
735 }
736 return nil
737 }
738
739
740 func (in *ApigeeInstanceAttachmentSpec) DeepCopyInto(out *ApigeeInstanceAttachmentSpec) {
741 *out = *in
742 if in.ResourceID != nil {
743 in, out := &in.ResourceID, &out.ResourceID
744 *out = new(string)
745 **out = **in
746 }
747 return
748 }
749
750
751 func (in *ApigeeInstanceAttachmentSpec) DeepCopy() *ApigeeInstanceAttachmentSpec {
752 if in == nil {
753 return nil
754 }
755 out := new(ApigeeInstanceAttachmentSpec)
756 in.DeepCopyInto(out)
757 return out
758 }
759
760
761 func (in *ApigeeInstanceAttachmentStatus) DeepCopyInto(out *ApigeeInstanceAttachmentStatus) {
762 *out = *in
763 if in.Conditions != nil {
764 in, out := &in.Conditions, &out.Conditions
765 *out = make([]k8sv1alpha1.Condition, len(*in))
766 copy(*out, *in)
767 }
768 if in.Name != nil {
769 in, out := &in.Name, &out.Name
770 *out = new(string)
771 **out = **in
772 }
773 if in.ObservedGeneration != nil {
774 in, out := &in.ObservedGeneration, &out.ObservedGeneration
775 *out = new(int)
776 **out = **in
777 }
778 return
779 }
780
781
782 func (in *ApigeeInstanceAttachmentStatus) DeepCopy() *ApigeeInstanceAttachmentStatus {
783 if in == nil {
784 return nil
785 }
786 out := new(ApigeeInstanceAttachmentStatus)
787 in.DeepCopyInto(out)
788 return out
789 }
790
791
792 func (in *ApigeeInstanceList) DeepCopyInto(out *ApigeeInstanceList) {
793 *out = *in
794 out.TypeMeta = in.TypeMeta
795 in.ListMeta.DeepCopyInto(&out.ListMeta)
796 if in.Items != nil {
797 in, out := &in.Items, &out.Items
798 *out = make([]ApigeeInstance, len(*in))
799 for i := range *in {
800 (*in)[i].DeepCopyInto(&(*out)[i])
801 }
802 }
803 return
804 }
805
806
807 func (in *ApigeeInstanceList) DeepCopy() *ApigeeInstanceList {
808 if in == nil {
809 return nil
810 }
811 out := new(ApigeeInstanceList)
812 in.DeepCopyInto(out)
813 return out
814 }
815
816
817 func (in *ApigeeInstanceList) DeepCopyObject() runtime.Object {
818 if c := in.DeepCopy(); c != nil {
819 return c
820 }
821 return nil
822 }
823
824
825 func (in *ApigeeInstanceSpec) DeepCopyInto(out *ApigeeInstanceSpec) {
826 *out = *in
827 if in.ConsumerAcceptList != nil {
828 in, out := &in.ConsumerAcceptList, &out.ConsumerAcceptList
829 *out = make([]string, len(*in))
830 copy(*out, *in)
831 }
832 if in.Description != nil {
833 in, out := &in.Description, &out.Description
834 *out = new(string)
835 **out = **in
836 }
837 if in.DiskEncryptionKeyName != nil {
838 in, out := &in.DiskEncryptionKeyName, &out.DiskEncryptionKeyName
839 *out = new(string)
840 **out = **in
841 }
842 if in.DisplayName != nil {
843 in, out := &in.DisplayName, &out.DisplayName
844 *out = new(string)
845 **out = **in
846 }
847 if in.IpRange != nil {
848 in, out := &in.IpRange, &out.IpRange
849 *out = new(string)
850 **out = **in
851 }
852 if in.PeeringCidrRange != nil {
853 in, out := &in.PeeringCidrRange, &out.PeeringCidrRange
854 *out = new(string)
855 **out = **in
856 }
857 if in.ResourceID != nil {
858 in, out := &in.ResourceID, &out.ResourceID
859 *out = new(string)
860 **out = **in
861 }
862 return
863 }
864
865
866 func (in *ApigeeInstanceSpec) DeepCopy() *ApigeeInstanceSpec {
867 if in == nil {
868 return nil
869 }
870 out := new(ApigeeInstanceSpec)
871 in.DeepCopyInto(out)
872 return out
873 }
874
875
876 func (in *ApigeeInstanceStatus) DeepCopyInto(out *ApigeeInstanceStatus) {
877 *out = *in
878 if in.Conditions != nil {
879 in, out := &in.Conditions, &out.Conditions
880 *out = make([]k8sv1alpha1.Condition, len(*in))
881 copy(*out, *in)
882 }
883 if in.Host != nil {
884 in, out := &in.Host, &out.Host
885 *out = new(string)
886 **out = **in
887 }
888 if in.ObservedGeneration != nil {
889 in, out := &in.ObservedGeneration, &out.ObservedGeneration
890 *out = new(int)
891 **out = **in
892 }
893 if in.Port != nil {
894 in, out := &in.Port, &out.Port
895 *out = new(string)
896 **out = **in
897 }
898 if in.ServiceAttachment != nil {
899 in, out := &in.ServiceAttachment, &out.ServiceAttachment
900 *out = new(string)
901 **out = **in
902 }
903 return
904 }
905
906
907 func (in *ApigeeInstanceStatus) DeepCopy() *ApigeeInstanceStatus {
908 if in == nil {
909 return nil
910 }
911 out := new(ApigeeInstanceStatus)
912 in.DeepCopyInto(out)
913 return out
914 }
915
916
917 func (in *ApigeeNATAddress) DeepCopyInto(out *ApigeeNATAddress) {
918 *out = *in
919 out.TypeMeta = in.TypeMeta
920 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
921 in.Spec.DeepCopyInto(&out.Spec)
922 in.Status.DeepCopyInto(&out.Status)
923 return
924 }
925
926
927 func (in *ApigeeNATAddress) DeepCopy() *ApigeeNATAddress {
928 if in == nil {
929 return nil
930 }
931 out := new(ApigeeNATAddress)
932 in.DeepCopyInto(out)
933 return out
934 }
935
936
937 func (in *ApigeeNATAddress) DeepCopyObject() runtime.Object {
938 if c := in.DeepCopy(); c != nil {
939 return c
940 }
941 return nil
942 }
943
944
945 func (in *ApigeeNATAddressList) DeepCopyInto(out *ApigeeNATAddressList) {
946 *out = *in
947 out.TypeMeta = in.TypeMeta
948 in.ListMeta.DeepCopyInto(&out.ListMeta)
949 if in.Items != nil {
950 in, out := &in.Items, &out.Items
951 *out = make([]ApigeeNATAddress, len(*in))
952 for i := range *in {
953 (*in)[i].DeepCopyInto(&(*out)[i])
954 }
955 }
956 return
957 }
958
959
960 func (in *ApigeeNATAddressList) DeepCopy() *ApigeeNATAddressList {
961 if in == nil {
962 return nil
963 }
964 out := new(ApigeeNATAddressList)
965 in.DeepCopyInto(out)
966 return out
967 }
968
969
970 func (in *ApigeeNATAddressList) DeepCopyObject() runtime.Object {
971 if c := in.DeepCopy(); c != nil {
972 return c
973 }
974 return nil
975 }
976
977
978 func (in *ApigeeNATAddressSpec) DeepCopyInto(out *ApigeeNATAddressSpec) {
979 *out = *in
980 if in.ResourceID != nil {
981 in, out := &in.ResourceID, &out.ResourceID
982 *out = new(string)
983 **out = **in
984 }
985 return
986 }
987
988
989 func (in *ApigeeNATAddressSpec) DeepCopy() *ApigeeNATAddressSpec {
990 if in == nil {
991 return nil
992 }
993 out := new(ApigeeNATAddressSpec)
994 in.DeepCopyInto(out)
995 return out
996 }
997
998
999 func (in *ApigeeNATAddressStatus) DeepCopyInto(out *ApigeeNATAddressStatus) {
1000 *out = *in
1001 if in.Conditions != nil {
1002 in, out := &in.Conditions, &out.Conditions
1003 *out = make([]k8sv1alpha1.Condition, len(*in))
1004 copy(*out, *in)
1005 }
1006 if in.IpAddress != nil {
1007 in, out := &in.IpAddress, &out.IpAddress
1008 *out = new(string)
1009 **out = **in
1010 }
1011 if in.ObservedGeneration != nil {
1012 in, out := &in.ObservedGeneration, &out.ObservedGeneration
1013 *out = new(int)
1014 **out = **in
1015 }
1016 if in.State != nil {
1017 in, out := &in.State, &out.State
1018 *out = new(string)
1019 **out = **in
1020 }
1021 return
1022 }
1023
1024
1025 func (in *ApigeeNATAddressStatus) DeepCopy() *ApigeeNATAddressStatus {
1026 if in == nil {
1027 return nil
1028 }
1029 out := new(ApigeeNATAddressStatus)
1030 in.DeepCopyInto(out)
1031 return out
1032 }
1033
1034
1035 func (in *ApigeeSyncAuthorization) DeepCopyInto(out *ApigeeSyncAuthorization) {
1036 *out = *in
1037 out.TypeMeta = in.TypeMeta
1038 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1039 in.Spec.DeepCopyInto(&out.Spec)
1040 in.Status.DeepCopyInto(&out.Status)
1041 return
1042 }
1043
1044
1045 func (in *ApigeeSyncAuthorization) DeepCopy() *ApigeeSyncAuthorization {
1046 if in == nil {
1047 return nil
1048 }
1049 out := new(ApigeeSyncAuthorization)
1050 in.DeepCopyInto(out)
1051 return out
1052 }
1053
1054
1055 func (in *ApigeeSyncAuthorization) DeepCopyObject() runtime.Object {
1056 if c := in.DeepCopy(); c != nil {
1057 return c
1058 }
1059 return nil
1060 }
1061
1062
1063 func (in *ApigeeSyncAuthorizationList) DeepCopyInto(out *ApigeeSyncAuthorizationList) {
1064 *out = *in
1065 out.TypeMeta = in.TypeMeta
1066 in.ListMeta.DeepCopyInto(&out.ListMeta)
1067 if in.Items != nil {
1068 in, out := &in.Items, &out.Items
1069 *out = make([]ApigeeSyncAuthorization, len(*in))
1070 for i := range *in {
1071 (*in)[i].DeepCopyInto(&(*out)[i])
1072 }
1073 }
1074 return
1075 }
1076
1077
1078 func (in *ApigeeSyncAuthorizationList) DeepCopy() *ApigeeSyncAuthorizationList {
1079 if in == nil {
1080 return nil
1081 }
1082 out := new(ApigeeSyncAuthorizationList)
1083 in.DeepCopyInto(out)
1084 return out
1085 }
1086
1087
1088 func (in *ApigeeSyncAuthorizationList) DeepCopyObject() runtime.Object {
1089 if c := in.DeepCopy(); c != nil {
1090 return c
1091 }
1092 return nil
1093 }
1094
1095
1096 func (in *ApigeeSyncAuthorizationSpec) DeepCopyInto(out *ApigeeSyncAuthorizationSpec) {
1097 *out = *in
1098 if in.Identities != nil {
1099 in, out := &in.Identities, &out.Identities
1100 *out = make([]string, len(*in))
1101 copy(*out, *in)
1102 }
1103 if in.ResourceID != nil {
1104 in, out := &in.ResourceID, &out.ResourceID
1105 *out = new(string)
1106 **out = **in
1107 }
1108 return
1109 }
1110
1111
1112 func (in *ApigeeSyncAuthorizationSpec) DeepCopy() *ApigeeSyncAuthorizationSpec {
1113 if in == nil {
1114 return nil
1115 }
1116 out := new(ApigeeSyncAuthorizationSpec)
1117 in.DeepCopyInto(out)
1118 return out
1119 }
1120
1121
1122 func (in *ApigeeSyncAuthorizationStatus) DeepCopyInto(out *ApigeeSyncAuthorizationStatus) {
1123 *out = *in
1124 if in.Conditions != nil {
1125 in, out := &in.Conditions, &out.Conditions
1126 *out = make([]k8sv1alpha1.Condition, len(*in))
1127 copy(*out, *in)
1128 }
1129 if in.Etag != nil {
1130 in, out := &in.Etag, &out.Etag
1131 *out = new(string)
1132 **out = **in
1133 }
1134 if in.ObservedGeneration != nil {
1135 in, out := &in.ObservedGeneration, &out.ObservedGeneration
1136 *out = new(int)
1137 **out = **in
1138 }
1139 return
1140 }
1141
1142
1143 func (in *ApigeeSyncAuthorizationStatus) DeepCopy() *ApigeeSyncAuthorizationStatus {
1144 if in == nil {
1145 return nil
1146 }
1147 out := new(ApigeeSyncAuthorizationStatus)
1148 in.DeepCopyInto(out)
1149 return out
1150 }
1151
View as plain text