...
1
2
3
4
19
20
21
22 package v1alpha1
23
24 import (
25 runtime "k8s.io/apimachinery/pkg/runtime"
26 )
27
28
29 func (in *ClusterTrustBundle) DeepCopyInto(out *ClusterTrustBundle) {
30 *out = *in
31 out.TypeMeta = in.TypeMeta
32 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
33 out.Spec = in.Spec
34 return
35 }
36
37
38 func (in *ClusterTrustBundle) DeepCopy() *ClusterTrustBundle {
39 if in == nil {
40 return nil
41 }
42 out := new(ClusterTrustBundle)
43 in.DeepCopyInto(out)
44 return out
45 }
46
47
48 func (in *ClusterTrustBundle) DeepCopyObject() runtime.Object {
49 if c := in.DeepCopy(); c != nil {
50 return c
51 }
52 return nil
53 }
54
55
56 func (in *ClusterTrustBundleList) DeepCopyInto(out *ClusterTrustBundleList) {
57 *out = *in
58 out.TypeMeta = in.TypeMeta
59 in.ListMeta.DeepCopyInto(&out.ListMeta)
60 if in.Items != nil {
61 in, out := &in.Items, &out.Items
62 *out = make([]ClusterTrustBundle, len(*in))
63 for i := range *in {
64 (*in)[i].DeepCopyInto(&(*out)[i])
65 }
66 }
67 return
68 }
69
70
71 func (in *ClusterTrustBundleList) DeepCopy() *ClusterTrustBundleList {
72 if in == nil {
73 return nil
74 }
75 out := new(ClusterTrustBundleList)
76 in.DeepCopyInto(out)
77 return out
78 }
79
80
81 func (in *ClusterTrustBundleList) DeepCopyObject() runtime.Object {
82 if c := in.DeepCopy(); c != nil {
83 return c
84 }
85 return nil
86 }
87
88
89 func (in *ClusterTrustBundleSpec) DeepCopyInto(out *ClusterTrustBundleSpec) {
90 *out = *in
91 return
92 }
93
94
95 func (in *ClusterTrustBundleSpec) DeepCopy() *ClusterTrustBundleSpec {
96 if in == nil {
97 return nil
98 }
99 out := new(ClusterTrustBundleSpec)
100 in.DeepCopyInto(out)
101 return out
102 }
103
View as plain text