mirror of
https://github.com/rancher/types.git
synced 2025-09-16 06:49:21 +00:00
go generate
This commit is contained in:
@@ -95,6 +95,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*ChangePasswordInput).DeepCopyInto(out.(*ChangePasswordInput))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&ChangePasswordInput{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*CloudProvider).DeepCopyInto(out.(*CloudProvider))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&CloudProvider{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*Cluster).DeepCopyInto(out.(*Cluster))
|
||||
return nil
|
||||
@@ -1311,6 +1315,29 @@ func (in *ChangePasswordInput) DeepCopy() *ChangePasswordInput {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *CloudProvider) DeepCopyInto(out *CloudProvider) {
|
||||
*out = *in
|
||||
if in.CloudConfig != nil {
|
||||
in, out := &in.CloudConfig, &out.CloudConfig
|
||||
*out = make(map[string]string, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudProvider.
|
||||
func (in *CloudProvider) DeepCopy() *CloudProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(CloudProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *Cluster) DeepCopyInto(out *Cluster) {
|
||||
*out = *in
|
||||
@@ -5280,6 +5307,7 @@ func (in *RancherKubernetesEngineConfig) DeepCopyInto(out *RancherKubernetesEngi
|
||||
copy(*out, *in)
|
||||
}
|
||||
in.Ingress.DeepCopyInto(&out.Ingress)
|
||||
in.CloudProvider.DeepCopyInto(&out.CloudProvider)
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user