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 *APIGatewayAPI) DeepCopyInto(out *APIGatewayAPI) {
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 *APIGatewayAPI) DeepCopy() *APIGatewayAPI {
44 if in == nil {
45 return nil
46 }
47 out := new(APIGatewayAPI)
48 in.DeepCopyInto(out)
49 return out
50 }
51
52
53 func (in *APIGatewayAPI) DeepCopyObject() runtime.Object {
54 if c := in.DeepCopy(); c != nil {
55 return c
56 }
57 return nil
58 }
59
60
61 func (in *APIGatewayAPIConfig) DeepCopyInto(out *APIGatewayAPIConfig) {
62 *out = *in
63 out.TypeMeta = in.TypeMeta
64 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
65 in.Spec.DeepCopyInto(&out.Spec)
66 in.Status.DeepCopyInto(&out.Status)
67 return
68 }
69
70
71 func (in *APIGatewayAPIConfig) DeepCopy() *APIGatewayAPIConfig {
72 if in == nil {
73 return nil
74 }
75 out := new(APIGatewayAPIConfig)
76 in.DeepCopyInto(out)
77 return out
78 }
79
80
81 func (in *APIGatewayAPIConfig) DeepCopyObject() runtime.Object {
82 if c := in.DeepCopy(); c != nil {
83 return c
84 }
85 return nil
86 }
87
88
89 func (in *APIGatewayAPIConfigList) DeepCopyInto(out *APIGatewayAPIConfigList) {
90 *out = *in
91 out.TypeMeta = in.TypeMeta
92 in.ListMeta.DeepCopyInto(&out.ListMeta)
93 if in.Items != nil {
94 in, out := &in.Items, &out.Items
95 *out = make([]APIGatewayAPIConfig, len(*in))
96 for i := range *in {
97 (*in)[i].DeepCopyInto(&(*out)[i])
98 }
99 }
100 return
101 }
102
103
104 func (in *APIGatewayAPIConfigList) DeepCopy() *APIGatewayAPIConfigList {
105 if in == nil {
106 return nil
107 }
108 out := new(APIGatewayAPIConfigList)
109 in.DeepCopyInto(out)
110 return out
111 }
112
113
114 func (in *APIGatewayAPIConfigList) DeepCopyObject() runtime.Object {
115 if c := in.DeepCopy(); c != nil {
116 return c
117 }
118 return nil
119 }
120
121
122 func (in *APIGatewayAPIConfigSpec) DeepCopyInto(out *APIGatewayAPIConfigSpec) {
123 *out = *in
124 if in.ApiConfigIdPrefix != nil {
125 in, out := &in.ApiConfigIdPrefix, &out.ApiConfigIdPrefix
126 *out = new(string)
127 **out = **in
128 }
129 if in.DisplayName != nil {
130 in, out := &in.DisplayName, &out.DisplayName
131 *out = new(string)
132 **out = **in
133 }
134 if in.GatewayConfig != nil {
135 in, out := &in.GatewayConfig, &out.GatewayConfig
136 *out = new(ApiconfigGatewayConfig)
137 **out = **in
138 }
139 if in.GrpcServices != nil {
140 in, out := &in.GrpcServices, &out.GrpcServices
141 *out = make([]ApiconfigGrpcServices, len(*in))
142 for i := range *in {
143 (*in)[i].DeepCopyInto(&(*out)[i])
144 }
145 }
146 if in.ManagedServiceConfigs != nil {
147 in, out := &in.ManagedServiceConfigs, &out.ManagedServiceConfigs
148 *out = make([]ApiconfigManagedServiceConfigs, len(*in))
149 copy(*out, *in)
150 }
151 if in.OpenapiDocuments != nil {
152 in, out := &in.OpenapiDocuments, &out.OpenapiDocuments
153 *out = make([]ApiconfigOpenapiDocuments, len(*in))
154 copy(*out, *in)
155 }
156 out.ProjectRef = in.ProjectRef
157 if in.ResourceID != nil {
158 in, out := &in.ResourceID, &out.ResourceID
159 *out = new(string)
160 **out = **in
161 }
162 return
163 }
164
165
166 func (in *APIGatewayAPIConfigSpec) DeepCopy() *APIGatewayAPIConfigSpec {
167 if in == nil {
168 return nil
169 }
170 out := new(APIGatewayAPIConfigSpec)
171 in.DeepCopyInto(out)
172 return out
173 }
174
175
176 func (in *APIGatewayAPIConfigStatus) DeepCopyInto(out *APIGatewayAPIConfigStatus) {
177 *out = *in
178 if in.Conditions != nil {
179 in, out := &in.Conditions, &out.Conditions
180 *out = make([]k8sv1alpha1.Condition, len(*in))
181 copy(*out, *in)
182 }
183 if in.Name != nil {
184 in, out := &in.Name, &out.Name
185 *out = new(string)
186 **out = **in
187 }
188 if in.ObservedGeneration != nil {
189 in, out := &in.ObservedGeneration, &out.ObservedGeneration
190 *out = new(int)
191 **out = **in
192 }
193 if in.ServiceConfigId != nil {
194 in, out := &in.ServiceConfigId, &out.ServiceConfigId
195 *out = new(string)
196 **out = **in
197 }
198 return
199 }
200
201
202 func (in *APIGatewayAPIConfigStatus) DeepCopy() *APIGatewayAPIConfigStatus {
203 if in == nil {
204 return nil
205 }
206 out := new(APIGatewayAPIConfigStatus)
207 in.DeepCopyInto(out)
208 return out
209 }
210
211
212 func (in *APIGatewayAPIList) DeepCopyInto(out *APIGatewayAPIList) {
213 *out = *in
214 out.TypeMeta = in.TypeMeta
215 in.ListMeta.DeepCopyInto(&out.ListMeta)
216 if in.Items != nil {
217 in, out := &in.Items, &out.Items
218 *out = make([]APIGatewayAPI, len(*in))
219 for i := range *in {
220 (*in)[i].DeepCopyInto(&(*out)[i])
221 }
222 }
223 return
224 }
225
226
227 func (in *APIGatewayAPIList) DeepCopy() *APIGatewayAPIList {
228 if in == nil {
229 return nil
230 }
231 out := new(APIGatewayAPIList)
232 in.DeepCopyInto(out)
233 return out
234 }
235
236
237 func (in *APIGatewayAPIList) DeepCopyObject() runtime.Object {
238 if c := in.DeepCopy(); c != nil {
239 return c
240 }
241 return nil
242 }
243
244
245 func (in *APIGatewayAPISpec) DeepCopyInto(out *APIGatewayAPISpec) {
246 *out = *in
247 if in.DisplayName != nil {
248 in, out := &in.DisplayName, &out.DisplayName
249 *out = new(string)
250 **out = **in
251 }
252 if in.ManagedService != nil {
253 in, out := &in.ManagedService, &out.ManagedService
254 *out = new(string)
255 **out = **in
256 }
257 out.ProjectRef = in.ProjectRef
258 if in.ResourceID != nil {
259 in, out := &in.ResourceID, &out.ResourceID
260 *out = new(string)
261 **out = **in
262 }
263 return
264 }
265
266
267 func (in *APIGatewayAPISpec) DeepCopy() *APIGatewayAPISpec {
268 if in == nil {
269 return nil
270 }
271 out := new(APIGatewayAPISpec)
272 in.DeepCopyInto(out)
273 return out
274 }
275
276
277 func (in *APIGatewayAPIStatus) DeepCopyInto(out *APIGatewayAPIStatus) {
278 *out = *in
279 if in.Conditions != nil {
280 in, out := &in.Conditions, &out.Conditions
281 *out = make([]k8sv1alpha1.Condition, len(*in))
282 copy(*out, *in)
283 }
284 if in.CreateTime != nil {
285 in, out := &in.CreateTime, &out.CreateTime
286 *out = new(string)
287 **out = **in
288 }
289 if in.Name != nil {
290 in, out := &in.Name, &out.Name
291 *out = new(string)
292 **out = **in
293 }
294 if in.ObservedGeneration != nil {
295 in, out := &in.ObservedGeneration, &out.ObservedGeneration
296 *out = new(int)
297 **out = **in
298 }
299 return
300 }
301
302
303 func (in *APIGatewayAPIStatus) DeepCopy() *APIGatewayAPIStatus {
304 if in == nil {
305 return nil
306 }
307 out := new(APIGatewayAPIStatus)
308 in.DeepCopyInto(out)
309 return out
310 }
311
312
313 func (in *APIGatewayGateway) DeepCopyInto(out *APIGatewayGateway) {
314 *out = *in
315 out.TypeMeta = in.TypeMeta
316 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
317 in.Spec.DeepCopyInto(&out.Spec)
318 in.Status.DeepCopyInto(&out.Status)
319 return
320 }
321
322
323 func (in *APIGatewayGateway) DeepCopy() *APIGatewayGateway {
324 if in == nil {
325 return nil
326 }
327 out := new(APIGatewayGateway)
328 in.DeepCopyInto(out)
329 return out
330 }
331
332
333 func (in *APIGatewayGateway) DeepCopyObject() runtime.Object {
334 if c := in.DeepCopy(); c != nil {
335 return c
336 }
337 return nil
338 }
339
340
341 func (in *APIGatewayGatewayList) DeepCopyInto(out *APIGatewayGatewayList) {
342 *out = *in
343 out.TypeMeta = in.TypeMeta
344 in.ListMeta.DeepCopyInto(&out.ListMeta)
345 if in.Items != nil {
346 in, out := &in.Items, &out.Items
347 *out = make([]APIGatewayGateway, len(*in))
348 for i := range *in {
349 (*in)[i].DeepCopyInto(&(*out)[i])
350 }
351 }
352 return
353 }
354
355
356 func (in *APIGatewayGatewayList) DeepCopy() *APIGatewayGatewayList {
357 if in == nil {
358 return nil
359 }
360 out := new(APIGatewayGatewayList)
361 in.DeepCopyInto(out)
362 return out
363 }
364
365
366 func (in *APIGatewayGatewayList) DeepCopyObject() runtime.Object {
367 if c := in.DeepCopy(); c != nil {
368 return c
369 }
370 return nil
371 }
372
373
374 func (in *APIGatewayGatewaySpec) DeepCopyInto(out *APIGatewayGatewaySpec) {
375 *out = *in
376 if in.DisplayName != nil {
377 in, out := &in.DisplayName, &out.DisplayName
378 *out = new(string)
379 **out = **in
380 }
381 out.ProjectRef = in.ProjectRef
382 if in.ResourceID != nil {
383 in, out := &in.ResourceID, &out.ResourceID
384 *out = new(string)
385 **out = **in
386 }
387 return
388 }
389
390
391 func (in *APIGatewayGatewaySpec) DeepCopy() *APIGatewayGatewaySpec {
392 if in == nil {
393 return nil
394 }
395 out := new(APIGatewayGatewaySpec)
396 in.DeepCopyInto(out)
397 return out
398 }
399
400
401 func (in *APIGatewayGatewayStatus) DeepCopyInto(out *APIGatewayGatewayStatus) {
402 *out = *in
403 if in.Conditions != nil {
404 in, out := &in.Conditions, &out.Conditions
405 *out = make([]k8sv1alpha1.Condition, len(*in))
406 copy(*out, *in)
407 }
408 if in.DefaultHostname != nil {
409 in, out := &in.DefaultHostname, &out.DefaultHostname
410 *out = new(string)
411 **out = **in
412 }
413 if in.Name != nil {
414 in, out := &in.Name, &out.Name
415 *out = new(string)
416 **out = **in
417 }
418 if in.ObservedGeneration != nil {
419 in, out := &in.ObservedGeneration, &out.ObservedGeneration
420 *out = new(int)
421 **out = **in
422 }
423 return
424 }
425
426
427 func (in *APIGatewayGatewayStatus) DeepCopy() *APIGatewayGatewayStatus {
428 if in == nil {
429 return nil
430 }
431 out := new(APIGatewayGatewayStatus)
432 in.DeepCopyInto(out)
433 return out
434 }
435
436
437 func (in *ApiconfigBackendConfig) DeepCopyInto(out *ApiconfigBackendConfig) {
438 *out = *in
439 return
440 }
441
442
443 func (in *ApiconfigBackendConfig) DeepCopy() *ApiconfigBackendConfig {
444 if in == nil {
445 return nil
446 }
447 out := new(ApiconfigBackendConfig)
448 in.DeepCopyInto(out)
449 return out
450 }
451
452
453 func (in *ApiconfigDocument) DeepCopyInto(out *ApiconfigDocument) {
454 *out = *in
455 return
456 }
457
458
459 func (in *ApiconfigDocument) DeepCopy() *ApiconfigDocument {
460 if in == nil {
461 return nil
462 }
463 out := new(ApiconfigDocument)
464 in.DeepCopyInto(out)
465 return out
466 }
467
468
469 func (in *ApiconfigFileDescriptorSet) DeepCopyInto(out *ApiconfigFileDescriptorSet) {
470 *out = *in
471 return
472 }
473
474
475 func (in *ApiconfigFileDescriptorSet) DeepCopy() *ApiconfigFileDescriptorSet {
476 if in == nil {
477 return nil
478 }
479 out := new(ApiconfigFileDescriptorSet)
480 in.DeepCopyInto(out)
481 return out
482 }
483
484
485 func (in *ApiconfigGatewayConfig) DeepCopyInto(out *ApiconfigGatewayConfig) {
486 *out = *in
487 out.BackendConfig = in.BackendConfig
488 return
489 }
490
491
492 func (in *ApiconfigGatewayConfig) DeepCopy() *ApiconfigGatewayConfig {
493 if in == nil {
494 return nil
495 }
496 out := new(ApiconfigGatewayConfig)
497 in.DeepCopyInto(out)
498 return out
499 }
500
501
502 func (in *ApiconfigGrpcServices) DeepCopyInto(out *ApiconfigGrpcServices) {
503 *out = *in
504 out.FileDescriptorSet = in.FileDescriptorSet
505 if in.Source != nil {
506 in, out := &in.Source, &out.Source
507 *out = make([]ApiconfigSource, len(*in))
508 copy(*out, *in)
509 }
510 return
511 }
512
513
514 func (in *ApiconfigGrpcServices) DeepCopy() *ApiconfigGrpcServices {
515 if in == nil {
516 return nil
517 }
518 out := new(ApiconfigGrpcServices)
519 in.DeepCopyInto(out)
520 return out
521 }
522
523
524 func (in *ApiconfigManagedServiceConfigs) DeepCopyInto(out *ApiconfigManagedServiceConfigs) {
525 *out = *in
526 return
527 }
528
529
530 func (in *ApiconfigManagedServiceConfigs) DeepCopy() *ApiconfigManagedServiceConfigs {
531 if in == nil {
532 return nil
533 }
534 out := new(ApiconfigManagedServiceConfigs)
535 in.DeepCopyInto(out)
536 return out
537 }
538
539
540 func (in *ApiconfigOpenapiDocuments) DeepCopyInto(out *ApiconfigOpenapiDocuments) {
541 *out = *in
542 out.Document = in.Document
543 return
544 }
545
546
547 func (in *ApiconfigOpenapiDocuments) DeepCopy() *ApiconfigOpenapiDocuments {
548 if in == nil {
549 return nil
550 }
551 out := new(ApiconfigOpenapiDocuments)
552 in.DeepCopyInto(out)
553 return out
554 }
555
556
557 func (in *ApiconfigSource) DeepCopyInto(out *ApiconfigSource) {
558 *out = *in
559 return
560 }
561
562
563 func (in *ApiconfigSource) DeepCopy() *ApiconfigSource {
564 if in == nil {
565 return nil
566 }
567 out := new(ApiconfigSource)
568 in.DeepCopyInto(out)
569 return out
570 }
571
View as plain text