...
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 package v1beta1
26
27 import (
28 v1alpha1 "github.com/GoogleCloudPlatform/k8s-config-connector/pkg/clients/generated/apis/k8s/v1alpha1"
29 runtime "k8s.io/apimachinery/pkg/runtime"
30 )
31
32
33 func (in *IAPBrand) DeepCopyInto(out *IAPBrand) {
34 *out = *in
35 out.TypeMeta = in.TypeMeta
36 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
37 in.Spec.DeepCopyInto(&out.Spec)
38 in.Status.DeepCopyInto(&out.Status)
39 return
40 }
41
42
43 func (in *IAPBrand) DeepCopy() *IAPBrand {
44 if in == nil {
45 return nil
46 }
47 out := new(IAPBrand)
48 in.DeepCopyInto(out)
49 return out
50 }
51
52
53 func (in *IAPBrand) DeepCopyObject() runtime.Object {
54 if c := in.DeepCopy(); c != nil {
55 return c
56 }
57 return nil
58 }
59
60
61 func (in *IAPBrandList) DeepCopyInto(out *IAPBrandList) {
62 *out = *in
63 out.TypeMeta = in.TypeMeta
64 in.ListMeta.DeepCopyInto(&out.ListMeta)
65 if in.Items != nil {
66 in, out := &in.Items, &out.Items
67 *out = make([]IAPBrand, len(*in))
68 for i := range *in {
69 (*in)[i].DeepCopyInto(&(*out)[i])
70 }
71 }
72 return
73 }
74
75
76 func (in *IAPBrandList) DeepCopy() *IAPBrandList {
77 if in == nil {
78 return nil
79 }
80 out := new(IAPBrandList)
81 in.DeepCopyInto(out)
82 return out
83 }
84
85
86 func (in *IAPBrandList) DeepCopyObject() runtime.Object {
87 if c := in.DeepCopy(); c != nil {
88 return c
89 }
90 return nil
91 }
92
93
94 func (in *IAPBrandSpec) DeepCopyInto(out *IAPBrandSpec) {
95 *out = *in
96 if in.ApplicationTitle != nil {
97 in, out := &in.ApplicationTitle, &out.ApplicationTitle
98 *out = new(string)
99 **out = **in
100 }
101 if in.ResourceID != nil {
102 in, out := &in.ResourceID, &out.ResourceID
103 *out = new(string)
104 **out = **in
105 }
106 if in.SupportEmail != nil {
107 in, out := &in.SupportEmail, &out.SupportEmail
108 *out = new(string)
109 **out = **in
110 }
111 return
112 }
113
114
115 func (in *IAPBrandSpec) DeepCopy() *IAPBrandSpec {
116 if in == nil {
117 return nil
118 }
119 out := new(IAPBrandSpec)
120 in.DeepCopyInto(out)
121 return out
122 }
123
124
125 func (in *IAPBrandStatus) DeepCopyInto(out *IAPBrandStatus) {
126 *out = *in
127 if in.Conditions != nil {
128 in, out := &in.Conditions, &out.Conditions
129 *out = make([]v1alpha1.Condition, len(*in))
130 copy(*out, *in)
131 }
132 if in.ObservedGeneration != nil {
133 in, out := &in.ObservedGeneration, &out.ObservedGeneration
134 *out = new(int)
135 **out = **in
136 }
137 if in.OrgInternalOnly != nil {
138 in, out := &in.OrgInternalOnly, &out.OrgInternalOnly
139 *out = new(bool)
140 **out = **in
141 }
142 return
143 }
144
145
146 func (in *IAPBrandStatus) DeepCopy() *IAPBrandStatus {
147 if in == nil {
148 return nil
149 }
150 out := new(IAPBrandStatus)
151 in.DeepCopyInto(out)
152 return out
153 }
154
155
156 func (in *IAPIdentityAwareProxyClient) DeepCopyInto(out *IAPIdentityAwareProxyClient) {
157 *out = *in
158 out.TypeMeta = in.TypeMeta
159 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
160 in.Spec.DeepCopyInto(&out.Spec)
161 in.Status.DeepCopyInto(&out.Status)
162 return
163 }
164
165
166 func (in *IAPIdentityAwareProxyClient) DeepCopy() *IAPIdentityAwareProxyClient {
167 if in == nil {
168 return nil
169 }
170 out := new(IAPIdentityAwareProxyClient)
171 in.DeepCopyInto(out)
172 return out
173 }
174
175
176 func (in *IAPIdentityAwareProxyClient) DeepCopyObject() runtime.Object {
177 if c := in.DeepCopy(); c != nil {
178 return c
179 }
180 return nil
181 }
182
183
184 func (in *IAPIdentityAwareProxyClientList) DeepCopyInto(out *IAPIdentityAwareProxyClientList) {
185 *out = *in
186 out.TypeMeta = in.TypeMeta
187 in.ListMeta.DeepCopyInto(&out.ListMeta)
188 if in.Items != nil {
189 in, out := &in.Items, &out.Items
190 *out = make([]IAPIdentityAwareProxyClient, len(*in))
191 for i := range *in {
192 (*in)[i].DeepCopyInto(&(*out)[i])
193 }
194 }
195 return
196 }
197
198
199 func (in *IAPIdentityAwareProxyClientList) DeepCopy() *IAPIdentityAwareProxyClientList {
200 if in == nil {
201 return nil
202 }
203 out := new(IAPIdentityAwareProxyClientList)
204 in.DeepCopyInto(out)
205 return out
206 }
207
208
209 func (in *IAPIdentityAwareProxyClientList) DeepCopyObject() runtime.Object {
210 if c := in.DeepCopy(); c != nil {
211 return c
212 }
213 return nil
214 }
215
216
217 func (in *IAPIdentityAwareProxyClientSpec) DeepCopyInto(out *IAPIdentityAwareProxyClientSpec) {
218 *out = *in
219 out.BrandRef = in.BrandRef
220 if in.DisplayName != nil {
221 in, out := &in.DisplayName, &out.DisplayName
222 *out = new(string)
223 **out = **in
224 }
225 if in.ResourceID != nil {
226 in, out := &in.ResourceID, &out.ResourceID
227 *out = new(string)
228 **out = **in
229 }
230 return
231 }
232
233
234 func (in *IAPIdentityAwareProxyClientSpec) DeepCopy() *IAPIdentityAwareProxyClientSpec {
235 if in == nil {
236 return nil
237 }
238 out := new(IAPIdentityAwareProxyClientSpec)
239 in.DeepCopyInto(out)
240 return out
241 }
242
243
244 func (in *IAPIdentityAwareProxyClientStatus) DeepCopyInto(out *IAPIdentityAwareProxyClientStatus) {
245 *out = *in
246 if in.Conditions != nil {
247 in, out := &in.Conditions, &out.Conditions
248 *out = make([]v1alpha1.Condition, len(*in))
249 copy(*out, *in)
250 }
251 if in.ObservedGeneration != nil {
252 in, out := &in.ObservedGeneration, &out.ObservedGeneration
253 *out = new(int)
254 **out = **in
255 }
256 if in.Secret != nil {
257 in, out := &in.Secret, &out.Secret
258 *out = new(string)
259 **out = **in
260 }
261 return
262 }
263
264
265 func (in *IAPIdentityAwareProxyClientStatus) DeepCopy() *IAPIdentityAwareProxyClientStatus {
266 if in == nil {
267 return nil
268 }
269 out := new(IAPIdentityAwareProxyClientStatus)
270 in.DeepCopyInto(out)
271 return out
272 }
273
View as plain text