• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

k8snetworkplumbingwg / sriov-network-operator / 19855289298

02 Dec 2025 10:24AM UTC coverage: 62.126% (-0.02%) from 62.149%
19855289298

Pull #967

github

web-flow
Merge e77928524 into d34e85b1c
Pull Request #967: Add support for network interface alternative names

70 of 91 new or added lines in 7 files covered. (76.92%)

21 existing lines in 6 files now uncovered.

8820 of 14197 relevant lines covered (62.13%)

0.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

47.86
/api/v1/zz_generated.deepcopy.go
1
//go:build !ignore_autogenerated
2

3
/*
4
Copyright 2021.
5

6
Licensed under the Apache License, Version 2.0 (the "License");
7
you may not use this file except in compliance with the License.
8
You may obtain a copy of the License at
9

10
    http://www.apache.org/licenses/LICENSE-2.0
11

12
Unless required by applicable law or agreed to in writing, software
13
distributed under the License is distributed on an "AS IS" BASIS,
14
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
See the License for the specific language governing permissions and
16
limitations under the License.
17
*/
18

19
// Code generated by controller-gen. DO NOT EDIT.
20

21
package v1
22

23
import (
24
        metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
25
        runtime "k8s.io/apimachinery/pkg/runtime"
26
        "k8s.io/apimachinery/pkg/util/intstr"
27
)
28

29
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
30
func (in *Bridge) DeepCopyInto(out *Bridge) {
1✔
31
        *out = *in
1✔
32
        if in.OVS != nil {
1✔
33
                in, out := &in.OVS, &out.OVS
×
34
                *out = new(OVSConfig)
×
35
                (*in).DeepCopyInto(*out)
×
36
        }
×
37
}
38

39
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Bridge.
40
func (in *Bridge) DeepCopy() *Bridge {
×
41
        if in == nil {
×
42
                return nil
×
43
        }
×
44
        out := new(Bridge)
×
45
        in.DeepCopyInto(out)
×
46
        return out
×
47
}
48

49
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
50
func (in *Bridges) DeepCopyInto(out *Bridges) {
1✔
51
        *out = *in
1✔
52
        if in.OVS != nil {
1✔
53
                in, out := &in.OVS, &out.OVS
×
54
                *out = make([]OVSConfigExt, len(*in))
×
55
                for i := range *in {
×
56
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
57
                }
×
58
        }
59
}
60

61
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Bridges.
62
func (in *Bridges) DeepCopy() *Bridges {
×
63
        if in == nil {
×
64
                return nil
×
65
        }
×
66
        out := new(Bridges)
×
67
        in.DeepCopyInto(out)
×
68
        return out
×
69
}
70

71
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
72
func (in ByPriority) DeepCopyInto(out *ByPriority) {
×
73
        {
×
74
                in := &in
×
75
                *out = make(ByPriority, len(*in))
×
76
                for i := range *in {
×
77
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
78
                }
×
79
        }
80
}
81

82
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ByPriority.
83
func (in ByPriority) DeepCopy() ByPriority {
×
84
        if in == nil {
×
85
                return nil
×
86
        }
×
87
        out := new(ByPriority)
×
88
        in.DeepCopyInto(out)
×
89
        return *out
×
90
}
91

92
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
93
func (in *Interface) DeepCopyInto(out *Interface) {
1✔
94
        *out = *in
1✔
95
        if in.VfGroups != nil {
2✔
96
                in, out := &in.VfGroups, &out.VfGroups
1✔
97
                *out = make([]VfGroup, len(*in))
1✔
98
                copy(*out, *in)
1✔
99
        }
1✔
100
}
101

102
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Interface.
103
func (in *Interface) DeepCopy() *Interface {
×
104
        if in == nil {
×
105
                return nil
×
106
        }
×
107
        out := new(Interface)
×
108
        in.DeepCopyInto(out)
×
109
        return out
×
110
}
111

112
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
113
func (in *InterfaceExt) DeepCopyInto(out *InterfaceExt) {
1✔
114
        *out = *in
1✔
115
        if in.VFs != nil {
2✔
116
                in, out := &in.VFs, &out.VFs
1✔
117
                *out = make([]VirtualFunction, len(*in))
1✔
118
                copy(*out, *in)
1✔
119
        }
1✔
120
        if in.AltNames != nil {
1✔
NEW
121
                in, out := &in.AltNames, &out.AltNames
×
NEW
122
                *out = make([]string, len(*in))
×
NEW
123
                copy(*out, *in)
×
NEW
124
        }
×
125
}
126

127
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InterfaceExt.
128
func (in *InterfaceExt) DeepCopy() *InterfaceExt {
×
129
        if in == nil {
×
130
                return nil
×
131
        }
×
132
        out := new(InterfaceExt)
×
133
        in.DeepCopyInto(out)
×
134
        return out
×
135
}
136

137
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
138
func (in InterfaceExts) DeepCopyInto(out *InterfaceExts) {
×
139
        {
×
140
                in := &in
×
141
                *out = make(InterfaceExts, len(*in))
×
142
                for i := range *in {
×
143
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
144
                }
×
145
        }
146
}
147

148
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InterfaceExts.
149
func (in InterfaceExts) DeepCopy() InterfaceExts {
×
150
        if in == nil {
×
151
                return nil
×
152
        }
×
153
        out := new(InterfaceExts)
×
154
        in.DeepCopyInto(out)
×
155
        return *out
×
156
}
157

158
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
159
func (in Interfaces) DeepCopyInto(out *Interfaces) {
×
160
        {
×
161
                in := &in
×
162
                *out = make(Interfaces, len(*in))
×
163
                for i := range *in {
×
164
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
165
                }
×
166
        }
167
}
168

169
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Interfaces.
170
func (in Interfaces) DeepCopy() Interfaces {
×
171
        if in == nil {
×
172
                return nil
×
173
        }
×
174
        out := new(Interfaces)
×
175
        in.DeepCopyInto(out)
×
176
        return *out
×
177
}
178

179
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
180
func (in *OVSBridgeConfig) DeepCopyInto(out *OVSBridgeConfig) {
1✔
181
        *out = *in
1✔
182
        if in.ExternalIDs != nil {
2✔
183
                in, out := &in.ExternalIDs, &out.ExternalIDs
1✔
184
                *out = make(map[string]string, len(*in))
1✔
185
                for key, val := range *in {
2✔
186
                        (*out)[key] = val
1✔
187
                }
1✔
188
        }
189
        if in.OtherConfig != nil {
2✔
190
                in, out := &in.OtherConfig, &out.OtherConfig
1✔
191
                *out = make(map[string]string, len(*in))
1✔
192
                for key, val := range *in {
2✔
193
                        (*out)[key] = val
1✔
194
                }
1✔
195
        }
196
}
197

198
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSBridgeConfig.
199
func (in *OVSBridgeConfig) DeepCopy() *OVSBridgeConfig {
×
200
        if in == nil {
×
201
                return nil
×
202
        }
×
203
        out := new(OVSBridgeConfig)
×
204
        in.DeepCopyInto(out)
×
205
        return out
×
206
}
207

208
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
209
func (in *OVSConfig) DeepCopyInto(out *OVSConfig) {
×
210
        *out = *in
×
211
        in.Bridge.DeepCopyInto(&out.Bridge)
×
212
        in.Uplink.DeepCopyInto(&out.Uplink)
×
213
}
×
214

215
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSConfig.
216
func (in *OVSConfig) DeepCopy() *OVSConfig {
×
217
        if in == nil {
×
218
                return nil
×
219
        }
×
220
        out := new(OVSConfig)
×
221
        in.DeepCopyInto(out)
×
222
        return out
×
223
}
224

225
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
226
func (in *OVSConfigExt) DeepCopyInto(out *OVSConfigExt) {
1✔
227
        *out = *in
1✔
228
        in.Bridge.DeepCopyInto(&out.Bridge)
1✔
229
        if in.Uplinks != nil {
2✔
230
                in, out := &in.Uplinks, &out.Uplinks
1✔
231
                *out = make([]OVSUplinkConfigExt, len(*in))
1✔
232
                for i := range *in {
2✔
233
                        (*in)[i].DeepCopyInto(&(*out)[i])
1✔
234
                }
1✔
235
        }
236
}
237

238
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSConfigExt.
239
func (in *OVSConfigExt) DeepCopy() *OVSConfigExt {
1✔
240
        if in == nil {
1✔
241
                return nil
×
242
        }
×
243
        out := new(OVSConfigExt)
1✔
244
        in.DeepCopyInto(out)
1✔
245
        return out
1✔
246
}
247

248
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
249
func (in *OVSInterfaceConfig) DeepCopyInto(out *OVSInterfaceConfig) {
1✔
250
        *out = *in
1✔
251
        if in.Options != nil {
2✔
252
                in, out := &in.Options, &out.Options
1✔
253
                *out = make(map[string]string, len(*in))
1✔
254
                for key, val := range *in {
2✔
255
                        (*out)[key] = val
1✔
256
                }
1✔
257
        }
258
        if in.ExternalIDs != nil {
2✔
259
                in, out := &in.ExternalIDs, &out.ExternalIDs
1✔
260
                *out = make(map[string]string, len(*in))
1✔
261
                for key, val := range *in {
2✔
262
                        (*out)[key] = val
1✔
263
                }
1✔
264
        }
265
        if in.OtherConfig != nil {
2✔
266
                in, out := &in.OtherConfig, &out.OtherConfig
1✔
267
                *out = make(map[string]string, len(*in))
1✔
268
                for key, val := range *in {
2✔
269
                        (*out)[key] = val
1✔
270
                }
1✔
271
        }
272
        if in.MTURequest != nil {
2✔
273
                in, out := &in.MTURequest, &out.MTURequest
1✔
274
                *out = new(int)
1✔
275
                **out = **in
1✔
276
        }
1✔
277
}
278

279
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSInterfaceConfig.
280
func (in *OVSInterfaceConfig) DeepCopy() *OVSInterfaceConfig {
×
281
        if in == nil {
×
282
                return nil
×
283
        }
×
284
        out := new(OVSInterfaceConfig)
×
285
        in.DeepCopyInto(out)
×
286
        return out
×
287
}
288

289
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
290
func (in *OVSNetwork) DeepCopyInto(out *OVSNetwork) {
1✔
291
        *out = *in
1✔
292
        out.TypeMeta = in.TypeMeta
1✔
293
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
294
        in.Spec.DeepCopyInto(&out.Spec)
1✔
295
        out.Status = in.Status
1✔
296
}
1✔
297

298
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSNetwork.
299
func (in *OVSNetwork) DeepCopy() *OVSNetwork {
1✔
300
        if in == nil {
1✔
301
                return nil
×
302
        }
×
303
        out := new(OVSNetwork)
1✔
304
        in.DeepCopyInto(out)
1✔
305
        return out
1✔
306
}
307

308
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
309
func (in *OVSNetwork) DeepCopyObject() runtime.Object {
1✔
310
        if c := in.DeepCopy(); c != nil {
2✔
311
                return c
1✔
312
        }
1✔
313
        return nil
×
314
}
315

316
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
317
func (in *OVSNetworkList) DeepCopyInto(out *OVSNetworkList) {
1✔
318
        *out = *in
1✔
319
        out.TypeMeta = in.TypeMeta
1✔
320
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
321
        if in.Items != nil {
1✔
322
                in, out := &in.Items, &out.Items
×
323
                *out = make([]OVSNetwork, len(*in))
×
324
                for i := range *in {
×
325
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
326
                }
×
327
        }
328
}
329

330
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSNetworkList.
331
func (in *OVSNetworkList) DeepCopy() *OVSNetworkList {
1✔
332
        if in == nil {
1✔
333
                return nil
×
334
        }
×
335
        out := new(OVSNetworkList)
1✔
336
        in.DeepCopyInto(out)
1✔
337
        return out
1✔
338
}
339

340
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
341
func (in *OVSNetworkList) DeepCopyObject() runtime.Object {
1✔
342
        if c := in.DeepCopy(); c != nil {
2✔
343
                return c
1✔
344
        }
1✔
345
        return nil
×
346
}
347

348
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
349
func (in *OVSNetworkSpec) DeepCopyInto(out *OVSNetworkSpec) {
1✔
350
        *out = *in
1✔
351
        if in.Trunk != nil {
1✔
352
                in, out := &in.Trunk, &out.Trunk
×
353
                *out = make([]*TrunkConfig, len(*in))
×
354
                for i := range *in {
×
355
                        if (*in)[i] != nil {
×
356
                                in, out := &(*in)[i], &(*out)[i]
×
357
                                *out = new(TrunkConfig)
×
358
                                (*in).DeepCopyInto(*out)
×
359
                        }
×
360
                }
361
        }
362
}
363

364
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSNetworkSpec.
365
func (in *OVSNetworkSpec) DeepCopy() *OVSNetworkSpec {
×
366
        if in == nil {
×
367
                return nil
×
368
        }
×
369
        out := new(OVSNetworkSpec)
×
370
        in.DeepCopyInto(out)
×
371
        return out
×
372
}
373

374
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
375
func (in *OVSNetworkStatus) DeepCopyInto(out *OVSNetworkStatus) {
×
376
        *out = *in
×
377
}
×
378

379
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSNetworkStatus.
380
func (in *OVSNetworkStatus) DeepCopy() *OVSNetworkStatus {
×
381
        if in == nil {
×
382
                return nil
×
383
        }
×
384
        out := new(OVSNetworkStatus)
×
385
        in.DeepCopyInto(out)
×
386
        return out
×
387
}
388

389
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
390
func (in *OVSUplinkConfig) DeepCopyInto(out *OVSUplinkConfig) {
×
391
        *out = *in
×
392
        in.Interface.DeepCopyInto(&out.Interface)
×
393
}
×
394

395
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSUplinkConfig.
396
func (in *OVSUplinkConfig) DeepCopy() *OVSUplinkConfig {
×
397
        if in == nil {
×
398
                return nil
×
399
        }
×
400
        out := new(OVSUplinkConfig)
×
401
        in.DeepCopyInto(out)
×
402
        return out
×
403
}
404

405
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
406
func (in *OVSUplinkConfigExt) DeepCopyInto(out *OVSUplinkConfigExt) {
1✔
407
        *out = *in
1✔
408
        in.Interface.DeepCopyInto(&out.Interface)
1✔
409
}
1✔
410

411
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OVSUplinkConfigExt.
412
func (in *OVSUplinkConfigExt) DeepCopy() *OVSUplinkConfigExt {
×
413
        if in == nil {
×
414
                return nil
×
415
        }
×
416
        out := new(OVSUplinkConfigExt)
×
417
        in.DeepCopyInto(out)
×
418
        return out
×
419
}
420

421
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
422
func (in *OvsHardwareOffloadConfig) DeepCopyInto(out *OvsHardwareOffloadConfig) {
×
423
        *out = *in
×
424
}
×
425

426
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OvsHardwareOffloadConfig.
427
func (in *OvsHardwareOffloadConfig) DeepCopy() *OvsHardwareOffloadConfig {
×
428
        if in == nil {
×
429
                return nil
×
430
        }
×
431
        out := new(OvsHardwareOffloadConfig)
×
432
        in.DeepCopyInto(out)
×
433
        return out
×
434
}
435

436
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
437
func (in PluginNameSlice) DeepCopyInto(out *PluginNameSlice) {
×
438
        {
×
439
                in := &in
×
440
                *out = make(PluginNameSlice, len(*in))
×
441
                copy(*out, *in)
×
442
        }
×
443
}
444

445
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginNameSlice.
446
func (in PluginNameSlice) DeepCopy() PluginNameSlice {
×
447
        if in == nil {
×
448
                return nil
×
449
        }
×
450
        out := new(PluginNameSlice)
×
451
        in.DeepCopyInto(out)
×
452
        return *out
×
453
}
454

455
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
456
func (in *SriovIBNetwork) DeepCopyInto(out *SriovIBNetwork) {
1✔
457
        *out = *in
1✔
458
        out.TypeMeta = in.TypeMeta
1✔
459
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
460
        out.Spec = in.Spec
1✔
461
        out.Status = in.Status
1✔
462
}
1✔
463

464
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovIBNetwork.
465
func (in *SriovIBNetwork) DeepCopy() *SriovIBNetwork {
1✔
466
        if in == nil {
1✔
467
                return nil
×
468
        }
×
469
        out := new(SriovIBNetwork)
1✔
470
        in.DeepCopyInto(out)
1✔
471
        return out
1✔
472
}
473

474
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
475
func (in *SriovIBNetwork) DeepCopyObject() runtime.Object {
1✔
476
        if c := in.DeepCopy(); c != nil {
2✔
477
                return c
1✔
478
        }
1✔
479
        return nil
×
480
}
481

482
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
483
func (in *SriovIBNetworkList) DeepCopyInto(out *SriovIBNetworkList) {
1✔
484
        *out = *in
1✔
485
        out.TypeMeta = in.TypeMeta
1✔
486
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
487
        if in.Items != nil {
1✔
488
                in, out := &in.Items, &out.Items
×
489
                *out = make([]SriovIBNetwork, len(*in))
×
490
                for i := range *in {
×
491
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
492
                }
×
493
        }
494
}
495

496
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovIBNetworkList.
497
func (in *SriovIBNetworkList) DeepCopy() *SriovIBNetworkList {
1✔
498
        if in == nil {
1✔
499
                return nil
×
500
        }
×
501
        out := new(SriovIBNetworkList)
1✔
502
        in.DeepCopyInto(out)
1✔
503
        return out
1✔
504
}
505

506
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
507
func (in *SriovIBNetworkList) DeepCopyObject() runtime.Object {
1✔
508
        if c := in.DeepCopy(); c != nil {
2✔
509
                return c
1✔
510
        }
1✔
511
        return nil
×
512
}
513

514
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
515
func (in *SriovIBNetworkSpec) DeepCopyInto(out *SriovIBNetworkSpec) {
×
516
        *out = *in
×
517
}
×
518

519
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovIBNetworkSpec.
520
func (in *SriovIBNetworkSpec) DeepCopy() *SriovIBNetworkSpec {
×
521
        if in == nil {
×
522
                return nil
×
523
        }
×
524
        out := new(SriovIBNetworkSpec)
×
525
        in.DeepCopyInto(out)
×
526
        return out
×
527
}
528

529
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
530
func (in *SriovIBNetworkStatus) DeepCopyInto(out *SriovIBNetworkStatus) {
×
531
        *out = *in
×
532
}
×
533

534
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovIBNetworkStatus.
535
func (in *SriovIBNetworkStatus) DeepCopy() *SriovIBNetworkStatus {
×
536
        if in == nil {
×
537
                return nil
×
538
        }
×
539
        out := new(SriovIBNetworkStatus)
×
540
        in.DeepCopyInto(out)
×
541
        return out
×
542
}
543

544
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
545
func (in *SriovNetwork) DeepCopyInto(out *SriovNetwork) {
1✔
546
        *out = *in
1✔
547
        out.TypeMeta = in.TypeMeta
1✔
548
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
549
        in.Spec.DeepCopyInto(&out.Spec)
1✔
550
        out.Status = in.Status
1✔
551
}
1✔
552

553
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetwork.
554
func (in *SriovNetwork) DeepCopy() *SriovNetwork {
1✔
555
        if in == nil {
1✔
556
                return nil
×
557
        }
×
558
        out := new(SriovNetwork)
1✔
559
        in.DeepCopyInto(out)
1✔
560
        return out
1✔
561
}
562

563
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
564
func (in *SriovNetwork) DeepCopyObject() runtime.Object {
1✔
565
        if c := in.DeepCopy(); c != nil {
2✔
566
                return c
1✔
567
        }
1✔
568
        return nil
×
569
}
570

571
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
572
func (in *SriovNetworkList) DeepCopyInto(out *SriovNetworkList) {
1✔
573
        *out = *in
1✔
574
        out.TypeMeta = in.TypeMeta
1✔
575
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
576
        if in.Items != nil {
1✔
577
                in, out := &in.Items, &out.Items
×
578
                *out = make([]SriovNetwork, len(*in))
×
579
                for i := range *in {
×
580
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
581
                }
×
582
        }
583
}
584

585
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkList.
586
func (in *SriovNetworkList) DeepCopy() *SriovNetworkList {
1✔
587
        if in == nil {
1✔
588
                return nil
×
589
        }
×
590
        out := new(SriovNetworkList)
1✔
591
        in.DeepCopyInto(out)
1✔
592
        return out
1✔
593
}
594

595
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
596
func (in *SriovNetworkList) DeepCopyObject() runtime.Object {
1✔
597
        if c := in.DeepCopy(); c != nil {
2✔
598
                return c
1✔
599
        }
1✔
600
        return nil
×
601
}
602

603
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
604
func (in *SriovNetworkNicSelector) DeepCopyInto(out *SriovNetworkNicSelector) {
1✔
605
        *out = *in
1✔
606
        if in.RootDevices != nil {
1✔
607
                in, out := &in.RootDevices, &out.RootDevices
×
608
                *out = make([]string, len(*in))
×
609
                copy(*out, *in)
×
610
        }
×
611
        if in.PfNames != nil {
1✔
612
                in, out := &in.PfNames, &out.PfNames
×
613
                *out = make([]string, len(*in))
×
614
                copy(*out, *in)
×
615
        }
×
616
}
617

618
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNicSelector.
619
func (in *SriovNetworkNicSelector) DeepCopy() *SriovNetworkNicSelector {
×
620
        if in == nil {
×
621
                return nil
×
622
        }
×
623
        out := new(SriovNetworkNicSelector)
×
624
        in.DeepCopyInto(out)
×
625
        return out
×
626
}
627

628
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
629
func (in *SriovNetworkNodePolicy) DeepCopyInto(out *SriovNetworkNodePolicy) {
1✔
630
        *out = *in
1✔
631
        out.TypeMeta = in.TypeMeta
1✔
632
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
633
        in.Spec.DeepCopyInto(&out.Spec)
1✔
634
        out.Status = in.Status
1✔
635
}
1✔
636

637
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodePolicy.
638
func (in *SriovNetworkNodePolicy) DeepCopy() *SriovNetworkNodePolicy {
1✔
639
        if in == nil {
1✔
640
                return nil
×
641
        }
×
642
        out := new(SriovNetworkNodePolicy)
1✔
643
        in.DeepCopyInto(out)
1✔
644
        return out
1✔
645
}
646

647
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
648
func (in *SriovNetworkNodePolicy) DeepCopyObject() runtime.Object {
1✔
649
        if c := in.DeepCopy(); c != nil {
2✔
650
                return c
1✔
651
        }
1✔
652
        return nil
×
653
}
654

655
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
656
func (in *SriovNetworkNodePolicyList) DeepCopyInto(out *SriovNetworkNodePolicyList) {
1✔
657
        *out = *in
1✔
658
        out.TypeMeta = in.TypeMeta
1✔
659
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
660
        if in.Items != nil {
1✔
661
                in, out := &in.Items, &out.Items
×
662
                *out = make([]SriovNetworkNodePolicy, len(*in))
×
663
                for i := range *in {
×
664
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
665
                }
×
666
        }
667
}
668

669
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodePolicyList.
670
func (in *SriovNetworkNodePolicyList) DeepCopy() *SriovNetworkNodePolicyList {
1✔
671
        if in == nil {
1✔
672
                return nil
×
673
        }
×
674
        out := new(SriovNetworkNodePolicyList)
1✔
675
        in.DeepCopyInto(out)
1✔
676
        return out
1✔
677
}
678

679
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
680
func (in *SriovNetworkNodePolicyList) DeepCopyObject() runtime.Object {
1✔
681
        if c := in.DeepCopy(); c != nil {
2✔
682
                return c
1✔
683
        }
1✔
684
        return nil
×
685
}
686

687
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
688
func (in *SriovNetworkNodePolicySpec) DeepCopyInto(out *SriovNetworkNodePolicySpec) {
1✔
689
        *out = *in
1✔
690
        if in.NodeSelector != nil {
2✔
691
                in, out := &in.NodeSelector, &out.NodeSelector
1✔
692
                *out = make(map[string]string, len(*in))
1✔
693
                for key, val := range *in {
2✔
694
                        (*out)[key] = val
1✔
695
                }
1✔
696
        }
697
        in.NicSelector.DeepCopyInto(&out.NicSelector)
1✔
698
        in.Bridge.DeepCopyInto(&out.Bridge)
1✔
699
}
700

701
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodePolicySpec.
702
func (in *SriovNetworkNodePolicySpec) DeepCopy() *SriovNetworkNodePolicySpec {
×
703
        if in == nil {
×
704
                return nil
×
705
        }
×
706
        out := new(SriovNetworkNodePolicySpec)
×
707
        in.DeepCopyInto(out)
×
708
        return out
×
709
}
710

711
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
712
func (in *SriovNetworkNodePolicyStatus) DeepCopyInto(out *SriovNetworkNodePolicyStatus) {
×
713
        *out = *in
×
714
}
×
715

716
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodePolicyStatus.
717
func (in *SriovNetworkNodePolicyStatus) DeepCopy() *SriovNetworkNodePolicyStatus {
×
718
        if in == nil {
×
719
                return nil
×
720
        }
×
721
        out := new(SriovNetworkNodePolicyStatus)
×
722
        in.DeepCopyInto(out)
×
723
        return out
×
724
}
725

726
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
727
func (in *SriovNetworkNodeState) DeepCopyInto(out *SriovNetworkNodeState) {
1✔
728
        *out = *in
1✔
729
        out.TypeMeta = in.TypeMeta
1✔
730
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
731
        in.Spec.DeepCopyInto(&out.Spec)
1✔
732
        in.Status.DeepCopyInto(&out.Status)
1✔
733
}
1✔
734

735
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodeState.
736
func (in *SriovNetworkNodeState) DeepCopy() *SriovNetworkNodeState {
1✔
737
        if in == nil {
1✔
738
                return nil
×
739
        }
×
740
        out := new(SriovNetworkNodeState)
1✔
741
        in.DeepCopyInto(out)
1✔
742
        return out
1✔
743
}
744

745
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
746
func (in *SriovNetworkNodeState) DeepCopyObject() runtime.Object {
1✔
747
        if c := in.DeepCopy(); c != nil {
2✔
748
                return c
1✔
749
        }
1✔
750
        return nil
×
751
}
752

753
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
754
func (in *SriovNetworkNodeStateList) DeepCopyInto(out *SriovNetworkNodeStateList) {
1✔
755
        *out = *in
1✔
756
        out.TypeMeta = in.TypeMeta
1✔
757
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
758
        if in.Items != nil {
2✔
759
                in, out := &in.Items, &out.Items
1✔
760
                *out = make([]SriovNetworkNodeState, len(*in))
1✔
761
                for i := range *in {
2✔
762
                        (*in)[i].DeepCopyInto(&(*out)[i])
1✔
763
                }
1✔
764
        }
765
}
766

767
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodeStateList.
768
func (in *SriovNetworkNodeStateList) DeepCopy() *SriovNetworkNodeStateList {
1✔
769
        if in == nil {
1✔
770
                return nil
×
771
        }
×
772
        out := new(SriovNetworkNodeStateList)
1✔
773
        in.DeepCopyInto(out)
1✔
774
        return out
1✔
775
}
776

777
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
778
func (in *SriovNetworkNodeStateList) DeepCopyObject() runtime.Object {
1✔
779
        if c := in.DeepCopy(); c != nil {
2✔
780
                return c
1✔
781
        }
1✔
782
        return nil
×
783
}
784

785
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
786
func (in *SriovNetworkNodeStateSpec) DeepCopyInto(out *SriovNetworkNodeStateSpec) {
1✔
787
        *out = *in
1✔
788
        if in.Interfaces != nil {
2✔
789
                in, out := &in.Interfaces, &out.Interfaces
1✔
790
                *out = make(Interfaces, len(*in))
1✔
791
                for i := range *in {
2✔
792
                        (*in)[i].DeepCopyInto(&(*out)[i])
1✔
793
                }
1✔
794
        }
795
        in.Bridges.DeepCopyInto(&out.Bridges)
1✔
796
        out.System = in.System
1✔
797
}
798

799
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodeStateSpec.
800
func (in *SriovNetworkNodeStateSpec) DeepCopy() *SriovNetworkNodeStateSpec {
×
801
        if in == nil {
×
802
                return nil
×
803
        }
×
804
        out := new(SriovNetworkNodeStateSpec)
×
805
        in.DeepCopyInto(out)
×
806
        return out
×
807
}
808

809
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
810
func (in *SriovNetworkNodeStateStatus) DeepCopyInto(out *SriovNetworkNodeStateStatus) {
1✔
811
        *out = *in
1✔
812
        if in.Interfaces != nil {
2✔
813
                in, out := &in.Interfaces, &out.Interfaces
1✔
814
                *out = make(InterfaceExts, len(*in))
1✔
815
                for i := range *in {
2✔
816
                        (*in)[i].DeepCopyInto(&(*out)[i])
1✔
817
                }
1✔
818
        }
819
        in.Bridges.DeepCopyInto(&out.Bridges)
1✔
820
        out.System = in.System
1✔
821
}
822

823
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkNodeStateStatus.
824
func (in *SriovNetworkNodeStateStatus) DeepCopy() *SriovNetworkNodeStateStatus {
1✔
825
        if in == nil {
1✔
826
                return nil
×
827
        }
×
828
        out := new(SriovNetworkNodeStateStatus)
1✔
829
        in.DeepCopyInto(out)
1✔
830
        return out
1✔
831
}
832

833
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
834
func (in *SriovNetworkPoolConfig) DeepCopyInto(out *SriovNetworkPoolConfig) {
1✔
835
        *out = *in
1✔
836
        out.TypeMeta = in.TypeMeta
1✔
837
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
838
        in.Spec.DeepCopyInto(&out.Spec)
1✔
839
        out.Status = in.Status
1✔
840
}
1✔
841

842
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkPoolConfig.
843
func (in *SriovNetworkPoolConfig) DeepCopy() *SriovNetworkPoolConfig {
1✔
844
        if in == nil {
1✔
845
                return nil
×
846
        }
×
847
        out := new(SriovNetworkPoolConfig)
1✔
848
        in.DeepCopyInto(out)
1✔
849
        return out
1✔
850
}
851

852
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
853
func (in *SriovNetworkPoolConfig) DeepCopyObject() runtime.Object {
1✔
854
        if c := in.DeepCopy(); c != nil {
2✔
855
                return c
1✔
856
        }
1✔
857
        return nil
×
858
}
859

860
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
861
func (in *SriovNetworkPoolConfigList) DeepCopyInto(out *SriovNetworkPoolConfigList) {
1✔
862
        *out = *in
1✔
863
        out.TypeMeta = in.TypeMeta
1✔
864
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
865
        if in.Items != nil {
1✔
866
                in, out := &in.Items, &out.Items
×
867
                *out = make([]SriovNetworkPoolConfig, len(*in))
×
868
                for i := range *in {
×
869
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
870
                }
×
871
        }
872
}
873

874
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkPoolConfigList.
875
func (in *SriovNetworkPoolConfigList) DeepCopy() *SriovNetworkPoolConfigList {
1✔
876
        if in == nil {
1✔
877
                return nil
×
878
        }
×
879
        out := new(SriovNetworkPoolConfigList)
1✔
880
        in.DeepCopyInto(out)
1✔
881
        return out
1✔
882
}
883

884
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
885
func (in *SriovNetworkPoolConfigList) DeepCopyObject() runtime.Object {
1✔
886
        if c := in.DeepCopy(); c != nil {
2✔
887
                return c
1✔
888
        }
1✔
889
        return nil
×
890
}
891

892
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
893
func (in *SriovNetworkPoolConfigSpec) DeepCopyInto(out *SriovNetworkPoolConfigSpec) {
1✔
894
        *out = *in
1✔
895
        out.OvsHardwareOffloadConfig = in.OvsHardwareOffloadConfig
1✔
896
        if in.NodeSelector != nil {
2✔
897
                in, out := &in.NodeSelector, &out.NodeSelector
1✔
898
                *out = new(metav1.LabelSelector)
1✔
899
                (*in).DeepCopyInto(*out)
1✔
900
        }
1✔
901
        if in.MaxUnavailable != nil {
2✔
902
                in, out := &in.MaxUnavailable, &out.MaxUnavailable
1✔
903
                *out = new(intstr.IntOrString)
1✔
904
                **out = **in
1✔
905
        }
1✔
906
}
907

908
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkPoolConfigSpec.
909
func (in *SriovNetworkPoolConfigSpec) DeepCopy() *SriovNetworkPoolConfigSpec {
×
910
        if in == nil {
×
911
                return nil
×
912
        }
×
913
        out := new(SriovNetworkPoolConfigSpec)
×
914
        in.DeepCopyInto(out)
×
915
        return out
×
916
}
917

918
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
919
func (in *SriovNetworkPoolConfigStatus) DeepCopyInto(out *SriovNetworkPoolConfigStatus) {
×
920
        *out = *in
×
921
}
×
922

923
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkPoolConfigStatus.
924
func (in *SriovNetworkPoolConfigStatus) DeepCopy() *SriovNetworkPoolConfigStatus {
×
925
        if in == nil {
×
926
                return nil
×
927
        }
×
928
        out := new(SriovNetworkPoolConfigStatus)
×
929
        in.DeepCopyInto(out)
×
930
        return out
×
931
}
932

933
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
934
func (in *SriovNetworkSpec) DeepCopyInto(out *SriovNetworkSpec) {
1✔
935
        *out = *in
1✔
936
        if in.MinTxRate != nil {
2✔
937
                in, out := &in.MinTxRate, &out.MinTxRate
1✔
938
                *out = new(int)
1✔
939
                **out = **in
1✔
940
        }
1✔
941
        if in.MaxTxRate != nil {
1✔
942
                in, out := &in.MaxTxRate, &out.MaxTxRate
×
943
                *out = new(int)
×
944
                **out = **in
×
945
        }
×
946
}
947

948
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkSpec.
949
func (in *SriovNetworkSpec) DeepCopy() *SriovNetworkSpec {
×
950
        if in == nil {
×
951
                return nil
×
952
        }
×
953
        out := new(SriovNetworkSpec)
×
954
        in.DeepCopyInto(out)
×
955
        return out
×
956
}
957

958
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
959
func (in *SriovNetworkStatus) DeepCopyInto(out *SriovNetworkStatus) {
×
960
        *out = *in
×
961
}
×
962

963
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovNetworkStatus.
964
func (in *SriovNetworkStatus) DeepCopy() *SriovNetworkStatus {
×
965
        if in == nil {
×
966
                return nil
×
967
        }
×
968
        out := new(SriovNetworkStatus)
×
969
        in.DeepCopyInto(out)
×
970
        return out
×
971
}
972

973
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
974
func (in *SriovOperatorConfig) DeepCopyInto(out *SriovOperatorConfig) {
1✔
975
        *out = *in
1✔
976
        out.TypeMeta = in.TypeMeta
1✔
977
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
1✔
978
        in.Spec.DeepCopyInto(&out.Spec)
1✔
979
        out.Status = in.Status
1✔
980
}
1✔
981

982
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovOperatorConfig.
983
func (in *SriovOperatorConfig) DeepCopy() *SriovOperatorConfig {
1✔
984
        if in == nil {
1✔
985
                return nil
×
986
        }
×
987
        out := new(SriovOperatorConfig)
1✔
988
        in.DeepCopyInto(out)
1✔
989
        return out
1✔
990
}
991

992
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
993
func (in *SriovOperatorConfig) DeepCopyObject() runtime.Object {
1✔
994
        if c := in.DeepCopy(); c != nil {
2✔
995
                return c
1✔
996
        }
1✔
997
        return nil
×
998
}
999

1000
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1001
func (in *SriovOperatorConfigList) DeepCopyInto(out *SriovOperatorConfigList) {
1✔
1002
        *out = *in
1✔
1003
        out.TypeMeta = in.TypeMeta
1✔
1004
        in.ListMeta.DeepCopyInto(&out.ListMeta)
1✔
1005
        if in.Items != nil {
1✔
1006
                in, out := &in.Items, &out.Items
×
1007
                *out = make([]SriovOperatorConfig, len(*in))
×
1008
                for i := range *in {
×
1009
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
1010
                }
×
1011
        }
1012
}
1013

1014
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovOperatorConfigList.
1015
func (in *SriovOperatorConfigList) DeepCopy() *SriovOperatorConfigList {
1✔
1016
        if in == nil {
1✔
1017
                return nil
×
1018
        }
×
1019
        out := new(SriovOperatorConfigList)
1✔
1020
        in.DeepCopyInto(out)
1✔
1021
        return out
1✔
1022
}
1023

1024
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
1025
func (in *SriovOperatorConfigList) DeepCopyObject() runtime.Object {
1✔
1026
        if c := in.DeepCopy(); c != nil {
2✔
1027
                return c
1✔
1028
        }
1✔
1029
        return nil
×
1030
}
1031

1032
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1033
func (in *SriovOperatorConfigSpec) DeepCopyInto(out *SriovOperatorConfigSpec) {
1✔
1034
        *out = *in
1✔
1035
        if in.ConfigDaemonNodeSelector != nil {
2✔
1036
                in, out := &in.ConfigDaemonNodeSelector, &out.ConfigDaemonNodeSelector
1✔
1037
                *out = make(map[string]string, len(*in))
1✔
1038
                for key, val := range *in {
2✔
1039
                        (*out)[key] = val
1✔
1040
                }
1✔
1041
        }
1042
        if in.DisablePlugins != nil {
2✔
1043
                in, out := &in.DisablePlugins, &out.DisablePlugins
1✔
1044
                *out = make(PluginNameSlice, len(*in))
1✔
1045
                copy(*out, *in)
1✔
1046
        }
1✔
1047
        if in.FeatureGates != nil {
2✔
1048
                in, out := &in.FeatureGates, &out.FeatureGates
1✔
1049
                *out = make(map[string]bool, len(*in))
1✔
1050
                for key, val := range *in {
2✔
1051
                        (*out)[key] = val
1✔
1052
                }
1✔
1053
        }
1054
}
1055

1056
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovOperatorConfigSpec.
1057
func (in *SriovOperatorConfigSpec) DeepCopy() *SriovOperatorConfigSpec {
1✔
1058
        if in == nil {
1✔
1059
                return nil
×
1060
        }
×
1061
        out := new(SriovOperatorConfigSpec)
1✔
1062
        in.DeepCopyInto(out)
1✔
1063
        return out
1✔
1064
}
1065

1066
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1067
func (in *SriovOperatorConfigStatus) DeepCopyInto(out *SriovOperatorConfigStatus) {
×
1068
        *out = *in
×
1069
}
×
1070

1071
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SriovOperatorConfigStatus.
1072
func (in *SriovOperatorConfigStatus) DeepCopy() *SriovOperatorConfigStatus {
×
1073
        if in == nil {
×
1074
                return nil
×
1075
        }
×
1076
        out := new(SriovOperatorConfigStatus)
×
1077
        in.DeepCopyInto(out)
×
1078
        return out
×
1079
}
1080

1081
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1082
func (in *System) DeepCopyInto(out *System) {
×
1083
        *out = *in
×
1084
}
×
1085

1086
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new System.
1087
func (in *System) DeepCopy() *System {
×
1088
        if in == nil {
×
1089
                return nil
×
1090
        }
×
1091
        out := new(System)
×
1092
        in.DeepCopyInto(out)
×
1093
        return out
×
1094
}
1095

1096
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1097
func (in *TrunkConfig) DeepCopyInto(out *TrunkConfig) {
×
1098
        *out = *in
×
1099
        if in.MinID != nil {
×
1100
                in, out := &in.MinID, &out.MinID
×
1101
                *out = new(uint)
×
1102
                **out = **in
×
1103
        }
×
1104
        if in.MaxID != nil {
×
1105
                in, out := &in.MaxID, &out.MaxID
×
1106
                *out = new(uint)
×
1107
                **out = **in
×
1108
        }
×
1109
        if in.ID != nil {
×
1110
                in, out := &in.ID, &out.ID
×
1111
                *out = new(uint)
×
1112
                **out = **in
×
1113
        }
×
1114
}
1115

1116
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TrunkConfig.
1117
func (in *TrunkConfig) DeepCopy() *TrunkConfig {
×
1118
        if in == nil {
×
1119
                return nil
×
1120
        }
×
1121
        out := new(TrunkConfig)
×
1122
        in.DeepCopyInto(out)
×
1123
        return out
×
1124
}
1125

1126
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1127
func (in *VfGroup) DeepCopyInto(out *VfGroup) {
×
1128
        *out = *in
×
1129
}
×
1130

1131
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VfGroup.
1132
func (in *VfGroup) DeepCopy() *VfGroup {
×
1133
        if in == nil {
×
1134
                return nil
×
1135
        }
×
1136
        out := new(VfGroup)
×
1137
        in.DeepCopyInto(out)
×
1138
        return out
×
1139
}
1140

1141
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
1142
func (in *VirtualFunction) DeepCopyInto(out *VirtualFunction) {
×
1143
        *out = *in
×
1144
}
×
1145

1146
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VirtualFunction.
1147
func (in *VirtualFunction) DeepCopy() *VirtualFunction {
×
1148
        if in == nil {
×
1149
                return nil
×
1150
        }
×
1151
        out := new(VirtualFunction)
×
1152
        in.DeepCopyInto(out)
×
1153
        return out
×
1154
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc