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