-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathservice.go
579 lines (472 loc) · 18.7 KB
/
service.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
package gcp
import (
"context"
"cloud.google.com/go/redis/apiv1"
"github.com/turbot/steampipe-plugin-sdk/v5/plugin"
"google.golang.org/api/accessapproval/v1"
"google.golang.org/api/apikeys/v2"
"google.golang.org/api/artifactregistry/v1"
"google.golang.org/api/bigquery/v2"
"google.golang.org/api/bigtableadmin/v2"
"google.golang.org/api/billingbudgets/v1"
"google.golang.org/api/cloudbilling/v1"
"google.golang.org/api/cloudfunctions/v1"
"google.golang.org/api/cloudidentity/v1"
"google.golang.org/api/cloudkms/v1"
"google.golang.org/api/cloudresourcemanager/v1"
"google.golang.org/api/compute/v1"
"google.golang.org/api/container/v1"
"google.golang.org/api/dataproc/v1"
"google.golang.org/api/dns/v1"
"google.golang.org/api/essentialcontacts/v1"
"google.golang.org/api/iam/v1"
"google.golang.org/api/logging/v2"
"google.golang.org/api/monitoring/v3"
"google.golang.org/api/pubsub/v1"
"google.golang.org/api/run/v2"
"google.golang.org/api/serviceusage/v1"
"google.golang.org/api/storage/v1"
computeBeta "google.golang.org/api/compute/v0.beta"
sqladmin "google.golang.org/api/sqladmin/v1beta4"
)
// AccessApprovalService returns the service connection for GCP Project AccessApproval service
func AccessApprovalService(ctx context.Context, d *plugin.QueryData) (*accessapproval.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "AccessApprovalService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*accessapproval.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := accessapproval.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
func APIKeysService(ctx context.Context, d *plugin.QueryData) (*apikeys.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "APIKeysService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*apikeys.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := apikeys.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// BillingBudgetsService returns the service connection for GCP Billing Budgets service
func BillingBudgetsService(ctx context.Context, d *plugin.QueryData) (*billingbudgets.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "BillingBudgetsService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*billingbudgets.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := billingbudgets.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// BillingService returns the service connection for GCP Billing service
func BillingService(ctx context.Context, d *plugin.QueryData) (*cloudbilling.APIService, error) {
// have we already created and cached the service?
serviceCacheKey := "BillingService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*cloudbilling.APIService), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := cloudbilling.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// BigQueryService returns the service connection for GCP BigQueryService service
func BigQueryService(ctx context.Context, d *plugin.QueryData) (*bigquery.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "BigQueryService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*bigquery.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := bigquery.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// ArtifactRegistryService returns the service connection for GCP ArtifactRegistry service
func ArtifactRegistryService(ctx context.Context, d *plugin.QueryData) (*artifactregistry.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "ArtifactRegistryService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*artifactregistry.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := artifactregistry.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// BigtableAdminService returns the service connection for GCP Bigtable Admin service
func BigtableAdminService(ctx context.Context, d *plugin.QueryData) (*bigtableadmin.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "BigtableAdminService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*bigtableadmin.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := bigtableadmin.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// CloudResourceManagerService returns the service connection for GCP Cloud Resource Manager service
func CloudResourceManagerService(ctx context.Context, d *plugin.QueryData) (*cloudresourcemanager.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "CloudResourceManagerService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*cloudresourcemanager.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := cloudresourcemanager.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// CloudRunService returns the service connection for GCP Cloud Run service
func CloudRunService(ctx context.Context, d *plugin.QueryData) (*run.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "CloudRunService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*run.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := run.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// EssentialContactService returns the service connection for GCP Cloud Organization Essential Contacts
func EssentialContactService(ctx context.Context, d *plugin.QueryData) (*essentialcontacts.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "EssentialContactService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*essentialcontacts.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := essentialcontacts.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// CloudSQLAdminService returns the service connection for GCP Cloud SQL Admin service
func CloudSQLAdminService(ctx context.Context, d *plugin.QueryData) (*sqladmin.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "CloudSQLAdminService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*sqladmin.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := sqladmin.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// ComputeBetaService returns the service connection for GCP Compute service beta version
func ComputeBetaService(ctx context.Context, d *plugin.QueryData) (*computeBeta.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "ComputeBetaService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*computeBeta.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := computeBeta.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// ComputeService returns the service connection for GCP Compute service
func ComputeService(ctx context.Context, d *plugin.QueryData) (*compute.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "ComputeService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*compute.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := compute.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// DataprocService returns the service connection for GCP Dataproc service
func DataprocService(ctx context.Context, d *plugin.QueryData) (*dataproc.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "DataprocService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*dataproc.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := dataproc.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// ContainerService returns the service connection for GCP Container service
func ContainerService(ctx context.Context, d *plugin.QueryData) (*container.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "ContainerService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*container.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := container.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// CloudFunctionsService returns the service connection for GCP Cloud Functions service
func CloudFunctionsService(ctx context.Context, d *plugin.QueryData) (*cloudfunctions.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "CloudFunctionsService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*cloudfunctions.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := cloudfunctions.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// CloudIdentityService returns the service connection for GCP Identity service
func CloudIdentityService(ctx context.Context, d *plugin.QueryData) (*cloudidentity.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "CloudIdentityService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*cloudidentity.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := cloudidentity.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// DnsService returns the service connection for GCP DNS service
func DnsService(ctx context.Context, d *plugin.QueryData) (*dns.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "DnsService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*dns.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := dns.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// IAMService returns the service connection for GCP IAM service
func IAMService(ctx context.Context, d *plugin.QueryData) (*iam.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "IAMService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*iam.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := iam.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// LoggingService returns the service connection for GCP Logging service
func LoggingService(ctx context.Context, d *plugin.QueryData) (*logging.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "LoggingService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*logging.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := logging.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// MonitoringService returns the service connection for GCP Monitoring service
func MonitoringService(ctx context.Context, d *plugin.QueryData) (*monitoring.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "MonitoringService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*monitoring.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := monitoring.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// PubsubService returns the service connection for GCP Pub/Sub service
func PubsubService(ctx context.Context, d *plugin.QueryData) (*pubsub.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "PubsubService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*pubsub.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := pubsub.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// ServiceUsageService returns the service connection for GCP Service Usage service
func ServiceUsageService(ctx context.Context, d *plugin.QueryData) (*serviceusage.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "ServiceUsageService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*serviceusage.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := serviceusage.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// StorageService returns the service connection for GCP Storage service
func StorageService(ctx context.Context, d *plugin.QueryData) (*storage.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "StorageService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*storage.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := storage.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// KMSService returns the service connection for GCP KMS service
func KMSService(ctx context.Context, d *plugin.QueryData) (*cloudkms.Service, error) {
// have we already created and cached the service?
serviceCacheKey := "KMSService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*cloudkms.Service), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := cloudkms.NewService(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}
// RedisService returns the service connection for GCP Redis service
func RedisService(ctx context.Context, d *plugin.QueryData) (*redis.CloudRedisClient, error) {
// have we already created and cached the service?
serviceCacheKey := "RedisService"
if cachedData, ok := d.ConnectionManager.Cache.Get(serviceCacheKey); ok {
return cachedData.(*redis.CloudRedisClient), nil
}
// To get config arguments from plugin config file
opts := setSessionConfig(ctx, d.Connection)
// so it was not in cache - create service
svc, err := redis.NewCloudRedisClient(ctx, opts...)
if err != nil {
return nil, err
}
d.ConnectionManager.Cache.Set(serviceCacheKey, svc)
return svc, nil
}