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 package v1beta1
26
27 import (
28 v1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/k8s/v1alpha1"
29 runtime "k8s.io/apimachinery/pkg/runtime"
30 )
31
32
33 func (in *KeyAndroidSettings) DeepCopyInto(out *KeyAndroidSettings) {
34 *out = *in
35 if in.AllowAllPackageNames != nil {
36 in, out := &in.AllowAllPackageNames, &out.AllowAllPackageNames
37 *out = new(bool)
38 **out = **in
39 }
40 if in.AllowedPackageNames != nil {
41 in, out := &in.AllowedPackageNames, &out.AllowedPackageNames
42 *out = make([]string, len(*in))
43 copy(*out, *in)
44 }
45 return
46 }
47
48
49 func (in *KeyAndroidSettings) DeepCopy() *KeyAndroidSettings {
50 if in == nil {
51 return nil
52 }
53 out := new(KeyAndroidSettings)
54 in.DeepCopyInto(out)
55 return out
56 }
57
58
59 func (in *KeyIosSettings) DeepCopyInto(out *KeyIosSettings) {
60 *out = *in
61 if in.AllowAllBundleIds != nil {
62 in, out := &in.AllowAllBundleIds, &out.AllowAllBundleIds
63 *out = new(bool)
64 **out = **in
65 }
66 if in.AllowedBundleIds != nil {
67 in, out := &in.AllowedBundleIds, &out.AllowedBundleIds
68 *out = make([]string, len(*in))
69 copy(*out, *in)
70 }
71 return
72 }
73
74
75 func (in *KeyIosSettings) DeepCopy() *KeyIosSettings {
76 if in == nil {
77 return nil
78 }
79 out := new(KeyIosSettings)
80 in.DeepCopyInto(out)
81 return out
82 }
83
84
85 func (in *KeyTestingOptions) DeepCopyInto(out *KeyTestingOptions) {
86 *out = *in
87 if in.TestingChallenge != nil {
88 in, out := &in.TestingChallenge, &out.TestingChallenge
89 *out = new(string)
90 **out = **in
91 }
92 if in.TestingScore != nil {
93 in, out := &in.TestingScore, &out.TestingScore
94 *out = new(float64)
95 **out = **in
96 }
97 return
98 }
99
100
101 func (in *KeyTestingOptions) DeepCopy() *KeyTestingOptions {
102 if in == nil {
103 return nil
104 }
105 out := new(KeyTestingOptions)
106 in.DeepCopyInto(out)
107 return out
108 }
109
110
111 func (in *KeyWebSettings) DeepCopyInto(out *KeyWebSettings) {
112 *out = *in
113 if in.AllowAllDomains != nil {
114 in, out := &in.AllowAllDomains, &out.AllowAllDomains
115 *out = new(bool)
116 **out = **in
117 }
118 if in.AllowAmpTraffic != nil {
119 in, out := &in.AllowAmpTraffic, &out.AllowAmpTraffic
120 *out = new(bool)
121 **out = **in
122 }
123 if in.AllowedDomains != nil {
124 in, out := &in.AllowedDomains, &out.AllowedDomains
125 *out = make([]string, len(*in))
126 copy(*out, *in)
127 }
128 if in.ChallengeSecurityPreference != nil {
129 in, out := &in.ChallengeSecurityPreference, &out.ChallengeSecurityPreference
130 *out = new(string)
131 **out = **in
132 }
133 return
134 }
135
136
137 func (in *KeyWebSettings) DeepCopy() *KeyWebSettings {
138 if in == nil {
139 return nil
140 }
141 out := new(KeyWebSettings)
142 in.DeepCopyInto(out)
143 return out
144 }
145
146
147 func (in *RecaptchaEnterpriseKey) DeepCopyInto(out *RecaptchaEnterpriseKey) {
148 *out = *in
149 out.TypeMeta = in.TypeMeta
150 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
151 in.Spec.DeepCopyInto(&out.Spec)
152 in.Status.DeepCopyInto(&out.Status)
153 return
154 }
155
156
157 func (in *RecaptchaEnterpriseKey) DeepCopy() *RecaptchaEnterpriseKey {
158 if in == nil {
159 return nil
160 }
161 out := new(RecaptchaEnterpriseKey)
162 in.DeepCopyInto(out)
163 return out
164 }
165
166
167 func (in *RecaptchaEnterpriseKey) DeepCopyObject() runtime.Object {
168 if c := in.DeepCopy(); c != nil {
169 return c
170 }
171 return nil
172 }
173
174
175 func (in *RecaptchaEnterpriseKeyList) DeepCopyInto(out *RecaptchaEnterpriseKeyList) {
176 *out = *in
177 out.TypeMeta = in.TypeMeta
178 in.ListMeta.DeepCopyInto(&out.ListMeta)
179 if in.Items != nil {
180 in, out := &in.Items, &out.Items
181 *out = make([]RecaptchaEnterpriseKey, len(*in))
182 for i := range *in {
183 (*in)[i].DeepCopyInto(&(*out)[i])
184 }
185 }
186 return
187 }
188
189
190 func (in *RecaptchaEnterpriseKeyList) DeepCopy() *RecaptchaEnterpriseKeyList {
191 if in == nil {
192 return nil
193 }
194 out := new(RecaptchaEnterpriseKeyList)
195 in.DeepCopyInto(out)
196 return out
197 }
198
199
200 func (in *RecaptchaEnterpriseKeyList) DeepCopyObject() runtime.Object {
201 if c := in.DeepCopy(); c != nil {
202 return c
203 }
204 return nil
205 }
206
207
208 func (in *RecaptchaEnterpriseKeySpec) DeepCopyInto(out *RecaptchaEnterpriseKeySpec) {
209 *out = *in
210 if in.AndroidSettings != nil {
211 in, out := &in.AndroidSettings, &out.AndroidSettings
212 *out = new(KeyAndroidSettings)
213 (*in).DeepCopyInto(*out)
214 }
215 if in.IosSettings != nil {
216 in, out := &in.IosSettings, &out.IosSettings
217 *out = new(KeyIosSettings)
218 (*in).DeepCopyInto(*out)
219 }
220 out.ProjectRef = in.ProjectRef
221 if in.ResourceID != nil {
222 in, out := &in.ResourceID, &out.ResourceID
223 *out = new(string)
224 **out = **in
225 }
226 if in.TestingOptions != nil {
227 in, out := &in.TestingOptions, &out.TestingOptions
228 *out = new(KeyTestingOptions)
229 (*in).DeepCopyInto(*out)
230 }
231 if in.WebSettings != nil {
232 in, out := &in.WebSettings, &out.WebSettings
233 *out = new(KeyWebSettings)
234 (*in).DeepCopyInto(*out)
235 }
236 return
237 }
238
239
240 func (in *RecaptchaEnterpriseKeySpec) DeepCopy() *RecaptchaEnterpriseKeySpec {
241 if in == nil {
242 return nil
243 }
244 out := new(RecaptchaEnterpriseKeySpec)
245 in.DeepCopyInto(out)
246 return out
247 }
248
249
250 func (in *RecaptchaEnterpriseKeyStatus) DeepCopyInto(out *RecaptchaEnterpriseKeyStatus) {
251 *out = *in
252 if in.Conditions != nil {
253 in, out := &in.Conditions, &out.Conditions
254 *out = make([]v1alpha1.Condition, len(*in))
255 copy(*out, *in)
256 }
257 if in.CreateTime != nil {
258 in, out := &in.CreateTime, &out.CreateTime
259 *out = new(string)
260 **out = **in
261 }
262 if in.ObservedGeneration != nil {
263 in, out := &in.ObservedGeneration, &out.ObservedGeneration
264 *out = new(int)
265 **out = **in
266 }
267 return
268 }
269
270
271 func (in *RecaptchaEnterpriseKeyStatus) DeepCopy() *RecaptchaEnterpriseKeyStatus {
272 if in == nil {
273 return nil
274 }
275 out := new(RecaptchaEnterpriseKeyStatus)
276 in.DeepCopyInto(out)
277 return out
278 }
279
View as plain text