mirror of
https://github.com/rancher/types.git
synced 2025-09-01 13:18:20 +00:00
Update generated code
This commit is contained in:
@@ -187,6 +187,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
||||
in.(*GroupMemberList).DeepCopyInto(out.(*GroupMemberList))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&GroupMemberList{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*K8sServerConfig).DeepCopyInto(out.(*K8sServerConfig))
|
||||
return nil
|
||||
}, InType: reflect.TypeOf(&K8sServerConfig{})},
|
||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||
in.(*KubeAPIService).DeepCopyInto(out.(*KubeAPIService))
|
||||
return nil
|
||||
@@ -984,6 +988,15 @@ func (in *ClusterSpec) DeepCopyInto(out *ClusterSpec) {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
if in.EmbeddedConfig != nil {
|
||||
in, out := &in.EmbeddedConfig, &out.EmbeddedConfig
|
||||
if *in == nil {
|
||||
*out = nil
|
||||
} else {
|
||||
*out = new(K8sServerConfig)
|
||||
(*in).DeepCopyInto(*out)
|
||||
}
|
||||
}
|
||||
if in.GoogleKubernetesEngineConfig != nil {
|
||||
in, out := &in.GoogleKubernetesEngineConfig, &out.GoogleKubernetesEngineConfig
|
||||
if *in == nil {
|
||||
@@ -1598,6 +1611,27 @@ func (in *GroupMemberList) DeepCopyObject() runtime.Object {
|
||||
}
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *K8sServerConfig) DeepCopyInto(out *K8sServerConfig) {
|
||||
*out = *in
|
||||
if in.AdmissionControllers != nil {
|
||||
in, out := &in.AdmissionControllers, &out.AdmissionControllers
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new K8sServerConfig.
|
||||
func (in *K8sServerConfig) DeepCopy() *K8sServerConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(K8sServerConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *KubeAPIService) DeepCopyInto(out *KubeAPIService) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user