Update generated files
Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
parent
a365d1c19d
commit
e9796e79f2
@ -81,9 +81,7 @@ spec:
|
||||
type: string
|
||||
solver:
|
||||
description: Solver contains the domain solving configuration that should
|
||||
be used to solve this challenge resource. Only **one** of 'config'
|
||||
or 'solver' may be specified, and if both are specified then no action
|
||||
will be performed on the Challenge resource.
|
||||
be used to solve this challenge resource.
|
||||
properties:
|
||||
dns01:
|
||||
properties:
|
||||
|
||||
@ -515,7 +515,7 @@ Appears In:
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>solver</code><br /> *<a href="#acmechallengesolver-v1alpha2">ACMEChallengeSolver</a>*</td>
|
||||
<td>Solver contains the domain solving configuration that should be used to solve this challenge resource. Only <strong>one</strong> of 'config' or 'solver' may be specified, and if both are specified then no action will be performed on the Challenge resource.</td>
|
||||
<td>Solver contains the domain solving configuration that should be used to solve this challenge resource.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>token</code><br /> <em>string</em></td>
|
||||
|
||||
@ -29,6 +29,11 @@ import (
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ACMEAuthorization) DeepCopyInto(out *ACMEAuthorization) {
|
||||
*out = *in
|
||||
if in.Wildcard != nil {
|
||||
in, out := &in.Wildcard, &out.Wildcard
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
if in.Challenges != nil {
|
||||
in, out := &in.Challenges, &out.Challenges
|
||||
*out = make([]ACMEChallenge, len(*in))
|
||||
|
||||
@ -325,7 +325,7 @@ func RegisterConversions(s *runtime.Scheme) error {
|
||||
func autoConvert_v1alpha2_ACMEAuthorization_To_acme_ACMEAuthorization(in *v1alpha2.ACMEAuthorization, out *acme.ACMEAuthorization, s conversion.Scope) error {
|
||||
out.URL = in.URL
|
||||
out.Identifier = in.Identifier
|
||||
out.Wildcard = in.Wildcard
|
||||
out.Wildcard = (*bool)(unsafe.Pointer(in.Wildcard))
|
||||
out.Challenges = *(*[]acme.ACMEChallenge)(unsafe.Pointer(&in.Challenges))
|
||||
return nil
|
||||
}
|
||||
@ -338,7 +338,7 @@ func Convert_v1alpha2_ACMEAuthorization_To_acme_ACMEAuthorization(in *v1alpha2.A
|
||||
func autoConvert_acme_ACMEAuthorization_To_v1alpha2_ACMEAuthorization(in *acme.ACMEAuthorization, out *v1alpha2.ACMEAuthorization, s conversion.Scope) error {
|
||||
out.URL = in.URL
|
||||
out.Identifier = in.Identifier
|
||||
out.Wildcard = in.Wildcard
|
||||
out.Wildcard = (*bool)(unsafe.Pointer(in.Wildcard))
|
||||
out.Challenges = *(*[]v1alpha2.ACMEChallenge)(unsafe.Pointer(&in.Challenges))
|
||||
return nil
|
||||
}
|
||||
|
||||
@ -29,6 +29,11 @@ import (
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ACMEAuthorization) DeepCopyInto(out *ACMEAuthorization) {
|
||||
*out = *in
|
||||
if in.Wildcard != nil {
|
||||
in, out := &in.Wildcard, &out.Wildcard
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
if in.Challenges != nil {
|
||||
in, out := &in.Challenges, &out.Challenges
|
||||
*out = make([]ACMEChallenge, len(*in))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user