1
0
mirror of https://github.com/rancher/types.git synced 2025-09-25 04:12:02 +00:00

go generate

This commit is contained in:
kinarashah
2018-07-17 09:30:23 -07:00
committed by Alena Prokharchyk
parent d63d266090
commit 6188d1efb0
4 changed files with 52 additions and 0 deletions

View File

@@ -3178,6 +3178,22 @@ func (in *NodeCondition) DeepCopy() *NodeCondition {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodeDrainInput) DeepCopyInto(out *NodeDrainInput) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeDrainInput.
func (in *NodeDrainInput) DeepCopy() *NodeDrainInput {
if in == nil {
return nil
}
out := new(NodeDrainInput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *NodeDriver) DeepCopyInto(out *NodeDriver) {
*out = *in
@@ -3454,6 +3470,15 @@ func (in *NodeSpec) DeepCopyInto(out *NodeSpec) {
(*out)[key] = val
}
}
if in.NodeDrainInput != nil {
in, out := &in.NodeDrainInput, &out.NodeDrainInput
if *in == nil {
*out = nil
} else {
*out = new(NodeDrainInput)
**out = **in
}
}
return
}