forked from mittwald/go-helm-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzz_generated.deepcopy.go
46 lines (42 loc) · 1.14 KB
/
zz_generated.deepcopy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//go:build !ignore_autogenerated
// +build !ignore_autogenerated
// Code generated by controller-gen. DO NOT EDIT.
package values
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Options) DeepCopyInto(out *Options) {
*out = *in
if in.ValueFiles != nil {
in, out := &in.ValueFiles, &out.ValueFiles
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.StringValues != nil {
in, out := &in.StringValues, &out.StringValues
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Values != nil {
in, out := &in.Values, &out.Values
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.FileValues != nil {
in, out := &in.FileValues, &out.FileValues
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.JSONValues != nil {
in, out := &in.JSONValues, &out.JSONValues
*out = make([]string, len(*in))
copy(*out, *in)
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Options.
func (in *Options) DeepCopy() *Options {
if in == nil {
return nil
}
out := new(Options)
in.DeepCopyInto(out)
return out
}