forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zz_generated.deepcopy.go
39 lines (33 loc) · 1.1 KB
/
zz_generated.deepcopy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// +build !ignore_autogenerated
// Code generated by deepcopy-gen. DO NOT EDIT.
package podnodeconstraints
import (
runtime "k8s.io/apimachinery/pkg/runtime"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *PodNodeConstraintsConfig) DeepCopyInto(out *PodNodeConstraintsConfig) {
*out = *in
out.TypeMeta = in.TypeMeta
if in.NodeSelectorLabelBlacklist != nil {
in, out := &in.NodeSelectorLabelBlacklist, &out.NodeSelectorLabelBlacklist
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodNodeConstraintsConfig.
func (in *PodNodeConstraintsConfig) DeepCopy() *PodNodeConstraintsConfig {
if in == nil {
return nil
}
out := new(PodNodeConstraintsConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *PodNodeConstraintsConfig) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}