141 lines
3.9 KiB
Go
141 lines
3.9 KiB
Go
//go:build !ignore_autogenerated
|
|
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright The cert-manager Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Duration) DeepCopyInto(out *Duration) {
|
|
*out = *in
|
|
out.Duration = in.Duration
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Duration.
|
|
func (in *Duration) DeepCopy() *Duration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Duration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DynamicServingConfig) DeepCopyInto(out *DynamicServingConfig) {
|
|
*out = *in
|
|
if in.DNSNames != nil {
|
|
in, out := &in.DNSNames, &out.DNSNames
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.LeafDuration != nil {
|
|
in, out := &in.LeafDuration, &out.LeafDuration
|
|
*out = new(Duration)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DynamicServingConfig.
|
|
func (in *DynamicServingConfig) DeepCopy() *DynamicServingConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DynamicServingConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *FilesystemServingConfig) DeepCopyInto(out *FilesystemServingConfig) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FilesystemServingConfig.
|
|
func (in *FilesystemServingConfig) DeepCopy() *FilesystemServingConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(FilesystemServingConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *LeaderElectionConfig) DeepCopyInto(out *LeaderElectionConfig) {
|
|
*out = *in
|
|
if in.Enabled != nil {
|
|
in, out := &in.Enabled, &out.Enabled
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.LeaseDuration != nil {
|
|
in, out := &in.LeaseDuration, &out.LeaseDuration
|
|
*out = new(Duration)
|
|
**out = **in
|
|
}
|
|
if in.RenewDeadline != nil {
|
|
in, out := &in.RenewDeadline, &out.RenewDeadline
|
|
*out = new(Duration)
|
|
**out = **in
|
|
}
|
|
if in.RetryPeriod != nil {
|
|
in, out := &in.RetryPeriod, &out.RetryPeriod
|
|
*out = new(Duration)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaderElectionConfig.
|
|
func (in *LeaderElectionConfig) DeepCopy() *LeaderElectionConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(LeaderElectionConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TLSConfig) DeepCopyInto(out *TLSConfig) {
|
|
*out = *in
|
|
if in.CipherSuites != nil {
|
|
in, out := &in.CipherSuites, &out.CipherSuites
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.Filesystem = in.Filesystem
|
|
in.Dynamic.DeepCopyInto(&out.Dynamic)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSConfig.
|
|
func (in *TLSConfig) DeepCopy() *TLSConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TLSConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|