...
1
2
3
4
5
6 package v1alpha1
7
8 import (
9 v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
10 runtime "k8s.io/apimachinery/pkg/runtime"
11 )
12
13
14 func (in *ActiveBundleDeployment) DeepCopyInto(out *ActiveBundleDeployment) {
15 *out = *in
16 return
17 }
18
19
20 func (in *ActiveBundleDeployment) DeepCopy() *ActiveBundleDeployment {
21 if in == nil {
22 return nil
23 }
24 out := new(ActiveBundleDeployment)
25 in.DeepCopyInto(out)
26 return out
27 }
28
29
30 func (in *Package) DeepCopyInto(out *Package) {
31 *out = *in
32 return
33 }
34
35
36 func (in *Package) DeepCopy() *Package {
37 if in == nil {
38 return nil
39 }
40 out := new(Package)
41 in.DeepCopyInto(out)
42 return out
43 }
44
45
46 func (in *PlatformOperator) DeepCopyInto(out *PlatformOperator) {
47 *out = *in
48 out.TypeMeta = in.TypeMeta
49 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
50 out.Spec = in.Spec
51 in.Status.DeepCopyInto(&out.Status)
52 return
53 }
54
55
56 func (in *PlatformOperator) DeepCopy() *PlatformOperator {
57 if in == nil {
58 return nil
59 }
60 out := new(PlatformOperator)
61 in.DeepCopyInto(out)
62 return out
63 }
64
65
66 func (in *PlatformOperator) DeepCopyObject() runtime.Object {
67 if c := in.DeepCopy(); c != nil {
68 return c
69 }
70 return nil
71 }
72
73
74 func (in *PlatformOperatorList) DeepCopyInto(out *PlatformOperatorList) {
75 *out = *in
76 out.TypeMeta = in.TypeMeta
77 in.ListMeta.DeepCopyInto(&out.ListMeta)
78 if in.Items != nil {
79 in, out := &in.Items, &out.Items
80 *out = make([]PlatformOperator, len(*in))
81 for i := range *in {
82 (*in)[i].DeepCopyInto(&(*out)[i])
83 }
84 }
85 return
86 }
87
88
89 func (in *PlatformOperatorList) DeepCopy() *PlatformOperatorList {
90 if in == nil {
91 return nil
92 }
93 out := new(PlatformOperatorList)
94 in.DeepCopyInto(out)
95 return out
96 }
97
98
99 func (in *PlatformOperatorList) DeepCopyObject() runtime.Object {
100 if c := in.DeepCopy(); c != nil {
101 return c
102 }
103 return nil
104 }
105
106
107 func (in *PlatformOperatorSpec) DeepCopyInto(out *PlatformOperatorSpec) {
108 *out = *in
109 out.Package = in.Package
110 return
111 }
112
113
114 func (in *PlatformOperatorSpec) DeepCopy() *PlatformOperatorSpec {
115 if in == nil {
116 return nil
117 }
118 out := new(PlatformOperatorSpec)
119 in.DeepCopyInto(out)
120 return out
121 }
122
123
124 func (in *PlatformOperatorStatus) DeepCopyInto(out *PlatformOperatorStatus) {
125 *out = *in
126 if in.Conditions != nil {
127 in, out := &in.Conditions, &out.Conditions
128 *out = make([]v1.Condition, len(*in))
129 for i := range *in {
130 (*in)[i].DeepCopyInto(&(*out)[i])
131 }
132 }
133 out.ActiveBundleDeployment = in.ActiveBundleDeployment
134 return
135 }
136
137
138 func (in *PlatformOperatorStatus) DeepCopy() *PlatformOperatorStatus {
139 if in == nil {
140 return nil
141 }
142 out := new(PlatformOperatorStatus)
143 in.DeepCopyInto(out)
144 return out
145 }
146
View as plain text