...
1
2
3
18
19
20
21 package api
22
23 import (
24 runtime "k8s.io/apimachinery/pkg/runtime"
25 )
26
27
28 func (in *TestClusterIssuer) DeepCopyInto(out *TestClusterIssuer) {
29 *out = *in
30 out.TypeMeta = in.TypeMeta
31 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
32 out.Spec = in.Spec
33 in.Status.DeepCopyInto(&out.Status)
34 }
35
36
37 func (in *TestClusterIssuer) DeepCopy() *TestClusterIssuer {
38 if in == nil {
39 return nil
40 }
41 out := new(TestClusterIssuer)
42 in.DeepCopyInto(out)
43 return out
44 }
45
46
47 func (in *TestClusterIssuer) DeepCopyObject() runtime.Object {
48 if c := in.DeepCopy(); c != nil {
49 return c
50 }
51 return nil
52 }
53
54
55 func (in *TestClusterIssuerList) DeepCopyInto(out *TestClusterIssuerList) {
56 *out = *in
57 out.TypeMeta = in.TypeMeta
58 in.ListMeta.DeepCopyInto(&out.ListMeta)
59 if in.Items != nil {
60 in, out := &in.Items, &out.Items
61 *out = make([]TestClusterIssuer, len(*in))
62 for i := range *in {
63 (*in)[i].DeepCopyInto(&(*out)[i])
64 }
65 }
66 }
67
68
69 func (in *TestClusterIssuerList) DeepCopy() *TestClusterIssuerList {
70 if in == nil {
71 return nil
72 }
73 out := new(TestClusterIssuerList)
74 in.DeepCopyInto(out)
75 return out
76 }
77
78
79 func (in *TestClusterIssuerList) DeepCopyObject() runtime.Object {
80 if c := in.DeepCopy(); c != nil {
81 return c
82 }
83 return nil
84 }
85
86
87 func (in *TestIssuer) DeepCopyInto(out *TestIssuer) {
88 *out = *in
89 out.TypeMeta = in.TypeMeta
90 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
91 out.Spec = in.Spec
92 in.Status.DeepCopyInto(&out.Status)
93 }
94
95
96 func (in *TestIssuer) DeepCopy() *TestIssuer {
97 if in == nil {
98 return nil
99 }
100 out := new(TestIssuer)
101 in.DeepCopyInto(out)
102 return out
103 }
104
105
106 func (in *TestIssuer) DeepCopyObject() runtime.Object {
107 if c := in.DeepCopy(); c != nil {
108 return c
109 }
110 return nil
111 }
112
113
114 func (in *TestIssuerList) DeepCopyInto(out *TestIssuerList) {
115 *out = *in
116 out.TypeMeta = in.TypeMeta
117 in.ListMeta.DeepCopyInto(&out.ListMeta)
118 if in.Items != nil {
119 in, out := &in.Items, &out.Items
120 *out = make([]TestIssuer, len(*in))
121 for i := range *in {
122 (*in)[i].DeepCopyInto(&(*out)[i])
123 }
124 }
125 }
126
127
128 func (in *TestIssuerList) DeepCopy() *TestIssuerList {
129 if in == nil {
130 return nil
131 }
132 out := new(TestIssuerList)
133 in.DeepCopyInto(out)
134 return out
135 }
136
137
138 func (in *TestIssuerList) DeepCopyObject() runtime.Object {
139 if c := in.DeepCopy(); c != nil {
140 return c
141 }
142 return nil
143 }
144
145
146 func (in *TestSpec) DeepCopyInto(out *TestSpec) {
147 *out = *in
148 }
149
150
151 func (in *TestSpec) DeepCopy() *TestSpec {
152 if in == nil {
153 return nil
154 }
155 out := new(TestSpec)
156 in.DeepCopyInto(out)
157 return out
158 }
159
View as plain text