1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 14:59:16 +00:00

go generate

This commit is contained in:
kinarashah
2020-02-26 13:00:15 -08:00
committed by Craig Jellick
parent b0a442020d
commit 37f04dbaa0
11 changed files with 185 additions and 35 deletions

View File

@@ -6061,6 +6061,27 @@ func (in *NodeList) DeepCopyObject() runtime.Object {
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodePlan) DeepCopyInto(out *NodePlan) {
*out = *in
if in.Plan != nil {
in, out := &in.Plan, &out.Plan
*out = new(RKEConfigNodePlan)
(*in).DeepCopyInto(*out)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodePlan.
func (in *NodePlan) DeepCopy() *NodePlan {
if in == nil {
return nil
}
out := new(NodePlan)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodePool) DeepCopyInto(out *NodePool) {
*out = *in
@@ -6303,6 +6324,11 @@ func (in *NodeStatus) DeepCopyInto(out *NodeStatus) {
*out = new(DockerInfo)
(*in).DeepCopyInto(*out)
}
if in.NodePlan != nil {
in, out := &in.NodePlan, &out.NodePlan
*out = new(NodePlan)
(*in).DeepCopyInto(*out)
}
return
}