...
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 *SharedConfigMap) DeepCopyInto(out *SharedConfigMap) {
15 *out = *in
16 out.TypeMeta = in.TypeMeta
17 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
18 out.Spec = in.Spec
19 in.Status.DeepCopyInto(&out.Status)
20 return
21 }
22
23
24 func (in *SharedConfigMap) DeepCopy() *SharedConfigMap {
25 if in == nil {
26 return nil
27 }
28 out := new(SharedConfigMap)
29 in.DeepCopyInto(out)
30 return out
31 }
32
33
34 func (in *SharedConfigMap) DeepCopyObject() runtime.Object {
35 if c := in.DeepCopy(); c != nil {
36 return c
37 }
38 return nil
39 }
40
41
42 func (in *SharedConfigMapList) DeepCopyInto(out *SharedConfigMapList) {
43 *out = *in
44 out.TypeMeta = in.TypeMeta
45 in.ListMeta.DeepCopyInto(&out.ListMeta)
46 if in.Items != nil {
47 in, out := &in.Items, &out.Items
48 *out = make([]SharedConfigMap, len(*in))
49 for i := range *in {
50 (*in)[i].DeepCopyInto(&(*out)[i])
51 }
52 }
53 return
54 }
55
56
57 func (in *SharedConfigMapList) DeepCopy() *SharedConfigMapList {
58 if in == nil {
59 return nil
60 }
61 out := new(SharedConfigMapList)
62 in.DeepCopyInto(out)
63 return out
64 }
65
66
67 func (in *SharedConfigMapList) DeepCopyObject() runtime.Object {
68 if c := in.DeepCopy(); c != nil {
69 return c
70 }
71 return nil
72 }
73
74
75 func (in *SharedConfigMapReference) DeepCopyInto(out *SharedConfigMapReference) {
76 *out = *in
77 return
78 }
79
80
81 func (in *SharedConfigMapReference) DeepCopy() *SharedConfigMapReference {
82 if in == nil {
83 return nil
84 }
85 out := new(SharedConfigMapReference)
86 in.DeepCopyInto(out)
87 return out
88 }
89
90
91 func (in *SharedConfigMapSpec) DeepCopyInto(out *SharedConfigMapSpec) {
92 *out = *in
93 out.ConfigMapRef = in.ConfigMapRef
94 return
95 }
96
97
98 func (in *SharedConfigMapSpec) DeepCopy() *SharedConfigMapSpec {
99 if in == nil {
100 return nil
101 }
102 out := new(SharedConfigMapSpec)
103 in.DeepCopyInto(out)
104 return out
105 }
106
107
108 func (in *SharedConfigMapStatus) DeepCopyInto(out *SharedConfigMapStatus) {
109 *out = *in
110 if in.Conditions != nil {
111 in, out := &in.Conditions, &out.Conditions
112 *out = make([]v1.Condition, len(*in))
113 for i := range *in {
114 (*in)[i].DeepCopyInto(&(*out)[i])
115 }
116 }
117 return
118 }
119
120
121 func (in *SharedConfigMapStatus) DeepCopy() *SharedConfigMapStatus {
122 if in == nil {
123 return nil
124 }
125 out := new(SharedConfigMapStatus)
126 in.DeepCopyInto(out)
127 return out
128 }
129
130
131 func (in *SharedSecret) DeepCopyInto(out *SharedSecret) {
132 *out = *in
133 out.TypeMeta = in.TypeMeta
134 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
135 out.Spec = in.Spec
136 in.Status.DeepCopyInto(&out.Status)
137 return
138 }
139
140
141 func (in *SharedSecret) DeepCopy() *SharedSecret {
142 if in == nil {
143 return nil
144 }
145 out := new(SharedSecret)
146 in.DeepCopyInto(out)
147 return out
148 }
149
150
151 func (in *SharedSecret) DeepCopyObject() runtime.Object {
152 if c := in.DeepCopy(); c != nil {
153 return c
154 }
155 return nil
156 }
157
158
159 func (in *SharedSecretList) DeepCopyInto(out *SharedSecretList) {
160 *out = *in
161 out.TypeMeta = in.TypeMeta
162 in.ListMeta.DeepCopyInto(&out.ListMeta)
163 if in.Items != nil {
164 in, out := &in.Items, &out.Items
165 *out = make([]SharedSecret, len(*in))
166 for i := range *in {
167 (*in)[i].DeepCopyInto(&(*out)[i])
168 }
169 }
170 return
171 }
172
173
174 func (in *SharedSecretList) DeepCopy() *SharedSecretList {
175 if in == nil {
176 return nil
177 }
178 out := new(SharedSecretList)
179 in.DeepCopyInto(out)
180 return out
181 }
182
183
184 func (in *SharedSecretList) DeepCopyObject() runtime.Object {
185 if c := in.DeepCopy(); c != nil {
186 return c
187 }
188 return nil
189 }
190
191
192 func (in *SharedSecretReference) DeepCopyInto(out *SharedSecretReference) {
193 *out = *in
194 return
195 }
196
197
198 func (in *SharedSecretReference) DeepCopy() *SharedSecretReference {
199 if in == nil {
200 return nil
201 }
202 out := new(SharedSecretReference)
203 in.DeepCopyInto(out)
204 return out
205 }
206
207
208 func (in *SharedSecretSpec) DeepCopyInto(out *SharedSecretSpec) {
209 *out = *in
210 out.SecretRef = in.SecretRef
211 return
212 }
213
214
215 func (in *SharedSecretSpec) DeepCopy() *SharedSecretSpec {
216 if in == nil {
217 return nil
218 }
219 out := new(SharedSecretSpec)
220 in.DeepCopyInto(out)
221 return out
222 }
223
224
225 func (in *SharedSecretStatus) DeepCopyInto(out *SharedSecretStatus) {
226 *out = *in
227 if in.Conditions != nil {
228 in, out := &in.Conditions, &out.Conditions
229 *out = make([]v1.Condition, len(*in))
230 for i := range *in {
231 (*in)[i].DeepCopyInto(&(*out)[i])
232 }
233 }
234 return
235 }
236
237
238 func (in *SharedSecretStatus) DeepCopy() *SharedSecretStatus {
239 if in == nil {
240 return nil
241 }
242 out := new(SharedSecretStatus)
243 in.DeepCopyInto(out)
244 return out
245 }
246
View as plain text