Refactor Distributed Analytics project structure
[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 *CollectdPlugin) DeepCopyInto(out *CollectdPlugin) {
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 CollectdPlugin.
22 func (in *CollectdPlugin) DeepCopy() *CollectdPlugin {
23         if in == nil {
24                 return nil
25         }
26         out := new(CollectdPlugin)
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 *CollectdPlugin) 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 *CollectdPluginList) DeepCopyInto(out *CollectdPluginList) {
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([]CollectdPlugin, 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 CollectdPluginList.
55 func (in *CollectdPluginList) DeepCopy() *CollectdPluginList {
56         if in == nil {
57                 return nil
58         }
59         out := new(CollectdPluginList)
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 *CollectdPluginList) 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 *CollectdPluginSpec) DeepCopyInto(out *CollectdPluginSpec) {
74         *out = *in
75         return
76 }
77
78 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPluginSpec.
79 func (in *CollectdPluginSpec) DeepCopy() *CollectdPluginSpec {
80         if in == nil {
81                 return nil
82         }
83         out := new(CollectdPluginSpec)
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 *CollectdPluginStatus) DeepCopyInto(out *CollectdPluginStatus) {
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         in.CollectdConf.DeepCopyInto(&out.CollectdConf)
97         return
98 }
99
100 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CollectdPluginStatus.
101 func (in *CollectdPluginStatus) DeepCopy() *CollectdPluginStatus {
102         if in == nil {
103                 return nil
104         }
105         out := new(CollectdPluginStatus)
106         in.DeepCopyInto(out)
107         return out
108 }