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 *FirebaseAndroidApp) DeepCopyInto(out *FirebaseAndroidApp) {
34 *out = *in
35 out.TypeMeta = in.TypeMeta
36 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
37 in.Spec.DeepCopyInto(&out.Spec)
38 in.Status.DeepCopyInto(&out.Status)
39 return
40 }
41
42
43 func (in *FirebaseAndroidApp) DeepCopy() *FirebaseAndroidApp {
44 if in == nil {
45 return nil
46 }
47 out := new(FirebaseAndroidApp)
48 in.DeepCopyInto(out)
49 return out
50 }
51
52
53 func (in *FirebaseAndroidApp) DeepCopyObject() runtime.Object {
54 if c := in.DeepCopy(); c != nil {
55 return c
56 }
57 return nil
58 }
59
60
61 func (in *FirebaseAndroidAppList) DeepCopyInto(out *FirebaseAndroidAppList) {
62 *out = *in
63 out.TypeMeta = in.TypeMeta
64 in.ListMeta.DeepCopyInto(&out.ListMeta)
65 if in.Items != nil {
66 in, out := &in.Items, &out.Items
67 *out = make([]FirebaseAndroidApp, len(*in))
68 for i := range *in {
69 (*in)[i].DeepCopyInto(&(*out)[i])
70 }
71 }
72 return
73 }
74
75
76 func (in *FirebaseAndroidAppList) DeepCopy() *FirebaseAndroidAppList {
77 if in == nil {
78 return nil
79 }
80 out := new(FirebaseAndroidAppList)
81 in.DeepCopyInto(out)
82 return out
83 }
84
85
86 func (in *FirebaseAndroidAppList) DeepCopyObject() runtime.Object {
87 if c := in.DeepCopy(); c != nil {
88 return c
89 }
90 return nil
91 }
92
93
94 func (in *FirebaseAndroidAppSpec) DeepCopyInto(out *FirebaseAndroidAppSpec) {
95 *out = *in
96 if in.DeletionPolicy != nil {
97 in, out := &in.DeletionPolicy, &out.DeletionPolicy
98 *out = new(string)
99 **out = **in
100 }
101 if in.PackageName != nil {
102 in, out := &in.PackageName, &out.PackageName
103 *out = new(string)
104 **out = **in
105 }
106 out.ProjectRef = in.ProjectRef
107 if in.ResourceID != nil {
108 in, out := &in.ResourceID, &out.ResourceID
109 *out = new(string)
110 **out = **in
111 }
112 if in.Sha1Hashes != nil {
113 in, out := &in.Sha1Hashes, &out.Sha1Hashes
114 *out = make([]string, len(*in))
115 copy(*out, *in)
116 }
117 if in.Sha256Hashes != nil {
118 in, out := &in.Sha256Hashes, &out.Sha256Hashes
119 *out = make([]string, len(*in))
120 copy(*out, *in)
121 }
122 return
123 }
124
125
126 func (in *FirebaseAndroidAppSpec) DeepCopy() *FirebaseAndroidAppSpec {
127 if in == nil {
128 return nil
129 }
130 out := new(FirebaseAndroidAppSpec)
131 in.DeepCopyInto(out)
132 return out
133 }
134
135
136 func (in *FirebaseAndroidAppStatus) DeepCopyInto(out *FirebaseAndroidAppStatus) {
137 *out = *in
138 if in.Conditions != nil {
139 in, out := &in.Conditions, &out.Conditions
140 *out = make([]k8sv1alpha1.Condition, len(*in))
141 copy(*out, *in)
142 }
143 if in.AppId != nil {
144 in, out := &in.AppId, &out.AppId
145 *out = new(string)
146 **out = **in
147 }
148 if in.Etag != nil {
149 in, out := &in.Etag, &out.Etag
150 *out = new(string)
151 **out = **in
152 }
153 if in.Name != nil {
154 in, out := &in.Name, &out.Name
155 *out = new(string)
156 **out = **in
157 }
158 if in.ObservedGeneration != nil {
159 in, out := &in.ObservedGeneration, &out.ObservedGeneration
160 *out = new(int)
161 **out = **in
162 }
163 return
164 }
165
166
167 func (in *FirebaseAndroidAppStatus) DeepCopy() *FirebaseAndroidAppStatus {
168 if in == nil {
169 return nil
170 }
171 out := new(FirebaseAndroidAppStatus)
172 in.DeepCopyInto(out)
173 return out
174 }
175
176
177 func (in *FirebaseProject) DeepCopyInto(out *FirebaseProject) {
178 *out = *in
179 out.TypeMeta = in.TypeMeta
180 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
181 in.Spec.DeepCopyInto(&out.Spec)
182 in.Status.DeepCopyInto(&out.Status)
183 return
184 }
185
186
187 func (in *FirebaseProject) DeepCopy() *FirebaseProject {
188 if in == nil {
189 return nil
190 }
191 out := new(FirebaseProject)
192 in.DeepCopyInto(out)
193 return out
194 }
195
196
197 func (in *FirebaseProject) DeepCopyObject() runtime.Object {
198 if c := in.DeepCopy(); c != nil {
199 return c
200 }
201 return nil
202 }
203
204
205 func (in *FirebaseProjectList) DeepCopyInto(out *FirebaseProjectList) {
206 *out = *in
207 out.TypeMeta = in.TypeMeta
208 in.ListMeta.DeepCopyInto(&out.ListMeta)
209 if in.Items != nil {
210 in, out := &in.Items, &out.Items
211 *out = make([]FirebaseProject, len(*in))
212 for i := range *in {
213 (*in)[i].DeepCopyInto(&(*out)[i])
214 }
215 }
216 return
217 }
218
219
220 func (in *FirebaseProjectList) DeepCopy() *FirebaseProjectList {
221 if in == nil {
222 return nil
223 }
224 out := new(FirebaseProjectList)
225 in.DeepCopyInto(out)
226 return out
227 }
228
229
230 func (in *FirebaseProjectList) DeepCopyObject() runtime.Object {
231 if c := in.DeepCopy(); c != nil {
232 return c
233 }
234 return nil
235 }
236
237
238 func (in *FirebaseProjectSpec) DeepCopyInto(out *FirebaseProjectSpec) {
239 *out = *in
240 out.ProjectRef = in.ProjectRef
241 if in.ResourceID != nil {
242 in, out := &in.ResourceID, &out.ResourceID
243 *out = new(string)
244 **out = **in
245 }
246 return
247 }
248
249
250 func (in *FirebaseProjectSpec) DeepCopy() *FirebaseProjectSpec {
251 if in == nil {
252 return nil
253 }
254 out := new(FirebaseProjectSpec)
255 in.DeepCopyInto(out)
256 return out
257 }
258
259
260 func (in *FirebaseProjectStatus) DeepCopyInto(out *FirebaseProjectStatus) {
261 *out = *in
262 if in.Conditions != nil {
263 in, out := &in.Conditions, &out.Conditions
264 *out = make([]k8sv1alpha1.Condition, len(*in))
265 copy(*out, *in)
266 }
267 if in.DisplayName != nil {
268 in, out := &in.DisplayName, &out.DisplayName
269 *out = new(string)
270 **out = **in
271 }
272 if in.ObservedGeneration != nil {
273 in, out := &in.ObservedGeneration, &out.ObservedGeneration
274 *out = new(int)
275 **out = **in
276 }
277 if in.ProjectNumber != nil {
278 in, out := &in.ProjectNumber, &out.ProjectNumber
279 *out = new(string)
280 **out = **in
281 }
282 return
283 }
284
285
286 func (in *FirebaseProjectStatus) DeepCopy() *FirebaseProjectStatus {
287 if in == nil {
288 return nil
289 }
290 out := new(FirebaseProjectStatus)
291 in.DeepCopyInto(out)
292 return out
293 }
294
295
296 func (in *FirebaseWebApp) DeepCopyInto(out *FirebaseWebApp) {
297 *out = *in
298 out.TypeMeta = in.TypeMeta
299 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
300 in.Spec.DeepCopyInto(&out.Spec)
301 in.Status.DeepCopyInto(&out.Status)
302 return
303 }
304
305
306 func (in *FirebaseWebApp) DeepCopy() *FirebaseWebApp {
307 if in == nil {
308 return nil
309 }
310 out := new(FirebaseWebApp)
311 in.DeepCopyInto(out)
312 return out
313 }
314
315
316 func (in *FirebaseWebApp) DeepCopyObject() runtime.Object {
317 if c := in.DeepCopy(); c != nil {
318 return c
319 }
320 return nil
321 }
322
323
324 func (in *FirebaseWebAppList) DeepCopyInto(out *FirebaseWebAppList) {
325 *out = *in
326 out.TypeMeta = in.TypeMeta
327 in.ListMeta.DeepCopyInto(&out.ListMeta)
328 if in.Items != nil {
329 in, out := &in.Items, &out.Items
330 *out = make([]FirebaseWebApp, len(*in))
331 for i := range *in {
332 (*in)[i].DeepCopyInto(&(*out)[i])
333 }
334 }
335 return
336 }
337
338
339 func (in *FirebaseWebAppList) DeepCopy() *FirebaseWebAppList {
340 if in == nil {
341 return nil
342 }
343 out := new(FirebaseWebAppList)
344 in.DeepCopyInto(out)
345 return out
346 }
347
348
349 func (in *FirebaseWebAppList) DeepCopyObject() runtime.Object {
350 if c := in.DeepCopy(); c != nil {
351 return c
352 }
353 return nil
354 }
355
356
357 func (in *FirebaseWebAppSpec) DeepCopyInto(out *FirebaseWebAppSpec) {
358 *out = *in
359 if in.DeletionPolicy != nil {
360 in, out := &in.DeletionPolicy, &out.DeletionPolicy
361 *out = new(string)
362 **out = **in
363 }
364 if in.Project != nil {
365 in, out := &in.Project, &out.Project
366 *out = new(string)
367 **out = **in
368 }
369 if in.ResourceID != nil {
370 in, out := &in.ResourceID, &out.ResourceID
371 *out = new(string)
372 **out = **in
373 }
374 return
375 }
376
377
378 func (in *FirebaseWebAppSpec) DeepCopy() *FirebaseWebAppSpec {
379 if in == nil {
380 return nil
381 }
382 out := new(FirebaseWebAppSpec)
383 in.DeepCopyInto(out)
384 return out
385 }
386
387
388 func (in *FirebaseWebAppStatus) DeepCopyInto(out *FirebaseWebAppStatus) {
389 *out = *in
390 if in.Conditions != nil {
391 in, out := &in.Conditions, &out.Conditions
392 *out = make([]k8sv1alpha1.Condition, len(*in))
393 copy(*out, *in)
394 }
395 if in.AppId != nil {
396 in, out := &in.AppId, &out.AppId
397 *out = new(string)
398 **out = **in
399 }
400 if in.AppUrls != nil {
401 in, out := &in.AppUrls, &out.AppUrls
402 *out = make([]string, len(*in))
403 copy(*out, *in)
404 }
405 if in.Name != nil {
406 in, out := &in.Name, &out.Name
407 *out = new(string)
408 **out = **in
409 }
410 if in.ObservedGeneration != nil {
411 in, out := &in.ObservedGeneration, &out.ObservedGeneration
412 *out = new(int)
413 **out = **in
414 }
415 return
416 }
417
418
419 func (in *FirebaseWebAppStatus) DeepCopy() *FirebaseWebAppStatus {
420 if in == nil {
421 return nil
422 }
423 out := new(FirebaseWebAppStatus)
424 in.DeepCopyInto(out)
425 return out
426 }
427
View as plain text