5a3c06f72133b4f2f4ea97aa8282c75a80006b4f
[demo.git] / vnfs / DAaaS / microservices / collectd-operator / pkg / apis / onap / v1alpha1 / zz_generated.deepcopy.go
1 // +build !ignore_autogenerated
2
3 // Code generated by deepcopy-gen. DO NOT EDIT.
4
5 package v1alpha1
6
7 import (
8         runtime "k8s.io/apimachinery/pkg/runtime"
9 )
10
11 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
12 func (in *CollectdGlobal) DeepCopyInto(out *CollectdGlobal) {
13         *out = *in
14         out.TypeMeta = in.TypeMeta
15         in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
16         out.Spec = in.Spec
17         in.Status.DeepCopyInto(&out.Status)
18         return
19 }
20
21 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdGlobal.
22 func (in *CollectdGlobal) DeepCopy() *CollectdGlobal {
23         if in == nil {
24                 return nil
25         }
26         out := new(CollectdGlobal)
27         in.DeepCopyInto(out)
28         return out
29 }
30
31 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
32 func (in *CollectdGlobal) DeepCopyObject() runtime.Object {
33         if c := in.DeepCopy(); c != nil {
34                 return c
35         }
36         return nil
37 }
38
39 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
40 func (in *CollectdGlobalList) DeepCopyInto(out *CollectdGlobalList) {
41         *out = *in
42         out.TypeMeta = in.TypeMeta
43         out.ListMeta = in.ListMeta
44         if in.Items != nil {
45                 in, out := &in.Items, &out.Items
46                 *out = make([]CollectdGlobal, len(*in))
47                 for i := range *in {
48                         (*in)[i].DeepCopyInto(&(*out)[i])
49                 }
50         }
51         return
52 }
53
54 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdGlobalList.
55 func (in *CollectdGlobalList) DeepCopy() *CollectdGlobalList {
56         if in == nil {
57                 return nil
58         }
59         out := new(CollectdGlobalList)
60         in.DeepCopyInto(out)
61         return out
62 }
63
64 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
65 func (in *CollectdGlobalList) DeepCopyObject() runtime.Object {
66         if c := in.DeepCopy(); c != nil {
67                 return c
68         }
69         return nil
70 }
71
72 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
73 func (in *CollectdGlobalSpec) DeepCopyInto(out *CollectdGlobalSpec) {
74         *out = *in
75         return
76 }
77
78 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdGlobalSpec.
79 func (in *CollectdGlobalSpec) DeepCopy() *CollectdGlobalSpec {
80         if in == nil {
81                 return nil
82         }
83         out := new(CollectdGlobalSpec)
84         in.DeepCopyInto(out)
85         return out
86 }
87
88 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
89 func (in *CollectdGlobalStatus) DeepCopyInto(out *CollectdGlobalStatus) {
90         *out = *in
91         if in.CollectdAgents != nil {
92                 in, out := &in.CollectdAgents, &out.CollectdAgents
93                 *out = make([]string, len(*in))
94                 copy(*out, *in)
95         }
96         return
97 }
98
99 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdGlobalStatus.
100 func (in *CollectdGlobalStatus) DeepCopy() *CollectdGlobalStatus {
101         if in == nil {
102                 return nil
103         }
104         out := new(CollectdGlobalStatus)
105         in.DeepCopyInto(out)
106         return out
107 }
108
109 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
110 func (in *CollectdPlugin) DeepCopyInto(out *CollectdPlugin) {
111         *out = *in
112         out.TypeMeta = in.TypeMeta
113         in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
114         out.Spec = in.Spec
115         in.Status.DeepCopyInto(&out.Status)
116         return
117 }
118
119 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPlugin.
120 func (in *CollectdPlugin) DeepCopy() *CollectdPlugin {
121         if in == nil {
122                 return nil
123         }
124         out := new(CollectdPlugin)
125         in.DeepCopyInto(out)
126         return out
127 }
128
129 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
130 func (in *CollectdPlugin) DeepCopyObject() runtime.Object {
131         if c := in.DeepCopy(); c != nil {
132                 return c
133         }
134         return nil
135 }
136
137 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
138 func (in *CollectdPluginList) DeepCopyInto(out *CollectdPluginList) {
139         *out = *in
140         out.TypeMeta = in.TypeMeta
141         out.ListMeta = in.ListMeta
142         if in.Items != nil {
143                 in, out := &in.Items, &out.Items
144                 *out = make([]CollectdPlugin, len(*in))
145                 for i := range *in {
146                         (*in)[i].DeepCopyInto(&(*out)[i])
147                 }
148         }
149         return
150 }
151
152 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPluginList.
153 func (in *CollectdPluginList) DeepCopy() *CollectdPluginList {
154         if in == nil {
155                 return nil
156         }
157         out := new(CollectdPluginList)
158         in.DeepCopyInto(out)
159         return out
160 }
161
162 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
163 func (in *CollectdPluginList) DeepCopyObject() runtime.Object {
164         if c := in.DeepCopy(); c != nil {
165                 return c
166         }
167         return nil
168 }
169
170 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
171 func (in *CollectdPluginSpec) DeepCopyInto(out *CollectdPluginSpec) {
172         *out = *in
173         return
174 }
175
176 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPluginSpec.
177 func (in *CollectdPluginSpec) DeepCopy() *CollectdPluginSpec {
178         if in == nil {
179                 return nil
180         }
181         out := new(CollectdPluginSpec)
182         in.DeepCopyInto(out)
183         return out
184 }
185
186 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
187 func (in *CollectdPluginStatus) DeepCopyInto(out *CollectdPluginStatus) {
188         *out = *in
189         if in.CollectdAgents != nil {
190                 in, out := &in.CollectdAgents, &out.CollectdAgents
191                 *out = make([]string, len(*in))
192                 copy(*out, *in)
193         }
194         return
195 }
196
197 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPluginStatus.
198 func (in *CollectdPluginStatus) DeepCopy() *CollectdPluginStatus {
199         if in == nil {
200                 return nil
201         }
202         out := new(CollectdPluginStatus)
203         in.DeepCopyInto(out)
204         return out
205 }