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 v1alpha1
26
27 import (
28 k8sv1alpha1 "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 *CryptokeyversionAttestationStatus) DeepCopyInto(out *CryptokeyversionAttestationStatus) {
34 *out = *in
35 if in.CertChains != nil {
36 in, out := &in.CertChains, &out.CertChains
37 *out = new(CryptokeyversionCertChainsStatus)
38 (*in).DeepCopyInto(*out)
39 }
40 if in.Content != nil {
41 in, out := &in.Content, &out.Content
42 *out = new(string)
43 **out = **in
44 }
45 if in.ExternalProtectionLevelOptions != nil {
46 in, out := &in.ExternalProtectionLevelOptions, &out.ExternalProtectionLevelOptions
47 *out = new(CryptokeyversionExternalProtectionLevelOptionsStatus)
48 (*in).DeepCopyInto(*out)
49 }
50 if in.Format != nil {
51 in, out := &in.Format, &out.Format
52 *out = new(string)
53 **out = **in
54 }
55 return
56 }
57
58
59 func (in *CryptokeyversionAttestationStatus) DeepCopy() *CryptokeyversionAttestationStatus {
60 if in == nil {
61 return nil
62 }
63 out := new(CryptokeyversionAttestationStatus)
64 in.DeepCopyInto(out)
65 return out
66 }
67
68
69 func (in *CryptokeyversionCertChainsStatus) DeepCopyInto(out *CryptokeyversionCertChainsStatus) {
70 *out = *in
71 if in.CaviumCerts != nil {
72 in, out := &in.CaviumCerts, &out.CaviumCerts
73 *out = new(string)
74 **out = **in
75 }
76 if in.GoogleCardCerts != nil {
77 in, out := &in.GoogleCardCerts, &out.GoogleCardCerts
78 *out = new(string)
79 **out = **in
80 }
81 if in.GooglePartitionCerts != nil {
82 in, out := &in.GooglePartitionCerts, &out.GooglePartitionCerts
83 *out = new(string)
84 **out = **in
85 }
86 return
87 }
88
89
90 func (in *CryptokeyversionCertChainsStatus) DeepCopy() *CryptokeyversionCertChainsStatus {
91 if in == nil {
92 return nil
93 }
94 out := new(CryptokeyversionCertChainsStatus)
95 in.DeepCopyInto(out)
96 return out
97 }
98
99
100 func (in *CryptokeyversionExternalProtectionLevelOptionsStatus) DeepCopyInto(out *CryptokeyversionExternalProtectionLevelOptionsStatus) {
101 *out = *in
102 if in.EkmConnectionKeyPath != nil {
103 in, out := &in.EkmConnectionKeyPath, &out.EkmConnectionKeyPath
104 *out = new(string)
105 **out = **in
106 }
107 if in.ExternalKeyUri != nil {
108 in, out := &in.ExternalKeyUri, &out.ExternalKeyUri
109 *out = new(string)
110 **out = **in
111 }
112 return
113 }
114
115
116 func (in *CryptokeyversionExternalProtectionLevelOptionsStatus) DeepCopy() *CryptokeyversionExternalProtectionLevelOptionsStatus {
117 if in == nil {
118 return nil
119 }
120 out := new(CryptokeyversionExternalProtectionLevelOptionsStatus)
121 in.DeepCopyInto(out)
122 return out
123 }
124
125
126 func (in *KMSCryptoKeyVersion) DeepCopyInto(out *KMSCryptoKeyVersion) {
127 *out = *in
128 out.TypeMeta = in.TypeMeta
129 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
130 in.Spec.DeepCopyInto(&out.Spec)
131 in.Status.DeepCopyInto(&out.Status)
132 return
133 }
134
135
136 func (in *KMSCryptoKeyVersion) DeepCopy() *KMSCryptoKeyVersion {
137 if in == nil {
138 return nil
139 }
140 out := new(KMSCryptoKeyVersion)
141 in.DeepCopyInto(out)
142 return out
143 }
144
145
146 func (in *KMSCryptoKeyVersion) DeepCopyObject() runtime.Object {
147 if c := in.DeepCopy(); c != nil {
148 return c
149 }
150 return nil
151 }
152
153
154 func (in *KMSCryptoKeyVersionList) DeepCopyInto(out *KMSCryptoKeyVersionList) {
155 *out = *in
156 out.TypeMeta = in.TypeMeta
157 in.ListMeta.DeepCopyInto(&out.ListMeta)
158 if in.Items != nil {
159 in, out := &in.Items, &out.Items
160 *out = make([]KMSCryptoKeyVersion, len(*in))
161 for i := range *in {
162 (*in)[i].DeepCopyInto(&(*out)[i])
163 }
164 }
165 return
166 }
167
168
169 func (in *KMSCryptoKeyVersionList) DeepCopy() *KMSCryptoKeyVersionList {
170 if in == nil {
171 return nil
172 }
173 out := new(KMSCryptoKeyVersionList)
174 in.DeepCopyInto(out)
175 return out
176 }
177
178
179 func (in *KMSCryptoKeyVersionList) DeepCopyObject() runtime.Object {
180 if c := in.DeepCopy(); c != nil {
181 return c
182 }
183 return nil
184 }
185
186
187 func (in *KMSCryptoKeyVersionSpec) DeepCopyInto(out *KMSCryptoKeyVersionSpec) {
188 *out = *in
189 if in.ResourceID != nil {
190 in, out := &in.ResourceID, &out.ResourceID
191 *out = new(string)
192 **out = **in
193 }
194 if in.State != nil {
195 in, out := &in.State, &out.State
196 *out = new(string)
197 **out = **in
198 }
199 return
200 }
201
202
203 func (in *KMSCryptoKeyVersionSpec) DeepCopy() *KMSCryptoKeyVersionSpec {
204 if in == nil {
205 return nil
206 }
207 out := new(KMSCryptoKeyVersionSpec)
208 in.DeepCopyInto(out)
209 return out
210 }
211
212
213 func (in *KMSCryptoKeyVersionStatus) DeepCopyInto(out *KMSCryptoKeyVersionStatus) {
214 *out = *in
215 if in.Conditions != nil {
216 in, out := &in.Conditions, &out.Conditions
217 *out = make([]k8sv1alpha1.Condition, len(*in))
218 copy(*out, *in)
219 }
220 if in.Algorithm != nil {
221 in, out := &in.Algorithm, &out.Algorithm
222 *out = new(string)
223 **out = **in
224 }
225 if in.Attestation != nil {
226 in, out := &in.Attestation, &out.Attestation
227 *out = make([]CryptokeyversionAttestationStatus, len(*in))
228 for i := range *in {
229 (*in)[i].DeepCopyInto(&(*out)[i])
230 }
231 }
232 if in.GenerateTime != nil {
233 in, out := &in.GenerateTime, &out.GenerateTime
234 *out = new(string)
235 **out = **in
236 }
237 if in.Name != nil {
238 in, out := &in.Name, &out.Name
239 *out = new(string)
240 **out = **in
241 }
242 if in.ObservedGeneration != nil {
243 in, out := &in.ObservedGeneration, &out.ObservedGeneration
244 *out = new(int)
245 **out = **in
246 }
247 if in.ProtectionLevel != nil {
248 in, out := &in.ProtectionLevel, &out.ProtectionLevel
249 *out = new(string)
250 **out = **in
251 }
252 return
253 }
254
255
256 func (in *KMSCryptoKeyVersionStatus) DeepCopy() *KMSCryptoKeyVersionStatus {
257 if in == nil {
258 return nil
259 }
260 out := new(KMSCryptoKeyVersionStatus)
261 in.DeepCopyInto(out)
262 return out
263 }
264
265
266 func (in *KMSKeyRingImportJob) DeepCopyInto(out *KMSKeyRingImportJob) {
267 *out = *in
268 out.TypeMeta = in.TypeMeta
269 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
270 in.Spec.DeepCopyInto(&out.Spec)
271 in.Status.DeepCopyInto(&out.Status)
272 return
273 }
274
275
276 func (in *KMSKeyRingImportJob) DeepCopy() *KMSKeyRingImportJob {
277 if in == nil {
278 return nil
279 }
280 out := new(KMSKeyRingImportJob)
281 in.DeepCopyInto(out)
282 return out
283 }
284
285
286 func (in *KMSKeyRingImportJob) DeepCopyObject() runtime.Object {
287 if c := in.DeepCopy(); c != nil {
288 return c
289 }
290 return nil
291 }
292
293
294 func (in *KMSKeyRingImportJobList) DeepCopyInto(out *KMSKeyRingImportJobList) {
295 *out = *in
296 out.TypeMeta = in.TypeMeta
297 in.ListMeta.DeepCopyInto(&out.ListMeta)
298 if in.Items != nil {
299 in, out := &in.Items, &out.Items
300 *out = make([]KMSKeyRingImportJob, len(*in))
301 for i := range *in {
302 (*in)[i].DeepCopyInto(&(*out)[i])
303 }
304 }
305 return
306 }
307
308
309 func (in *KMSKeyRingImportJobList) DeepCopy() *KMSKeyRingImportJobList {
310 if in == nil {
311 return nil
312 }
313 out := new(KMSKeyRingImportJobList)
314 in.DeepCopyInto(out)
315 return out
316 }
317
318
319 func (in *KMSKeyRingImportJobList) DeepCopyObject() runtime.Object {
320 if c := in.DeepCopy(); c != nil {
321 return c
322 }
323 return nil
324 }
325
326
327 func (in *KMSKeyRingImportJobSpec) DeepCopyInto(out *KMSKeyRingImportJobSpec) {
328 *out = *in
329 if in.ResourceID != nil {
330 in, out := &in.ResourceID, &out.ResourceID
331 *out = new(string)
332 **out = **in
333 }
334 return
335 }
336
337
338 func (in *KMSKeyRingImportJobSpec) DeepCopy() *KMSKeyRingImportJobSpec {
339 if in == nil {
340 return nil
341 }
342 out := new(KMSKeyRingImportJobSpec)
343 in.DeepCopyInto(out)
344 return out
345 }
346
347
348 func (in *KMSKeyRingImportJobStatus) DeepCopyInto(out *KMSKeyRingImportJobStatus) {
349 *out = *in
350 if in.Conditions != nil {
351 in, out := &in.Conditions, &out.Conditions
352 *out = make([]k8sv1alpha1.Condition, len(*in))
353 copy(*out, *in)
354 }
355 if in.Attestation != nil {
356 in, out := &in.Attestation, &out.Attestation
357 *out = make([]KeyringimportjobAttestationStatus, len(*in))
358 for i := range *in {
359 (*in)[i].DeepCopyInto(&(*out)[i])
360 }
361 }
362 if in.ExpireTime != nil {
363 in, out := &in.ExpireTime, &out.ExpireTime
364 *out = new(string)
365 **out = **in
366 }
367 if in.Name != nil {
368 in, out := &in.Name, &out.Name
369 *out = new(string)
370 **out = **in
371 }
372 if in.ObservedGeneration != nil {
373 in, out := &in.ObservedGeneration, &out.ObservedGeneration
374 *out = new(int)
375 **out = **in
376 }
377 if in.PublicKey != nil {
378 in, out := &in.PublicKey, &out.PublicKey
379 *out = make([]KeyringimportjobPublicKeyStatus, len(*in))
380 for i := range *in {
381 (*in)[i].DeepCopyInto(&(*out)[i])
382 }
383 }
384 if in.State != nil {
385 in, out := &in.State, &out.State
386 *out = new(string)
387 **out = **in
388 }
389 return
390 }
391
392
393 func (in *KMSKeyRingImportJobStatus) DeepCopy() *KMSKeyRingImportJobStatus {
394 if in == nil {
395 return nil
396 }
397 out := new(KMSKeyRingImportJobStatus)
398 in.DeepCopyInto(out)
399 return out
400 }
401
402
403 func (in *KMSSecretCiphertext) DeepCopyInto(out *KMSSecretCiphertext) {
404 *out = *in
405 out.TypeMeta = in.TypeMeta
406 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
407 in.Spec.DeepCopyInto(&out.Spec)
408 in.Status.DeepCopyInto(&out.Status)
409 return
410 }
411
412
413 func (in *KMSSecretCiphertext) DeepCopy() *KMSSecretCiphertext {
414 if in == nil {
415 return nil
416 }
417 out := new(KMSSecretCiphertext)
418 in.DeepCopyInto(out)
419 return out
420 }
421
422
423 func (in *KMSSecretCiphertext) DeepCopyObject() runtime.Object {
424 if c := in.DeepCopy(); c != nil {
425 return c
426 }
427 return nil
428 }
429
430
431 func (in *KMSSecretCiphertextList) DeepCopyInto(out *KMSSecretCiphertextList) {
432 *out = *in
433 out.TypeMeta = in.TypeMeta
434 in.ListMeta.DeepCopyInto(&out.ListMeta)
435 if in.Items != nil {
436 in, out := &in.Items, &out.Items
437 *out = make([]KMSSecretCiphertext, len(*in))
438 for i := range *in {
439 (*in)[i].DeepCopyInto(&(*out)[i])
440 }
441 }
442 return
443 }
444
445
446 func (in *KMSSecretCiphertextList) DeepCopy() *KMSSecretCiphertextList {
447 if in == nil {
448 return nil
449 }
450 out := new(KMSSecretCiphertextList)
451 in.DeepCopyInto(out)
452 return out
453 }
454
455
456 func (in *KMSSecretCiphertextList) DeepCopyObject() runtime.Object {
457 if c := in.DeepCopy(); c != nil {
458 return c
459 }
460 return nil
461 }
462
463
464 func (in *KMSSecretCiphertextSpec) DeepCopyInto(out *KMSSecretCiphertextSpec) {
465 *out = *in
466 if in.AdditionalAuthenticatedData != nil {
467 in, out := &in.AdditionalAuthenticatedData, &out.AdditionalAuthenticatedData
468 *out = new(SecretciphertextAdditionalAuthenticatedData)
469 (*in).DeepCopyInto(*out)
470 }
471 in.Plaintext.DeepCopyInto(&out.Plaintext)
472 if in.ResourceID != nil {
473 in, out := &in.ResourceID, &out.ResourceID
474 *out = new(string)
475 **out = **in
476 }
477 return
478 }
479
480
481 func (in *KMSSecretCiphertextSpec) DeepCopy() *KMSSecretCiphertextSpec {
482 if in == nil {
483 return nil
484 }
485 out := new(KMSSecretCiphertextSpec)
486 in.DeepCopyInto(out)
487 return out
488 }
489
490
491 func (in *KMSSecretCiphertextStatus) DeepCopyInto(out *KMSSecretCiphertextStatus) {
492 *out = *in
493 if in.Conditions != nil {
494 in, out := &in.Conditions, &out.Conditions
495 *out = make([]k8sv1alpha1.Condition, len(*in))
496 copy(*out, *in)
497 }
498 if in.Ciphertext != nil {
499 in, out := &in.Ciphertext, &out.Ciphertext
500 *out = new(string)
501 **out = **in
502 }
503 if in.ObservedGeneration != nil {
504 in, out := &in.ObservedGeneration, &out.ObservedGeneration
505 *out = new(int)
506 **out = **in
507 }
508 return
509 }
510
511
512 func (in *KMSSecretCiphertextStatus) DeepCopy() *KMSSecretCiphertextStatus {
513 if in == nil {
514 return nil
515 }
516 out := new(KMSSecretCiphertextStatus)
517 in.DeepCopyInto(out)
518 return out
519 }
520
521
522 func (in *KeyringimportjobAttestationStatus) DeepCopyInto(out *KeyringimportjobAttestationStatus) {
523 *out = *in
524 if in.Content != nil {
525 in, out := &in.Content, &out.Content
526 *out = new(string)
527 **out = **in
528 }
529 if in.Format != nil {
530 in, out := &in.Format, &out.Format
531 *out = new(string)
532 **out = **in
533 }
534 return
535 }
536
537
538 func (in *KeyringimportjobAttestationStatus) DeepCopy() *KeyringimportjobAttestationStatus {
539 if in == nil {
540 return nil
541 }
542 out := new(KeyringimportjobAttestationStatus)
543 in.DeepCopyInto(out)
544 return out
545 }
546
547
548 func (in *KeyringimportjobPublicKeyStatus) DeepCopyInto(out *KeyringimportjobPublicKeyStatus) {
549 *out = *in
550 if in.Pem != nil {
551 in, out := &in.Pem, &out.Pem
552 *out = new(string)
553 **out = **in
554 }
555 return
556 }
557
558
559 func (in *KeyringimportjobPublicKeyStatus) DeepCopy() *KeyringimportjobPublicKeyStatus {
560 if in == nil {
561 return nil
562 }
563 out := new(KeyringimportjobPublicKeyStatus)
564 in.DeepCopyInto(out)
565 return out
566 }
567
568
569 func (in *SecretciphertextAdditionalAuthenticatedData) DeepCopyInto(out *SecretciphertextAdditionalAuthenticatedData) {
570 *out = *in
571 if in.Value != nil {
572 in, out := &in.Value, &out.Value
573 *out = new(string)
574 **out = **in
575 }
576 if in.ValueFrom != nil {
577 in, out := &in.ValueFrom, &out.ValueFrom
578 *out = new(SecretciphertextValueFrom)
579 (*in).DeepCopyInto(*out)
580 }
581 return
582 }
583
584
585 func (in *SecretciphertextAdditionalAuthenticatedData) DeepCopy() *SecretciphertextAdditionalAuthenticatedData {
586 if in == nil {
587 return nil
588 }
589 out := new(SecretciphertextAdditionalAuthenticatedData)
590 in.DeepCopyInto(out)
591 return out
592 }
593
594
595 func (in *SecretciphertextPlaintext) DeepCopyInto(out *SecretciphertextPlaintext) {
596 *out = *in
597 if in.Value != nil {
598 in, out := &in.Value, &out.Value
599 *out = new(string)
600 **out = **in
601 }
602 if in.ValueFrom != nil {
603 in, out := &in.ValueFrom, &out.ValueFrom
604 *out = new(SecretciphertextValueFrom)
605 (*in).DeepCopyInto(*out)
606 }
607 return
608 }
609
610
611 func (in *SecretciphertextPlaintext) DeepCopy() *SecretciphertextPlaintext {
612 if in == nil {
613 return nil
614 }
615 out := new(SecretciphertextPlaintext)
616 in.DeepCopyInto(out)
617 return out
618 }
619
620
621 func (in *SecretciphertextValueFrom) DeepCopyInto(out *SecretciphertextValueFrom) {
622 *out = *in
623 if in.SecretKeyRef != nil {
624 in, out := &in.SecretKeyRef, &out.SecretKeyRef
625 *out = new(k8sv1alpha1.ResourceRef)
626 **out = **in
627 }
628 return
629 }
630
631
632 func (in *SecretciphertextValueFrom) DeepCopy() *SecretciphertextValueFrom {
633 if in == nil {
634 return nil
635 }
636 out := new(SecretciphertextValueFrom)
637 in.DeepCopyInto(out)
638 return out
639 }
640
View as plain text