mirror of
https://github.com/rancher/types.git
synced 2025-09-25 04:12:02 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
d63d266090
commit
6188d1efb0
@@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user