visualization operator: Add datasource
[demo.git] / vnfs / DAaaS / microservices / visualization-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         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 *Datasource) DeepCopyInto(out *Datasource) {
13         *out = *in
14         if in.JsonData != nil {
15                 in, out := &in.JsonData, &out.JsonData
16                 *out = make(map[string]string, len(*in))
17                 for key, val := range *in {
18                         (*out)[key] = val
19                 }
20         }
21         return
22 }
23
24 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Datasource.
25 func (in *Datasource) DeepCopy() *Datasource {
26         if in == nil {
27                 return nil
28         }
29         out := new(Datasource)
30         in.DeepCopyInto(out)
31         return out
32 }
33
34 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
35 func (in *GrafanaDataSource) DeepCopyInto(out *GrafanaDataSource) {
36         *out = *in
37         out.TypeMeta = in.TypeMeta
38         in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
39         in.Spec.DeepCopyInto(&out.Spec)
40         out.Status = in.Status
41         return
42 }
43
44 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaDataSource.
45 func (in *GrafanaDataSource) DeepCopy() *GrafanaDataSource {
46         if in == nil {
47                 return nil
48         }
49         out := new(GrafanaDataSource)
50         in.DeepCopyInto(out)
51         return out
52 }
53
54 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
55 func (in *GrafanaDataSource) DeepCopyObject() runtime.Object {
56         if c := in.DeepCopy(); c != nil {
57                 return c
58         }
59         return nil
60 }
61
62 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
63 func (in *GrafanaDataSourceList) DeepCopyInto(out *GrafanaDataSourceList) {
64         *out = *in
65         out.TypeMeta = in.TypeMeta
66         out.ListMeta = in.ListMeta
67         if in.Items != nil {
68                 in, out := &in.Items, &out.Items
69                 *out = make([]GrafanaDataSource, len(*in))
70                 for i := range *in {
71                         (*in)[i].DeepCopyInto(&(*out)[i])
72                 }
73         }
74         return
75 }
76
77 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaDataSourceList.
78 func (in *GrafanaDataSourceList) DeepCopy() *GrafanaDataSourceList {
79         if in == nil {
80                 return nil
81         }
82         out := new(GrafanaDataSourceList)
83         in.DeepCopyInto(out)
84         return out
85 }
86
87 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
88 func (in *GrafanaDataSourceList) DeepCopyObject() runtime.Object {
89         if c := in.DeepCopy(); c != nil {
90                 return c
91         }
92         return nil
93 }
94
95 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
96 func (in *GrafanaDataSourceSpec) DeepCopyInto(out *GrafanaDataSourceSpec) {
97         *out = *in
98         if in.Datasources != nil {
99                 in, out := &in.Datasources, &out.Datasources
100                 *out = make([]Datasource, len(*in))
101                 for i := range *in {
102                         (*in)[i].DeepCopyInto(&(*out)[i])
103                 }
104         }
105         if in.Grafana != nil {
106                 in, out := &in.Grafana, &out.Grafana
107                 *out = make(map[string]string, len(*in))
108                 for key, val := range *in {
109                         (*out)[key] = val
110                 }
111         }
112         return
113 }
114
115 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaDataSourceSpec.
116 func (in *GrafanaDataSourceSpec) DeepCopy() *GrafanaDataSourceSpec {
117         if in == nil {
118                 return nil
119         }
120         out := new(GrafanaDataSourceSpec)
121         in.DeepCopyInto(out)
122         return out
123 }
124
125 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
126 func (in *GrafanaDataSourceStatus) DeepCopyInto(out *GrafanaDataSourceStatus) {
127         *out = *in
128         return
129 }
130
131 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaDataSourceStatus.
132 func (in *GrafanaDataSourceStatus) DeepCopy() *GrafanaDataSourceStatus {
133         if in == nil {
134                 return nil
135         }
136         out := new(GrafanaDataSourceStatus)
137         in.DeepCopyInto(out)
138         return out
139 }