forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zz_generated.deepcopy.go
112 lines (99 loc) · 3.44 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// +build !ignore_autogenerated
// Code generated by deepcopy-gen. DO NOT EDIT.
package v1alpha1
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 *OpenShiftWebConsoleConfig) DeepCopyInto(out *OpenShiftWebConsoleConfig) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.Spec.DeepCopyInto(&out.Spec)
in.Status.DeepCopyInto(&out.Status)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftWebConsoleConfig.
func (in *OpenShiftWebConsoleConfig) DeepCopy() *OpenShiftWebConsoleConfig {
if in == nil {
return nil
}
out := new(OpenShiftWebConsoleConfig)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *OpenShiftWebConsoleConfig) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OpenShiftWebConsoleConfigList) DeepCopyInto(out *OpenShiftWebConsoleConfigList) {
*out = *in
out.TypeMeta = in.TypeMeta
out.ListMeta = in.ListMeta
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]OpenShiftWebConsoleConfig, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftWebConsoleConfigList.
func (in *OpenShiftWebConsoleConfigList) DeepCopy() *OpenShiftWebConsoleConfigList {
if in == nil {
return nil
}
out := new(OpenShiftWebConsoleConfigList)
in.DeepCopyInto(out)
return out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (in *OpenShiftWebConsoleConfigList) DeepCopyObject() runtime.Object {
if c := in.DeepCopy(); c != nil {
return c
}
return nil
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OpenShiftWebConsoleConfigSpec) DeepCopyInto(out *OpenShiftWebConsoleConfigSpec) {
*out = *in
out.OperatorSpec = in.OperatorSpec
in.WebConsoleConfig.DeepCopyInto(&out.WebConsoleConfig)
if in.NodeSelector != nil {
in, out := &in.NodeSelector, &out.NodeSelector
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftWebConsoleConfigSpec.
func (in *OpenShiftWebConsoleConfigSpec) DeepCopy() *OpenShiftWebConsoleConfigSpec {
if in == nil {
return nil
}
out := new(OpenShiftWebConsoleConfigSpec)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *OpenShiftWebConsoleConfigStatus) DeepCopyInto(out *OpenShiftWebConsoleConfigStatus) {
*out = *in
in.OperatorStatus.DeepCopyInto(&out.OperatorStatus)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenShiftWebConsoleConfigStatus.
func (in *OpenShiftWebConsoleConfigStatus) DeepCopy() *OpenShiftWebConsoleConfigStatus {
if in == nil {
return nil
}
out := new(OpenShiftWebConsoleConfigStatus)
in.DeepCopyInto(out)
return out
}