...
1
2
3
4
5
6 package v1beta1
7
8 import (
9 v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
10 runtime "k8s.io/apimachinery/pkg/runtime"
11 )
12
13
14 func (in *ConnectionConfig) DeepCopyInto(out *ConnectionConfig) {
15 *out = *in
16 out.CA = in.CA
17 out.TLSClientConfig = in.TLSClientConfig
18 return
19 }
20
21
22 func (in *ConnectionConfig) DeepCopy() *ConnectionConfig {
23 if in == nil {
24 return nil
25 }
26 out := new(ConnectionConfig)
27 in.DeepCopyInto(out)
28 return out
29 }
30
31
32 func (in *ConnectionConfigNamespaceScoped) DeepCopyInto(out *ConnectionConfigNamespaceScoped) {
33 *out = *in
34 out.CA = in.CA
35 out.TLSClientConfig = in.TLSClientConfig
36 out.BasicAuthConfig = in.BasicAuthConfig
37 return
38 }
39
40
41 func (in *ConnectionConfigNamespaceScoped) DeepCopy() *ConnectionConfigNamespaceScoped {
42 if in == nil {
43 return nil
44 }
45 out := new(ConnectionConfigNamespaceScoped)
46 in.DeepCopyInto(out)
47 return out
48 }
49
50
51 func (in *HelmChartRepository) DeepCopyInto(out *HelmChartRepository) {
52 *out = *in
53 out.TypeMeta = in.TypeMeta
54 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
55 out.Spec = in.Spec
56 in.Status.DeepCopyInto(&out.Status)
57 return
58 }
59
60
61 func (in *HelmChartRepository) DeepCopy() *HelmChartRepository {
62 if in == nil {
63 return nil
64 }
65 out := new(HelmChartRepository)
66 in.DeepCopyInto(out)
67 return out
68 }
69
70
71 func (in *HelmChartRepository) DeepCopyObject() runtime.Object {
72 if c := in.DeepCopy(); c != nil {
73 return c
74 }
75 return nil
76 }
77
78
79 func (in *HelmChartRepositoryList) DeepCopyInto(out *HelmChartRepositoryList) {
80 *out = *in
81 out.TypeMeta = in.TypeMeta
82 in.ListMeta.DeepCopyInto(&out.ListMeta)
83 if in.Items != nil {
84 in, out := &in.Items, &out.Items
85 *out = make([]HelmChartRepository, len(*in))
86 for i := range *in {
87 (*in)[i].DeepCopyInto(&(*out)[i])
88 }
89 }
90 return
91 }
92
93
94 func (in *HelmChartRepositoryList) DeepCopy() *HelmChartRepositoryList {
95 if in == nil {
96 return nil
97 }
98 out := new(HelmChartRepositoryList)
99 in.DeepCopyInto(out)
100 return out
101 }
102
103
104 func (in *HelmChartRepositoryList) DeepCopyObject() runtime.Object {
105 if c := in.DeepCopy(); c != nil {
106 return c
107 }
108 return nil
109 }
110
111
112 func (in *HelmChartRepositorySpec) DeepCopyInto(out *HelmChartRepositorySpec) {
113 *out = *in
114 out.ConnectionConfig = in.ConnectionConfig
115 return
116 }
117
118
119 func (in *HelmChartRepositorySpec) DeepCopy() *HelmChartRepositorySpec {
120 if in == nil {
121 return nil
122 }
123 out := new(HelmChartRepositorySpec)
124 in.DeepCopyInto(out)
125 return out
126 }
127
128
129 func (in *HelmChartRepositoryStatus) DeepCopyInto(out *HelmChartRepositoryStatus) {
130 *out = *in
131 if in.Conditions != nil {
132 in, out := &in.Conditions, &out.Conditions
133 *out = make([]v1.Condition, len(*in))
134 for i := range *in {
135 (*in)[i].DeepCopyInto(&(*out)[i])
136 }
137 }
138 return
139 }
140
141
142 func (in *HelmChartRepositoryStatus) DeepCopy() *HelmChartRepositoryStatus {
143 if in == nil {
144 return nil
145 }
146 out := new(HelmChartRepositoryStatus)
147 in.DeepCopyInto(out)
148 return out
149 }
150
151
152 func (in *ProjectHelmChartRepository) DeepCopyInto(out *ProjectHelmChartRepository) {
153 *out = *in
154 out.TypeMeta = in.TypeMeta
155 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
156 out.Spec = in.Spec
157 in.Status.DeepCopyInto(&out.Status)
158 return
159 }
160
161
162 func (in *ProjectHelmChartRepository) DeepCopy() *ProjectHelmChartRepository {
163 if in == nil {
164 return nil
165 }
166 out := new(ProjectHelmChartRepository)
167 in.DeepCopyInto(out)
168 return out
169 }
170
171
172 func (in *ProjectHelmChartRepository) DeepCopyObject() runtime.Object {
173 if c := in.DeepCopy(); c != nil {
174 return c
175 }
176 return nil
177 }
178
179
180 func (in *ProjectHelmChartRepositoryList) DeepCopyInto(out *ProjectHelmChartRepositoryList) {
181 *out = *in
182 out.TypeMeta = in.TypeMeta
183 in.ListMeta.DeepCopyInto(&out.ListMeta)
184 if in.Items != nil {
185 in, out := &in.Items, &out.Items
186 *out = make([]ProjectHelmChartRepository, len(*in))
187 for i := range *in {
188 (*in)[i].DeepCopyInto(&(*out)[i])
189 }
190 }
191 return
192 }
193
194
195 func (in *ProjectHelmChartRepositoryList) DeepCopy() *ProjectHelmChartRepositoryList {
196 if in == nil {
197 return nil
198 }
199 out := new(ProjectHelmChartRepositoryList)
200 in.DeepCopyInto(out)
201 return out
202 }
203
204
205 func (in *ProjectHelmChartRepositoryList) DeepCopyObject() runtime.Object {
206 if c := in.DeepCopy(); c != nil {
207 return c
208 }
209 return nil
210 }
211
212
213 func (in *ProjectHelmChartRepositorySpec) DeepCopyInto(out *ProjectHelmChartRepositorySpec) {
214 *out = *in
215 out.ProjectConnectionConfig = in.ProjectConnectionConfig
216 return
217 }
218
219
220 func (in *ProjectHelmChartRepositorySpec) DeepCopy() *ProjectHelmChartRepositorySpec {
221 if in == nil {
222 return nil
223 }
224 out := new(ProjectHelmChartRepositorySpec)
225 in.DeepCopyInto(out)
226 return out
227 }
228
View as plain text