Regenerate files
This commit is contained in:
parent
c3fc810a5e
commit
e02fbd405a
@ -92,6 +92,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*CertificateACMEStatus).DeepCopyInto(out.(*CertificateACMEStatus))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&CertificateACMEStatus{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*CertificateCondition).DeepCopyInto(out.(*CertificateCondition))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&CertificateCondition{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*CertificateList).DeepCopyInto(out.(*CertificateList))
|
||||
return nil
|
||||
@ -462,6 +466,23 @@ func (in *CertificateACMEStatus) DeepCopy() *CertificateACMEStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *CertificateCondition) DeepCopyInto(out *CertificateCondition) {
|
||||
*out = *in
|
||||
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateCondition.
|
||||
func (in *CertificateCondition) DeepCopy() *CertificateCondition {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(CertificateCondition)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *CertificateList) DeepCopyInto(out *CertificateList) {
|
||||
*out = *in
|
||||
|
||||
Loading…
Reference in New Issue
Block a user