mirror of
https://github.com/rancher/types.git
synced 2025-09-16 14:59:16 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
919e235c1e
commit
14f8dd4100
@@ -4889,6 +4889,11 @@ func (in *RancherKubernetesEngineConfig) DeepCopyInto(out *RancherKubernetesEngi
|
||||
in.CloudProvider.DeepCopyInto(&out.CloudProvider)
|
||||
out.BastionHost = in.BastionHost
|
||||
in.Monitoring.DeepCopyInto(&out.Monitoring)
|
||||
if in.RotateCertificates != nil {
|
||||
in, out := &in.RotateCertificates, &out.RotateCertificates
|
||||
*out = new(RotateCertificates)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -5005,6 +5010,38 @@ func (in *RoleTemplateList) DeepCopyObject() runtime.Object {
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RotateCertificateOutput) DeepCopyInto(out *RotateCertificateOutput) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RotateCertificateOutput.
|
||||
func (in *RotateCertificateOutput) DeepCopy() *RotateCertificateOutput {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(RotateCertificateOutput)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RotateCertificates) DeepCopyInto(out *RotateCertificates) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RotateCertificates.
|
||||
func (in *RotateCertificates) DeepCopy() *RotateCertificates {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(RotateCertificates)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RouteOpenstackOpts) DeepCopyInto(out *RouteOpenstackOpts) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user