Update generated files

Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
James Munnelly 2019-10-15 12:40:17 +01:00
parent a365d1c19d
commit e9796e79f2
5 changed files with 14 additions and 6 deletions

View File

@ -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:

View File

@ -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 &#39;config&#39; or &#39;solver&#39; 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>

View File

@ -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))

View File

@ -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
}

View File

@ -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))