...
1
2
3
4
5 package v1alpha1
6
7 import (
8 runtime "k8s.io/apimachinery/pkg/runtime"
9 )
10
11
12 func (in *ApplicationSubject) DeepCopyInto(out *ApplicationSubject) {
13 *out = *in
14 }
15
16
17 func (in *ApplicationSubject) DeepCopy() *ApplicationSubject {
18 if in == nil {
19 return nil
20 }
21 out := new(ApplicationSubject)
22 in.DeepCopyInto(out)
23 return out
24 }
25
26
27 func (in *DeviceBinding) DeepCopyInto(out *DeviceBinding) {
28 *out = *in
29 out.TypeMeta = in.TypeMeta
30 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
31 in.Spec.DeepCopyInto(&out.Spec)
32 in.Status.DeepCopyInto(&out.Status)
33 }
34
35
36 func (in *DeviceBinding) DeepCopy() *DeviceBinding {
37 if in == nil {
38 return nil
39 }
40 out := new(DeviceBinding)
41 in.DeepCopyInto(out)
42 return out
43 }
44
45
46 func (in *DeviceBinding) DeepCopyObject() runtime.Object {
47 if c := in.DeepCopy(); c != nil {
48 return c
49 }
50 return nil
51 }
52
53
54 func (in *DeviceBindingList) DeepCopyInto(out *DeviceBindingList) {
55 *out = *in
56 out.TypeMeta = in.TypeMeta
57 in.ListMeta.DeepCopyInto(&out.ListMeta)
58 if in.Items != nil {
59 in, out := &in.Items, &out.Items
60 *out = make([]DeviceBinding, len(*in))
61 for i := range *in {
62 (*in)[i].DeepCopyInto(&(*out)[i])
63 }
64 }
65 }
66
67
68 func (in *DeviceBindingList) DeepCopy() *DeviceBindingList {
69 if in == nil {
70 return nil
71 }
72 out := new(DeviceBindingList)
73 in.DeepCopyInto(out)
74 return out
75 }
76
77
78 func (in *DeviceBindingList) DeepCopyObject() runtime.Object {
79 if c := in.DeepCopy(); c != nil {
80 return c
81 }
82 return nil
83 }
84
85
86 func (in *DeviceBindingSpec) DeepCopyInto(out *DeviceBindingSpec) {
87 *out = *in
88 out.Device = in.Device
89 if in.Applications != nil {
90 in, out := &in.Applications, &out.Applications
91 *out = make([]ApplicationSubject, len(*in))
92 copy(*out, *in)
93 }
94 }
95
96
97 func (in *DeviceBindingSpec) DeepCopy() *DeviceBindingSpec {
98 if in == nil {
99 return nil
100 }
101 out := new(DeviceBindingSpec)
102 in.DeepCopyInto(out)
103 return out
104 }
105
106
107 func (in *DeviceBindingStatus) DeepCopyInto(out *DeviceBindingStatus) {
108 *out = *in
109 in.Timestamp.DeepCopyInto(&out.Timestamp)
110 }
111
112
113 func (in *DeviceBindingStatus) DeepCopy() *DeviceBindingStatus {
114 if in == nil {
115 return nil
116 }
117 out := new(DeviceBindingStatus)
118 in.DeepCopyInto(out)
119 return out
120 }
121
122
123 func (in *DeviceSubject) DeepCopyInto(out *DeviceSubject) {
124 *out = *in
125 }
126
127
128 func (in *DeviceSubject) DeepCopy() *DeviceSubject {
129 if in == nil {
130 return nil
131 }
132 out := new(DeviceSubject)
133 in.DeepCopyInto(out)
134 return out
135 }
136
137
138 func (in *Discovery) DeepCopyInto(out *Discovery) {
139 *out = *in
140 out.TypeMeta = in.TypeMeta
141 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
142 out.Spec = in.Spec
143 }
144
145
146 func (in *Discovery) DeepCopy() *Discovery {
147 if in == nil {
148 return nil
149 }
150 out := new(Discovery)
151 in.DeepCopyInto(out)
152 return out
153 }
154
155
156 func (in *Discovery) DeepCopyObject() runtime.Object {
157 if c := in.DeepCopy(); c != nil {
158 return c
159 }
160 return nil
161 }
162
163
164 func (in *DiscoveryList) DeepCopyInto(out *DiscoveryList) {
165 *out = *in
166 out.TypeMeta = in.TypeMeta
167 in.ListMeta.DeepCopyInto(&out.ListMeta)
168 if in.Items != nil {
169 in, out := &in.Items, &out.Items
170 *out = make([]Discovery, len(*in))
171 for i := range *in {
172 (*in)[i].DeepCopyInto(&(*out)[i])
173 }
174 }
175 }
176
177
178 func (in *DiscoveryList) DeepCopy() *DiscoveryList {
179 if in == nil {
180 return nil
181 }
182 out := new(DiscoveryList)
183 in.DeepCopyInto(out)
184 return out
185 }
186
187
188 func (in *DiscoveryList) DeepCopyObject() runtime.Object {
189 if c := in.DeepCopy(); c != nil {
190 return c
191 }
192 return nil
193 }
194
195
196 func (in *DiscoverySpec) DeepCopyInto(out *DiscoverySpec) {
197 *out = *in
198 }
199
200
201 func (in *DiscoverySpec) DeepCopy() *DiscoverySpec {
202 if in == nil {
203 return nil
204 }
205 out := new(DiscoverySpec)
206 in.DeepCopyInto(out)
207 return out
208 }
209
210
211 func (in *ExternalApplication) DeepCopyInto(out *ExternalApplication) {
212 *out = *in
213 out.TypeMeta = in.TypeMeta
214 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
215 in.Spec.DeepCopyInto(&out.Spec)
216 }
217
218
219 func (in *ExternalApplication) DeepCopy() *ExternalApplication {
220 if in == nil {
221 return nil
222 }
223 out := new(ExternalApplication)
224 in.DeepCopyInto(out)
225 return out
226 }
227
228
229 func (in *ExternalApplication) DeepCopyObject() runtime.Object {
230 if c := in.DeepCopy(); c != nil {
231 return c
232 }
233 return nil
234 }
235
236
237 func (in *ExternalApplicationList) DeepCopyInto(out *ExternalApplicationList) {
238 *out = *in
239 out.TypeMeta = in.TypeMeta
240 in.ListMeta.DeepCopyInto(&out.ListMeta)
241 if in.Items != nil {
242 in, out := &in.Items, &out.Items
243 *out = make([]ExternalApplication, len(*in))
244 for i := range *in {
245 (*in)[i].DeepCopyInto(&(*out)[i])
246 }
247 }
248 }
249
250
251 func (in *ExternalApplicationList) DeepCopy() *ExternalApplicationList {
252 if in == nil {
253 return nil
254 }
255 out := new(ExternalApplicationList)
256 in.DeepCopyInto(out)
257 return out
258 }
259
260
261 func (in *ExternalApplicationList) DeepCopyObject() runtime.Object {
262 if c := in.DeepCopy(); c != nil {
263 return c
264 }
265 return nil
266 }
267
268
269 func (in *ExternalApplicationSpec) DeepCopyInto(out *ExternalApplicationSpec) {
270 *out = *in
271 in.ClientTemplate.DeepCopyInto(&out.ClientTemplate)
272 }
273
274
275 func (in *ExternalApplicationSpec) DeepCopy() *ExternalApplicationSpec {
276 if in == nil {
277 return nil
278 }
279 out := new(ExternalApplicationSpec)
280 in.DeepCopyInto(out)
281 return out
282 }
283
284
285 func (in *ExternalDevice) DeepCopyInto(out *ExternalDevice) {
286 *out = *in
287 out.TypeMeta = in.TypeMeta
288 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
289 out.Spec = in.Spec
290 }
291
292
293 func (in *ExternalDevice) DeepCopy() *ExternalDevice {
294 if in == nil {
295 return nil
296 }
297 out := new(ExternalDevice)
298 in.DeepCopyInto(out)
299 return out
300 }
301
302
303 func (in *ExternalDevice) DeepCopyObject() runtime.Object {
304 if c := in.DeepCopy(); c != nil {
305 return c
306 }
307 return nil
308 }
309
310
311 func (in *ExternalDeviceList) DeepCopyInto(out *ExternalDeviceList) {
312 *out = *in
313 out.TypeMeta = in.TypeMeta
314 in.ListMeta.DeepCopyInto(&out.ListMeta)
315 if in.Items != nil {
316 in, out := &in.Items, &out.Items
317 *out = make([]ExternalDevice, len(*in))
318 for i := range *in {
319 (*in)[i].DeepCopyInto(&(*out)[i])
320 }
321 }
322 }
323
324
325 func (in *ExternalDeviceList) DeepCopy() *ExternalDeviceList {
326 if in == nil {
327 return nil
328 }
329 out := new(ExternalDeviceList)
330 in.DeepCopyInto(out)
331 return out
332 }
333
334
335 func (in *ExternalDeviceList) DeepCopyObject() runtime.Object {
336 if c := in.DeepCopy(); c != nil {
337 return c
338 }
339 return nil
340 }
341
342
343 func (in *ExternalDeviceSpec) DeepCopyInto(out *ExternalDeviceSpec) {
344 *out = *in
345 }
346
347
348 func (in *ExternalDeviceSpec) DeepCopy() *ExternalDeviceSpec {
349 if in == nil {
350 return nil
351 }
352 out := new(ExternalDeviceSpec)
353 in.DeepCopyInto(out)
354 return out
355 }
356
View as plain text