...
1
2
3
18
19
20
21 package v1
22
23 import (
24 runtime "k8s.io/apimachinery/pkg/runtime"
25 )
26
27
28 func (in *NetworkAttachmentDefinition) DeepCopyInto(out *NetworkAttachmentDefinition) {
29 *out = *in
30 out.TypeMeta = in.TypeMeta
31 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
32 out.Spec = in.Spec
33 return
34 }
35
36
37 func (in *NetworkAttachmentDefinition) DeepCopy() *NetworkAttachmentDefinition {
38 if in == nil {
39 return nil
40 }
41 out := new(NetworkAttachmentDefinition)
42 in.DeepCopyInto(out)
43 return out
44 }
45
46
47 func (in *NetworkAttachmentDefinition) DeepCopyObject() runtime.Object {
48 if c := in.DeepCopy(); c != nil {
49 return c
50 }
51 return nil
52 }
53
54
55 func (in *NetworkAttachmentDefinitionList) DeepCopyInto(out *NetworkAttachmentDefinitionList) {
56 *out = *in
57 out.TypeMeta = in.TypeMeta
58 out.ListMeta = in.ListMeta
59 if in.Items != nil {
60 in, out := &in.Items, &out.Items
61 *out = make([]NetworkAttachmentDefinition, len(*in))
62 for i := range *in {
63 (*in)[i].DeepCopyInto(&(*out)[i])
64 }
65 }
66 return
67 }
68
69
70 func (in *NetworkAttachmentDefinitionList) DeepCopy() *NetworkAttachmentDefinitionList {
71 if in == nil {
72 return nil
73 }
74 out := new(NetworkAttachmentDefinitionList)
75 in.DeepCopyInto(out)
76 return out
77 }
78
79
80 func (in *NetworkAttachmentDefinitionList) DeepCopyObject() runtime.Object {
81 if c := in.DeepCopy(); c != nil {
82 return c
83 }
84 return nil
85 }
86
87
88 func (in *NetworkAttachmentDefinitionSpec) DeepCopyInto(out *NetworkAttachmentDefinitionSpec) {
89 *out = *in
90 return
91 }
92
93
94 func (in *NetworkAttachmentDefinitionSpec) DeepCopy() *NetworkAttachmentDefinitionSpec {
95 if in == nil {
96 return nil
97 }
98 out := new(NetworkAttachmentDefinitionSpec)
99 in.DeepCopyInto(out)
100 return out
101 }
102
View as plain text