Run hack/update-codegen.sh
This commit is contained in:
parent
b934852775
commit
6f974ee5ad
@ -71,24 +71,7 @@ func (in *ACMECertificateDomainConfig) DeepCopyInto(out *ACMECertificateDomainCo
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
if in.HTTP01 != nil {
|
||||
in, out := &in.HTTP01, &out.HTTP01
|
||||
if *in == nil {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(ACMECertificateHTTP01Config)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
}
|
||||
if in.DNS01 != nil {
|
||||
in, out := &in.DNS01, &out.DNS01
|
||||
if *in == nil {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(ACMECertificateDNS01Config)
|
||||
**out = **in
|
||||
}
|
||||
}
|
||||
in.ACMESolverConfig.DeepCopyInto(&out.ACMESolverConfig)
|
||||
return
|
||||
}
|
||||
|
||||
@ -365,9 +348,33 @@ func (in *ACMEIssuerStatus) DeepCopy() *ACMEIssuerStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ACMEOrderChallenge) DeepCopyInto(out *ACMEOrderChallenge) {
|
||||
*out = *in
|
||||
in.Config.DeepCopyInto(&out.Config)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACMEOrderChallenge.
|
||||
func (in *ACMEOrderChallenge) DeepCopy() *ACMEOrderChallenge {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ACMEOrderChallenge)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ACMEOrderStatus) DeepCopyInto(out *ACMEOrderStatus) {
|
||||
*out = *in
|
||||
if in.Challenges != nil {
|
||||
in, out := &in.Challenges, &out.Challenges
|
||||
*out = make([]ACMEOrderChallenge, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@ -381,6 +388,40 @@ func (in *ACMEOrderStatus) DeepCopy() *ACMEOrderStatus {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ACMESolverConfig) DeepCopyInto(out *ACMESolverConfig) {
|
||||
*out = *in
|
||||
if in.HTTP01 != nil {
|
||||
in, out := &in.HTTP01, &out.HTTP01
|
||||
if *in == nil {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(ACMECertificateHTTP01Config)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
}
|
||||
if in.DNS01 != nil {
|
||||
in, out := &in.DNS01, &out.DNS01
|
||||
if *in == nil {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(ACMECertificateDNS01Config)
|
||||
**out = **in
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ACMESolverConfig.
|
||||
func (in *ACMESolverConfig) DeepCopy() *ACMESolverConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ACMESolverConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *CAIssuer) DeepCopyInto(out *CAIssuer) {
|
||||
*out = *in
|
||||
@ -429,7 +470,7 @@ func (in *Certificate) DeepCopyObject() runtime.Object {
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *CertificateACMEStatus) DeepCopyInto(out *CertificateACMEStatus) {
|
||||
*out = *in
|
||||
out.Order = in.Order
|
||||
in.Order.DeepCopyInto(&out.Order)
|
||||
return
|
||||
}
|
||||
|
||||
@ -541,7 +582,7 @@ func (in *CertificateStatus) DeepCopyInto(out *CertificateStatus) {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(CertificateACMEStatus)
|
||||
**out = **in
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
}
|
||||
return
|
||||
|
||||
Loading…
Reference in New Issue
Block a user