...
1
2
3
4
5
6 package v1alpha1
7
8 import (
9 runtime "k8s.io/apimachinery/pkg/runtime"
10 )
11
12
13 func (in *ConsolePlugin) DeepCopyInto(out *ConsolePlugin) {
14 *out = *in
15 out.TypeMeta = in.TypeMeta
16 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
17 in.Spec.DeepCopyInto(&out.Spec)
18 return
19 }
20
21
22 func (in *ConsolePlugin) DeepCopy() *ConsolePlugin {
23 if in == nil {
24 return nil
25 }
26 out := new(ConsolePlugin)
27 in.DeepCopyInto(out)
28 return out
29 }
30
31
32 func (in *ConsolePlugin) DeepCopyObject() runtime.Object {
33 if c := in.DeepCopy(); c != nil {
34 return c
35 }
36 return nil
37 }
38
39
40 func (in *ConsolePluginList) DeepCopyInto(out *ConsolePluginList) {
41 *out = *in
42 out.TypeMeta = in.TypeMeta
43 in.ListMeta.DeepCopyInto(&out.ListMeta)
44 if in.Items != nil {
45 in, out := &in.Items, &out.Items
46 *out = make([]ConsolePlugin, len(*in))
47 for i := range *in {
48 (*in)[i].DeepCopyInto(&(*out)[i])
49 }
50 }
51 return
52 }
53
54
55 func (in *ConsolePluginList) DeepCopy() *ConsolePluginList {
56 if in == nil {
57 return nil
58 }
59 out := new(ConsolePluginList)
60 in.DeepCopyInto(out)
61 return out
62 }
63
64
65 func (in *ConsolePluginList) DeepCopyObject() runtime.Object {
66 if c := in.DeepCopy(); c != nil {
67 return c
68 }
69 return nil
70 }
71
72
73 func (in *ConsolePluginProxy) DeepCopyInto(out *ConsolePluginProxy) {
74 *out = *in
75 out.Service = in.Service
76 return
77 }
78
79
80 func (in *ConsolePluginProxy) DeepCopy() *ConsolePluginProxy {
81 if in == nil {
82 return nil
83 }
84 out := new(ConsolePluginProxy)
85 in.DeepCopyInto(out)
86 return out
87 }
88
89
90 func (in *ConsolePluginProxyServiceConfig) DeepCopyInto(out *ConsolePluginProxyServiceConfig) {
91 *out = *in
92 return
93 }
94
95
96 func (in *ConsolePluginProxyServiceConfig) DeepCopy() *ConsolePluginProxyServiceConfig {
97 if in == nil {
98 return nil
99 }
100 out := new(ConsolePluginProxyServiceConfig)
101 in.DeepCopyInto(out)
102 return out
103 }
104
105
106 func (in *ConsolePluginService) DeepCopyInto(out *ConsolePluginService) {
107 *out = *in
108 return
109 }
110
111
112 func (in *ConsolePluginService) DeepCopy() *ConsolePluginService {
113 if in == nil {
114 return nil
115 }
116 out := new(ConsolePluginService)
117 in.DeepCopyInto(out)
118 return out
119 }
120
121
122 func (in *ConsolePluginSpec) DeepCopyInto(out *ConsolePluginSpec) {
123 *out = *in
124 out.Service = in.Service
125 if in.Proxy != nil {
126 in, out := &in.Proxy, &out.Proxy
127 *out = make([]ConsolePluginProxy, len(*in))
128 copy(*out, *in)
129 }
130 return
131 }
132
133
134 func (in *ConsolePluginSpec) DeepCopy() *ConsolePluginSpec {
135 if in == nil {
136 return nil
137 }
138 out := new(ConsolePluginSpec)
139 in.DeepCopyInto(out)
140 return out
141 }
142
View as plain text