-
Notifications
You must be signed in to change notification settings - Fork 74
/
zz_setup.go
executable file
·420 lines (415 loc) · 23.7 KB
/
zz_setup.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
Copyright 2021 Upbound Inc.
*/
package controller
import (
ctrl "sigs.k8s.io/controller-runtime"
"github.com/upbound/upjet/pkg/controller"
application "github.com/upbound/provider-gcp/internal/controller/appengine/application"
function "github.com/upbound/provider-gcp/internal/controller/cloudfunctions/function"
functioniammember "github.com/upbound/provider-gcp/internal/controller/cloudfunctions/functioniammember"
folder "github.com/upbound/provider-gcp/internal/controller/cloudplatform/folder"
organizationiamauditconfig "github.com/upbound/provider-gcp/internal/controller/cloudplatform/organizationiamauditconfig"
organizationiamcustomrole "github.com/upbound/provider-gcp/internal/controller/cloudplatform/organizationiamcustomrole"
organizationiammember "github.com/upbound/provider-gcp/internal/controller/cloudplatform/organizationiammember"
project "github.com/upbound/provider-gcp/internal/controller/cloudplatform/project"
projectdefaultserviceaccounts "github.com/upbound/provider-gcp/internal/controller/cloudplatform/projectdefaultserviceaccounts"
projectiamauditconfig "github.com/upbound/provider-gcp/internal/controller/cloudplatform/projectiamauditconfig"
projectiammember "github.com/upbound/provider-gcp/internal/controller/cloudplatform/projectiammember"
projectservice "github.com/upbound/provider-gcp/internal/controller/cloudplatform/projectservice"
projectusageexportbucket "github.com/upbound/provider-gcp/internal/controller/cloudplatform/projectusageexportbucket"
serviceaccount "github.com/upbound/provider-gcp/internal/controller/cloudplatform/serviceaccount"
serviceaccountiammember "github.com/upbound/provider-gcp/internal/controller/cloudplatform/serviceaccountiammember"
serviceaccountkey "github.com/upbound/provider-gcp/internal/controller/cloudplatform/serviceaccountkey"
servicenetworkingpeereddnsdomain "github.com/upbound/provider-gcp/internal/controller/cloudplatform/servicenetworkingpeereddnsdomain"
domainmapping "github.com/upbound/provider-gcp/internal/controller/cloudrun/domainmapping"
service "github.com/upbound/provider-gcp/internal/controller/cloudrun/service"
serviceiammember "github.com/upbound/provider-gcp/internal/controller/cloudrun/serviceiammember"
job "github.com/upbound/provider-gcp/internal/controller/cloudscheduler/job"
queue "github.com/upbound/provider-gcp/internal/controller/cloudtasks/queue"
environment "github.com/upbound/provider-gcp/internal/controller/composer/environment"
address "github.com/upbound/provider-gcp/internal/controller/compute/address"
attacheddisk "github.com/upbound/provider-gcp/internal/controller/compute/attacheddisk"
autoscaler "github.com/upbound/provider-gcp/internal/controller/compute/autoscaler"
backendbucket "github.com/upbound/provider-gcp/internal/controller/compute/backendbucket"
backendbucketsignedurlkey "github.com/upbound/provider-gcp/internal/controller/compute/backendbucketsignedurlkey"
backendservice "github.com/upbound/provider-gcp/internal/controller/compute/backendservice"
disk "github.com/upbound/provider-gcp/internal/controller/compute/disk"
diskiammember "github.com/upbound/provider-gcp/internal/controller/compute/diskiammember"
diskresourcepolicyattachment "github.com/upbound/provider-gcp/internal/controller/compute/diskresourcepolicyattachment"
externalvpngateway "github.com/upbound/provider-gcp/internal/controller/compute/externalvpngateway"
firewall "github.com/upbound/provider-gcp/internal/controller/compute/firewall"
firewallpolicy "github.com/upbound/provider-gcp/internal/controller/compute/firewallpolicy"
firewallpolicyassociation "github.com/upbound/provider-gcp/internal/controller/compute/firewallpolicyassociation"
firewallpolicyrule "github.com/upbound/provider-gcp/internal/controller/compute/firewallpolicyrule"
forwardingrule "github.com/upbound/provider-gcp/internal/controller/compute/forwardingrule"
globaladdress "github.com/upbound/provider-gcp/internal/controller/compute/globaladdress"
globalforwardingrule "github.com/upbound/provider-gcp/internal/controller/compute/globalforwardingrule"
globalnetworkendpoint "github.com/upbound/provider-gcp/internal/controller/compute/globalnetworkendpoint"
globalnetworkendpointgroup "github.com/upbound/provider-gcp/internal/controller/compute/globalnetworkendpointgroup"
havpngateway "github.com/upbound/provider-gcp/internal/controller/compute/havpngateway"
healthcheck "github.com/upbound/provider-gcp/internal/controller/compute/healthcheck"
httphealthcheck "github.com/upbound/provider-gcp/internal/controller/compute/httphealthcheck"
httpshealthcheck "github.com/upbound/provider-gcp/internal/controller/compute/httpshealthcheck"
image "github.com/upbound/provider-gcp/internal/controller/compute/image"
imageiammember "github.com/upbound/provider-gcp/internal/controller/compute/imageiammember"
instance "github.com/upbound/provider-gcp/internal/controller/compute/instance"
instancefromtemplate "github.com/upbound/provider-gcp/internal/controller/compute/instancefromtemplate"
instancegroup "github.com/upbound/provider-gcp/internal/controller/compute/instancegroup"
instancegroupmanager "github.com/upbound/provider-gcp/internal/controller/compute/instancegroupmanager"
instancegroupnamedport "github.com/upbound/provider-gcp/internal/controller/compute/instancegroupnamedport"
instanceiammember "github.com/upbound/provider-gcp/internal/controller/compute/instanceiammember"
instancetemplate "github.com/upbound/provider-gcp/internal/controller/compute/instancetemplate"
interconnectattachment "github.com/upbound/provider-gcp/internal/controller/compute/interconnectattachment"
managedsslcertificate "github.com/upbound/provider-gcp/internal/controller/compute/managedsslcertificate"
network "github.com/upbound/provider-gcp/internal/controller/compute/network"
networkendpoint "github.com/upbound/provider-gcp/internal/controller/compute/networkendpoint"
networkendpointgroup "github.com/upbound/provider-gcp/internal/controller/compute/networkendpointgroup"
networkpeering "github.com/upbound/provider-gcp/internal/controller/compute/networkpeering"
networkpeeringroutesconfig "github.com/upbound/provider-gcp/internal/controller/compute/networkpeeringroutesconfig"
nodegroup "github.com/upbound/provider-gcp/internal/controller/compute/nodegroup"
nodetemplate "github.com/upbound/provider-gcp/internal/controller/compute/nodetemplate"
packetmirroring "github.com/upbound/provider-gcp/internal/controller/compute/packetmirroring"
perinstanceconfig "github.com/upbound/provider-gcp/internal/controller/compute/perinstanceconfig"
projectdefaultnetworktier "github.com/upbound/provider-gcp/internal/controller/compute/projectdefaultnetworktier"
projectmetadata "github.com/upbound/provider-gcp/internal/controller/compute/projectmetadata"
projectmetadataitem "github.com/upbound/provider-gcp/internal/controller/compute/projectmetadataitem"
regionautoscaler "github.com/upbound/provider-gcp/internal/controller/compute/regionautoscaler"
regionbackendservice "github.com/upbound/provider-gcp/internal/controller/compute/regionbackendservice"
regiondisk "github.com/upbound/provider-gcp/internal/controller/compute/regiondisk"
regiondiskiammember "github.com/upbound/provider-gcp/internal/controller/compute/regiondiskiammember"
regiondiskresourcepolicyattachment "github.com/upbound/provider-gcp/internal/controller/compute/regiondiskresourcepolicyattachment"
regionhealthcheck "github.com/upbound/provider-gcp/internal/controller/compute/regionhealthcheck"
regioninstancegroupmanager "github.com/upbound/provider-gcp/internal/controller/compute/regioninstancegroupmanager"
regionnetworkendpointgroup "github.com/upbound/provider-gcp/internal/controller/compute/regionnetworkendpointgroup"
regionperinstanceconfig "github.com/upbound/provider-gcp/internal/controller/compute/regionperinstanceconfig"
regionsslcertificate "github.com/upbound/provider-gcp/internal/controller/compute/regionsslcertificate"
regiontargethttpproxy "github.com/upbound/provider-gcp/internal/controller/compute/regiontargethttpproxy"
regiontargethttpsproxy "github.com/upbound/provider-gcp/internal/controller/compute/regiontargethttpsproxy"
regionurlmap "github.com/upbound/provider-gcp/internal/controller/compute/regionurlmap"
reservation "github.com/upbound/provider-gcp/internal/controller/compute/reservation"
resourcepolicy "github.com/upbound/provider-gcp/internal/controller/compute/resourcepolicy"
route "github.com/upbound/provider-gcp/internal/controller/compute/route"
router "github.com/upbound/provider-gcp/internal/controller/compute/router"
routerinterface "github.com/upbound/provider-gcp/internal/controller/compute/routerinterface"
routernat "github.com/upbound/provider-gcp/internal/controller/compute/routernat"
securitypolicy "github.com/upbound/provider-gcp/internal/controller/compute/securitypolicy"
serviceattachment "github.com/upbound/provider-gcp/internal/controller/compute/serviceattachment"
sslcertificate "github.com/upbound/provider-gcp/internal/controller/compute/sslcertificate"
subnetwork "github.com/upbound/provider-gcp/internal/controller/compute/subnetwork"
subnetworkiammember "github.com/upbound/provider-gcp/internal/controller/compute/subnetworkiammember"
targetgrpcproxy "github.com/upbound/provider-gcp/internal/controller/compute/targetgrpcproxy"
targethttpproxy "github.com/upbound/provider-gcp/internal/controller/compute/targethttpproxy"
targethttpsproxy "github.com/upbound/provider-gcp/internal/controller/compute/targethttpsproxy"
targetinstance "github.com/upbound/provider-gcp/internal/controller/compute/targetinstance"
targetpool "github.com/upbound/provider-gcp/internal/controller/compute/targetpool"
targetsslproxy "github.com/upbound/provider-gcp/internal/controller/compute/targetsslproxy"
targettcpproxy "github.com/upbound/provider-gcp/internal/controller/compute/targettcpproxy"
urlmap "github.com/upbound/provider-gcp/internal/controller/compute/urlmap"
vpngateway "github.com/upbound/provider-gcp/internal/controller/compute/vpngateway"
vpntunnel "github.com/upbound/provider-gcp/internal/controller/compute/vpntunnel"
cluster "github.com/upbound/provider-gcp/internal/controller/container/cluster"
nodepool "github.com/upbound/provider-gcp/internal/controller/container/nodepool"
registry "github.com/upbound/provider-gcp/internal/controller/container/registry"
note "github.com/upbound/provider-gcp/internal/controller/containeranalysis/note"
clustercontaineraws "github.com/upbound/provider-gcp/internal/controller/containeraws/cluster"
nodepoolcontaineraws "github.com/upbound/provider-gcp/internal/controller/containeraws/nodepool"
client "github.com/upbound/provider-gcp/internal/controller/containerazure/client"
clustercontainerazure "github.com/upbound/provider-gcp/internal/controller/containerazure/cluster"
nodepoolcontainerazure "github.com/upbound/provider-gcp/internal/controller/containerazure/nodepool"
entry "github.com/upbound/provider-gcp/internal/controller/datacatalog/entry"
entrygroup "github.com/upbound/provider-gcp/internal/controller/datacatalog/entrygroup"
agent "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/agent"
entitytype "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/entitytype"
environmentdialogflowcx "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/environment"
flow "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/flow"
intent "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/intent"
page "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/page"
version "github.com/upbound/provider-gcp/internal/controller/dialogflowcx/version"
managedzone "github.com/upbound/provider-gcp/internal/controller/dns/managedzone"
policy "github.com/upbound/provider-gcp/internal/controller/dns/policy"
recordset "github.com/upbound/provider-gcp/internal/controller/dns/recordset"
contact "github.com/upbound/provider-gcp/internal/controller/essentialcontacts/contact"
trigger "github.com/upbound/provider-gcp/internal/controller/eventarc/trigger"
instancefilestore "github.com/upbound/provider-gcp/internal/controller/filestore/instance"
release "github.com/upbound/provider-gcp/internal/controller/firebaserules/release"
ruleset "github.com/upbound/provider-gcp/internal/controller/firebaserules/ruleset"
membership "github.com/upbound/provider-gcp/internal/controller/gkehub/membership"
consentstore "github.com/upbound/provider-gcp/internal/controller/healthcare/consentstore"
dataset "github.com/upbound/provider-gcp/internal/controller/healthcare/dataset"
webbackendserviceiammember "github.com/upbound/provider-gcp/internal/controller/iap/webbackendserviceiammember"
webiammember "github.com/upbound/provider-gcp/internal/controller/iap/webiammember"
webtypeappengineiammember "github.com/upbound/provider-gcp/internal/controller/iap/webtypeappengineiammember"
webtypecomputeiammember "github.com/upbound/provider-gcp/internal/controller/iap/webtypecomputeiammember"
defaultsupportedidpconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/defaultsupportedidpconfig"
inboundsamlconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/inboundsamlconfig"
oauthidpconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/oauthidpconfig"
tenant "github.com/upbound/provider-gcp/internal/controller/identityplatform/tenant"
tenantdefaultsupportedidpconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/tenantdefaultsupportedidpconfig"
tenantinboundsamlconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/tenantinboundsamlconfig"
tenantoauthidpconfig "github.com/upbound/provider-gcp/internal/controller/identityplatform/tenantoauthidpconfig"
cryptokey "github.com/upbound/provider-gcp/internal/controller/kms/cryptokey"
cryptokeyiammember "github.com/upbound/provider-gcp/internal/controller/kms/cryptokeyiammember"
keyring "github.com/upbound/provider-gcp/internal/controller/kms/keyring"
keyringiammember "github.com/upbound/provider-gcp/internal/controller/kms/keyringiammember"
keyringimportjob "github.com/upbound/provider-gcp/internal/controller/kms/keyringimportjob"
secretciphertext "github.com/upbound/provider-gcp/internal/controller/kms/secretciphertext"
alertpolicy "github.com/upbound/provider-gcp/internal/controller/monitoring/alertpolicy"
notificationchannel "github.com/upbound/provider-gcp/internal/controller/monitoring/notificationchannel"
uptimecheckconfig "github.com/upbound/provider-gcp/internal/controller/monitoring/uptimecheckconfig"
environmentnotebooks "github.com/upbound/provider-gcp/internal/controller/notebooks/environment"
instancenotebooks "github.com/upbound/provider-gcp/internal/controller/notebooks/instance"
instanceiammembernotebooks "github.com/upbound/provider-gcp/internal/controller/notebooks/instanceiammember"
runtime "github.com/upbound/provider-gcp/internal/controller/notebooks/runtime"
runtimeiammember "github.com/upbound/provider-gcp/internal/controller/notebooks/runtimeiammember"
ospolicyassignment "github.com/upbound/provider-gcp/internal/controller/osconfig/ospolicyassignment"
patchdeployment "github.com/upbound/provider-gcp/internal/controller/osconfig/patchdeployment"
sshpublickey "github.com/upbound/provider-gcp/internal/controller/oslogin/sshpublickey"
capool "github.com/upbound/provider-gcp/internal/controller/privateca/capool"
capooliammember "github.com/upbound/provider-gcp/internal/controller/privateca/capooliammember"
certificate "github.com/upbound/provider-gcp/internal/controller/privateca/certificate"
certificateauthority "github.com/upbound/provider-gcp/internal/controller/privateca/certificateauthority"
certificatetemplate "github.com/upbound/provider-gcp/internal/controller/privateca/certificatetemplate"
certificatetemplateiammember "github.com/upbound/provider-gcp/internal/controller/privateca/certificatetemplateiammember"
providerconfig "github.com/upbound/provider-gcp/internal/controller/providerconfig"
litereservation "github.com/upbound/provider-gcp/internal/controller/pubsub/litereservation"
litesubscription "github.com/upbound/provider-gcp/internal/controller/pubsub/litesubscription"
litetopic "github.com/upbound/provider-gcp/internal/controller/pubsub/litetopic"
schema "github.com/upbound/provider-gcp/internal/controller/pubsub/schema"
subscription "github.com/upbound/provider-gcp/internal/controller/pubsub/subscription"
subscriptioniammember "github.com/upbound/provider-gcp/internal/controller/pubsub/subscriptioniammember"
topic "github.com/upbound/provider-gcp/internal/controller/pubsub/topic"
topiciammember "github.com/upbound/provider-gcp/internal/controller/pubsub/topiciammember"
instanceredis "github.com/upbound/provider-gcp/internal/controller/redis/instance"
secret "github.com/upbound/provider-gcp/internal/controller/secretmanager/secret"
secretiammember "github.com/upbound/provider-gcp/internal/controller/secretmanager/secretiammember"
secretversion "github.com/upbound/provider-gcp/internal/controller/secretmanager/secretversion"
connection "github.com/upbound/provider-gcp/internal/controller/servicenetworking/connection"
repository "github.com/upbound/provider-gcp/internal/controller/sourcerepo/repository"
repositoryiammember "github.com/upbound/provider-gcp/internal/controller/sourcerepo/repositoryiammember"
database "github.com/upbound/provider-gcp/internal/controller/spanner/database"
databaseiammember "github.com/upbound/provider-gcp/internal/controller/spanner/databaseiammember"
instancespanner "github.com/upbound/provider-gcp/internal/controller/spanner/instance"
instanceiammemberspanner "github.com/upbound/provider-gcp/internal/controller/spanner/instanceiammember"
databasesql "github.com/upbound/provider-gcp/internal/controller/sql/database"
databaseinstance "github.com/upbound/provider-gcp/internal/controller/sql/databaseinstance"
sourcerepresentationinstance "github.com/upbound/provider-gcp/internal/controller/sql/sourcerepresentationinstance"
sslcert "github.com/upbound/provider-gcp/internal/controller/sql/sslcert"
user "github.com/upbound/provider-gcp/internal/controller/sql/user"
bucket "github.com/upbound/provider-gcp/internal/controller/storage/bucket"
bucketaccesscontrol "github.com/upbound/provider-gcp/internal/controller/storage/bucketaccesscontrol"
bucketacl "github.com/upbound/provider-gcp/internal/controller/storage/bucketacl"
bucketiammember "github.com/upbound/provider-gcp/internal/controller/storage/bucketiammember"
bucketobject "github.com/upbound/provider-gcp/internal/controller/storage/bucketobject"
defaultobjectaccesscontrol "github.com/upbound/provider-gcp/internal/controller/storage/defaultobjectaccesscontrol"
defaultobjectacl "github.com/upbound/provider-gcp/internal/controller/storage/defaultobjectacl"
)
// Setup creates all controllers with the supplied logger and adds them to
// the supplied manager.
func Setup(mgr ctrl.Manager, o controller.Options) error {
for _, setup := range []func(ctrl.Manager, controller.Options) error{
application.Setup,
function.Setup,
functioniammember.Setup,
folder.Setup,
organizationiamauditconfig.Setup,
organizationiamcustomrole.Setup,
organizationiammember.Setup,
project.Setup,
projectdefaultserviceaccounts.Setup,
projectiamauditconfig.Setup,
projectiammember.Setup,
projectservice.Setup,
projectusageexportbucket.Setup,
serviceaccount.Setup,
serviceaccountiammember.Setup,
serviceaccountkey.Setup,
servicenetworkingpeereddnsdomain.Setup,
domainmapping.Setup,
service.Setup,
serviceiammember.Setup,
job.Setup,
queue.Setup,
environment.Setup,
address.Setup,
attacheddisk.Setup,
autoscaler.Setup,
backendbucket.Setup,
backendbucketsignedurlkey.Setup,
backendservice.Setup,
disk.Setup,
diskiammember.Setup,
diskresourcepolicyattachment.Setup,
externalvpngateway.Setup,
firewall.Setup,
firewallpolicy.Setup,
firewallpolicyassociation.Setup,
firewallpolicyrule.Setup,
forwardingrule.Setup,
globaladdress.Setup,
globalforwardingrule.Setup,
globalnetworkendpoint.Setup,
globalnetworkendpointgroup.Setup,
havpngateway.Setup,
healthcheck.Setup,
httphealthcheck.Setup,
httpshealthcheck.Setup,
image.Setup,
imageiammember.Setup,
instance.Setup,
instancefromtemplate.Setup,
instancegroup.Setup,
instancegroupmanager.Setup,
instancegroupnamedport.Setup,
instanceiammember.Setup,
instancetemplate.Setup,
interconnectattachment.Setup,
managedsslcertificate.Setup,
network.Setup,
networkendpoint.Setup,
networkendpointgroup.Setup,
networkpeering.Setup,
networkpeeringroutesconfig.Setup,
nodegroup.Setup,
nodetemplate.Setup,
packetmirroring.Setup,
perinstanceconfig.Setup,
projectdefaultnetworktier.Setup,
projectmetadata.Setup,
projectmetadataitem.Setup,
regionautoscaler.Setup,
regionbackendservice.Setup,
regiondisk.Setup,
regiondiskiammember.Setup,
regiondiskresourcepolicyattachment.Setup,
regionhealthcheck.Setup,
regioninstancegroupmanager.Setup,
regionnetworkendpointgroup.Setup,
regionperinstanceconfig.Setup,
regionsslcertificate.Setup,
regiontargethttpproxy.Setup,
regiontargethttpsproxy.Setup,
regionurlmap.Setup,
reservation.Setup,
resourcepolicy.Setup,
route.Setup,
router.Setup,
routerinterface.Setup,
routernat.Setup,
securitypolicy.Setup,
serviceattachment.Setup,
sslcertificate.Setup,
subnetwork.Setup,
subnetworkiammember.Setup,
targetgrpcproxy.Setup,
targethttpproxy.Setup,
targethttpsproxy.Setup,
targetinstance.Setup,
targetpool.Setup,
targetsslproxy.Setup,
targettcpproxy.Setup,
urlmap.Setup,
vpngateway.Setup,
vpntunnel.Setup,
cluster.Setup,
nodepool.Setup,
registry.Setup,
note.Setup,
clustercontaineraws.Setup,
nodepoolcontaineraws.Setup,
client.Setup,
clustercontainerazure.Setup,
nodepoolcontainerazure.Setup,
entry.Setup,
entrygroup.Setup,
agent.Setup,
entitytype.Setup,
environmentdialogflowcx.Setup,
flow.Setup,
intent.Setup,
page.Setup,
version.Setup,
managedzone.Setup,
policy.Setup,
recordset.Setup,
contact.Setup,
trigger.Setup,
instancefilestore.Setup,
release.Setup,
ruleset.Setup,
membership.Setup,
consentstore.Setup,
dataset.Setup,
webbackendserviceiammember.Setup,
webiammember.Setup,
webtypeappengineiammember.Setup,
webtypecomputeiammember.Setup,
defaultsupportedidpconfig.Setup,
inboundsamlconfig.Setup,
oauthidpconfig.Setup,
tenant.Setup,
tenantdefaultsupportedidpconfig.Setup,
tenantinboundsamlconfig.Setup,
tenantoauthidpconfig.Setup,
cryptokey.Setup,
cryptokeyiammember.Setup,
keyring.Setup,
keyringiammember.Setup,
keyringimportjob.Setup,
secretciphertext.Setup,
alertpolicy.Setup,
notificationchannel.Setup,
uptimecheckconfig.Setup,
environmentnotebooks.Setup,
instancenotebooks.Setup,
instanceiammembernotebooks.Setup,
runtime.Setup,
runtimeiammember.Setup,
ospolicyassignment.Setup,
patchdeployment.Setup,
sshpublickey.Setup,
capool.Setup,
capooliammember.Setup,
certificate.Setup,
certificateauthority.Setup,
certificatetemplate.Setup,
certificatetemplateiammember.Setup,
providerconfig.Setup,
litereservation.Setup,
litesubscription.Setup,
litetopic.Setup,
schema.Setup,
subscription.Setup,
subscriptioniammember.Setup,
topic.Setup,
topiciammember.Setup,
instanceredis.Setup,
secret.Setup,
secretiammember.Setup,
secretversion.Setup,
connection.Setup,
repository.Setup,
repositoryiammember.Setup,
database.Setup,
databaseiammember.Setup,
instancespanner.Setup,
instanceiammemberspanner.Setup,
databasesql.Setup,
databaseinstance.Setup,
sourcerepresentationinstance.Setup,
sslcert.Setup,
user.Setup,
bucket.Setup,
bucketaccesscontrol.Setup,
bucketacl.Setup,
bucketiammember.Setup,
bucketobject.Setup,
defaultobjectaccesscontrol.Setup,
defaultobjectacl.Setup,
} {
if err := setup(mgr, o); err != nil {
return err
}
}
return nil
}