forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-agents.yaml
1557 lines (1555 loc) · 52.1 KB
/
service-agents.yaml
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: aiplatform-cc
display_name: AI Platform Custom Code Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: roles/aiplatform.customCodeServiceAgent
is_primary: false
aliases: []
- name: vertex-es
display_name: AI Platform Example Store Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: aiplatform-ft
display_name: AI Platform Fine Tuning Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: roles/aiplatform.serviceAgent
is_primary: false
aliases: []
- name: aiplatform-is
display_name: AI Platform Infra Spanner Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: vertex-eval
display_name: AI Platform Rapid Eval Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: roles/aiplatform.rapidevalServiceAgent
is_primary: false
aliases: []
- name: aiplatform-re
display_name: AI Platform Reasoning Engine Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: roles/aiplatform.reasoningEngineServiceAgent
is_primary: false
aliases: []
- name: gcp-ri-aiplatform
display_name: AI Platform Resource Identity
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: aiplatform
display_name: AI Platform Service Agent
api: aiplatform.googleapis.com
identity: service-%[email protected]
role: roles/aiplatform.serviceAgent
is_primary: true
aliases: []
- name: apihub
display_name: API Hub Service Account
api: apihub.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: apikeys
display_name: API Keys Service Account
api: apikeys.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: apim
display_name: APIM Service Account
api: apim.googleapis.com
identity: service-%[email protected]
role: roles/apim.apiDiscoveryServiceAgent
is_primary: true
aliases: []
- name: meshcontrolplane
display_name: ASM Mesh Control Plane Service Account
api: meshconfig.googleapis.com
identity: service-%[email protected]
role: roles/meshcontrolplane.serviceAgent
is_primary: false
aliases: []
- name: meshdataplane
display_name: ASM Mesh Data Plane Service Account
api: meshconfig.googleapis.com
identity: service-%[email protected]
role: roles/meshdataplane.serviceAgent
is_primary: false
aliases: []
- name: adsdatahub
display_name: Ads Data Hub Service Account
api: adsdatahub.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: alloydb
display_name: AlloyDB Service Account
api: alloydb.googleapis.com
identity: service-%[email protected]
role: roles/alloydb.serviceAgent
is_primary: true
aliases: []
- name: anthosaudit
display_name: Anthos Audit Service Account
api: anthosaudit.googleapis.com
identity: service-%[email protected]
role: roles/anthosaudit.serviceAgent
is_primary: true
aliases: []
- name: anthosconfigmanagement
display_name: Anthos Config Management Service Account
api: anthosconfigmanagement.googleapis.com
identity: service-%[email protected]
role: roles/anthosconfigmanagement.serviceAgent
is_primary: true
aliases: []
- name: anthosidentityservice
display_name: Anthos Identity Service Account
api: anthosidentityservice.googleapis.com
identity: service-%[email protected]
role: roles/anthosidentityservice.serviceAgent
is_primary: true
aliases: []
- name: gkemulticloudcontainer
display_name: Anthos Multi-Cloud Container Service Agent
api: gkemulticloud.googleapis.com
identity: service-%[email protected]
role: roles/gkemulticloud.containerServiceAgent
is_primary: false
aliases: []
- name: gkemulticloudcpmachine
display_name: Anthos Multi-Cloud Control Plane Machine Service Agent
api: gkemulticloud.googleapis.com
identity: service-%[email protected]
role: roles/gkemulticloud.controlPlaneMachineServiceAgent
is_primary: false
aliases: []
- name: gkemulticloudnpmachine
display_name: Anthos Multi-Cloud Node Pool Machine Service Agent
api: gkemulticloud.googleapis.com
identity: service-%[email protected]
role: roles/gkemulticloud.nodePoolMachineServiceAgent
is_primary: false
aliases: []
- name: gkemulticloud
display_name: Anthos Multi-Cloud Service Agent
api: gkemulticloud.googleapis.com
identity: service-%[email protected]
role: roles/gkemulticloud.serviceAgent
is_primary: true
aliases: []
- name: anthospolicycontroller
display_name: Anthos Policy Controller Service Account
api: anthospolicycontroller.googleapis.com
identity: service-%[email protected]
role: roles/anthospolicycontroller.serviceAgent
is_primary: true
aliases: []
- name: anthos
display_name: Anthos Service Account
api: anthos.googleapis.com
identity: service-%[email protected]
role: roles/anthos.serviceAgent
is_primary: true
aliases: []
- name: servicemesh
display_name: Anthos Service Mesh Service Account
api: meshconfig.googleapis.com
identity: service-%[email protected]
role: roles/anthosservicemesh.serviceAgent
is_primary: false
aliases: []
- name: anthossupport
display_name: Anthos Support Service Account
api: connectgateway.googleapis.com
identity: service-%[email protected]
role: roles/anthossupport.serviceAgent
is_primary: true
aliases: []
- name: apigeeregistry
display_name: Apigee Registry Service Account
api: apigeeregistry.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: apigee
display_name: Apigee Service Agent
api: apigee.googleapis.com
identity: service-%[email protected]
role: roles/apigee.serviceAgent
is_primary: true
aliases: []
- name: appdevexperience
display_name: App Development Experience Service Account
api: appdevelopmentexperience.googleapis.com
identity: service-%[email protected]
role: roles/appdevelopmentexperience.serviceAgent
is_primary: true
aliases: []
- name: gae-api-prod
display_name: App Engine Flexible Environment Service Agent
api: appengineflex.googleapis.com
identity: service-%[email protected]
role: roles/appengineflex.serviceAgent
is_primary: true
aliases:
- gae-flex
- name: gcp-gae-service
display_name: App Engine Standard Environment Service Agent
api: appenginestandard.googleapis.com
identity: service-%[email protected]
role: roles/appengine.serviceAgent
is_primary: true
aliases: []
- name: apphub
display_name: App Hub Service Account
api: apphub.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: integrations
display_name: Application Integration Service Agent
api: integrations.googleapis.com
identity: service-%[email protected]
role: roles/integrations.serviceAgent
is_primary: true
aliases: []
- name: artifactregistry
display_name: Artifact Registry Service Agent
api: artifactregistry.googleapis.com
identity: service-%[email protected]
role: roles/artifactregistry.serviceAgent
is_primary: true
aliases: []
- name: assuredworkloads
display_name: AssuredWorkloads Service Account
api: assuredworkloads.googleapis.com
identity: service-%[email protected]
role: roles/assuredworkloads.serviceAgent
is_primary: true
aliases: []
- name: audit-manager
display_name: Audit Manager Service Agent
api: auditmanager.googleapis.com
identity: service-%[email protected]
role: roles/auditmanager.serviceAgent
is_primary: true
aliases: []
- name: recommendationengine
display_name: AutoML Recommendations Service Account
api: recommendationengine.googleapis.com
identity: service-%[email protected]
role: roles/automlrecommendations.serviceAgent
is_primary: true
aliases: []
- name: automl
display_name: AutoML Service Agent
api: automl.googleapis.com
identity: service-%[email protected]
role: roles/automl.serviceAgent
is_primary: true
aliases: []
- name: backupdr-run
display_name: Backup and DR Runner Service Agent
api: backupdr.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: backupdr
display_name: Backup and DR Service Agent
api: backupdr.googleapis.com
identity: service-%[email protected]
role: roles/backupdr.serviceAgent
is_primary: true
aliases: []
- name: backupdr-pr
display_name: Backup and DR Vault Service Agent
api: backupdr.googleapis.com
identity: vault-%[email protected]
role: null
is_primary: false
aliases: []
- name: gkebackup
display_name: Backup for GKE Service Account
api: gkebackup.googleapis.com
identity: service-%[email protected]
role: roles/gkebackup.serviceAgent
is_primary: true
aliases: []
- name: bms
display_name: Bare Metal Solution Service Account
api: baremetalsolution.googleapis.com
identity: service-%[email protected]
role: roles/baremetalsolution.serviceAgent
is_primary: true
aliases: []
- name: cloudbatch
display_name: Batch Service Account
api: batch.googleapis.com
identity: service-%[email protected]
role: roles/batch.serviceAgent
is_primary: true
aliases: []
- name: bigquery-encryption
display_name: Big Query Service Agent
api: bigquery.googleapis.com
identity: bq-%[email protected]
role: null
is_primary: false
aliases:
- bq
- name: bigqueryconnection
display_name: BigQuery Connection Service Agent
api: bigqueryconnection.googleapis.com
identity: service-%[email protected]
role: roles/bigqueryconnection.serviceAgent
is_primary: true
aliases: []
- name: bigquerytardis
display_name: BigQuery Continuous Query Service Agent
api: bigquery.googleapis.com
identity: service-%[email protected]
role: roles/bigquerycontinuousquery.serviceAgent
is_primary: false
aliases: []
- name: bigquerydatatransfer
display_name: BigQuery Data Transfer Service Agent
api: bigquerydatatransfer.googleapis.com
identity: service-%[email protected]
role: roles/bigquerydatatransfer.serviceAgent
is_primary: true
aliases: []
- name: prod-bigqueryomni
display_name: BigQuery Omni Service Agent
api: bigquery.googleapis.com
identity: service-%[email protected]
role: roles/bigqueryomni.serviceAgent
is_primary: false
aliases: []
- name: bigqueryri
display_name: BigQuery Resource Identity Service Account
api: bigquery.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: bigquery-consp
display_name: BigQuery Spark Connection Delegate Service Agent
api: bigqueryconnection.googleapis.com
identity: bqcx-%[email protected]
role: null
is_primary: false
aliases: []
- name: bigqueryspark
display_name: BigQuery Spark Service Agent
api: bigquery.googleapis.com
identity: service-%[email protected]
role: roles/bigqueryspark.serviceAgent
is_primary: false
aliases: []
- name: binaryauthorization
display_name: Binary Authorization Service Agent
api: binaryauthorization.googleapis.com
identity: service-%[email protected]
role: roles/binaryauthorization.serviceAgent
is_primary: true
aliases: []
- name: bne
display_name: Blockchain Node Engine Service Account
api: blockchainnodeengine.googleapis.com
identity: service-%[email protected]
role: roles/blockchainnodeengine.serviceAgent
is_primary: true
aliases: []
- name: bundles
display_name: Bundles Service Agent
api: integrations.googleapis.com
identity: b%[email protected]
role: null
is_primary: false
aliases: []
- name: chronicle
display_name: Chronicle Service Account
api: chronicle.googleapis.com
identity: service-%[email protected]
role: roles/chronicle.serviceAgent
is_primary: true
aliases: []
- name: notebooks
display_name: Cloud AI Platform Notebooks Service Account
api: notebooks.googleapis.com
identity: service-%[email protected]
role: roles/notebooks.serviceAgent
is_primary: true
aliases: []
- name: apigateway-mgmt
display_name: Cloud API Gateway Management Plane Service Account
api: apigateway.googleapis.com
identity: service-%[email protected]
role: roles/apigateway_management.serviceAgent
is_primary: false
aliases: []
- name: apigateway
display_name: Cloud API Gateway Service Account
api: apigateway.googleapis.com
identity: service-%[email protected]
role: roles/apigateway.serviceAgent
is_primary: false
aliases: []
- name: cloudasset
display_name: Cloud Asset Service Agent
api: cloudasset.googleapis.com
identity: service-%[email protected]
role: roles/cloudasset.serviceAgent
is_primary: true
aliases: []
- name: bigtable
display_name: Cloud Bigtable Service Agent
api: bigtableadmin.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: cloudbuild-sa
display_name: Cloud Build Service Agent
api: cloudbuild.googleapis.com
identity: '%[email protected]'
role: roles/cloudbuild.builds.builder
is_primary: false
aliases: []
- name: cloudbuild
display_name: Cloud Build Service Agent
api: cloudbuild.googleapis.com
identity: service-%[email protected]
role: roles/cloudbuild.serviceAgent
is_primary: false
aliases: []
- name: certificatemanager
display_name: Cloud Certificate Manager Service Account
api: certificatemanager.googleapis.com
identity: service-%[email protected]
role: roles/certificatemanager.serviceAgent
is_primary: true
aliases: []
- name: cloudcomposer-accounts
display_name: Cloud Composer Service Agent
api: composer.googleapis.com
identity: service-%[email protected]
role: roles/composer.serviceAgent
is_primary: true
aliases:
- composer
- name: dns
display_name: Cloud DNS Service Account
api: dns.googleapis.com
identity: service-%[email protected]
role: roles/dns.serviceAgent
is_primary: true
aliases: []
- name: datafusion
display_name: Cloud Data Fusion Service Account
api: datafusion.googleapis.com
identity: service-%[email protected]
role: roles/datafusion.serviceAgent
is_primary: true
aliases: []
- name: dlp-api
display_name: Cloud Data Loss Prevention Service Agent
api: dlp.googleapis.com
identity: service-%[email protected]
role: roles/dlp.serviceAgent
is_primary: true
aliases: []
- name: datamigration
display_name: Cloud Database Migration Service Account
api: datamigration.googleapis.com
identity: service-%[email protected]
role: roles/datamigration.serviceAgent
is_primary: true
aliases: []
- name: dataflow-service-producer-prod
display_name: Cloud Dataflow Service Account
api: dataflow.googleapis.com
identity: service-%[email protected]
role: roles/dataflow.serviceAgent
is_primary: true
aliases:
- dataflow
- name: dataplex
display_name: Cloud Dataplex Service Account
api: dataplex.googleapis.com
identity: service-%[email protected]
role: roles/dataplex.serviceAgent
is_primary: true
aliases: []
- name: datastream
display_name: Cloud Datastream Service Account
api: datastream.googleapis.com
identity: service-%[email protected]
role: roles/datastream.serviceAgent
is_primary: true
aliases: []
- name: clouddeploy
display_name: Cloud Deploy Service Account
api: clouddeploy.googleapis.com
identity: service-%[email protected]
role: roles/clouddeploy.serviceAgent
is_primary: true
aliases: []
- name: endpoints
display_name: Cloud Endpoints Service Agent
api: endpoints.googleapis.com
identity: service-%[email protected]
role: roles/endpoints.serviceAgent
is_primary: true
aliases: []
- name: cloud-filer
display_name: Cloud File Storage Service Account
api: file.googleapis.com
identity: service-%[email protected]
role: roles/file.serviceAgent
is_primary: true
aliases: []
- name: firestore
display_name: Cloud Firestore Service Agent
api: firestore.googleapis.com
identity: service-%[email protected]
role: roles/firestore.serviceAgent
is_primary: true
aliases: []
- name: healthcare
display_name: Cloud Healthcare Service Agent
api: healthcare.googleapis.com
identity: service-%[email protected]
role: roles/healthcare.serviceAgent
is_primary: true
aliases: []
- name: identitytoolkit
display_name: Cloud Identity Platform Service Agent
api: identitytoolkit.googleapis.com
identity: service-%[email protected]
role: roles/identitytoolkit.serviceAgent
is_primary: true
aliases: []
- name: cloudkms
display_name: Cloud KMS Service Agent
api: cloudkms.googleapis.com
identity: service-%[email protected]
role: roles/cloudkms.serviceAgent
is_primary: false
aliases: []
- name: lifesciences
display_name: Cloud Life Sciences Service Agent
api: lifesciences.googleapis.com
identity: service-%[email protected]
role: roles/lifesciences.serviceAgent
is_primary: true
aliases: []
- name: logging
display_name: Cloud Logging Service Account
api: logging.googleapis.com
identity: service-%[email protected]
role: roles/logging.serviceAgent
is_primary: false
aliases: []
- name: mi
display_name: Cloud Managed Identities Service Agent
api: managedidentities.googleapis.com
identity: service-%[email protected]
role: roles/managedidentities.serviceAgent
is_primary: true
aliases: []
- name: cloud-memcache-sa
display_name: Cloud Memorystore Memcache Service Agent
api: memcache.googleapis.com
identity: service-%[email protected]
role: roles/memcache.serviceAgent
is_primary: true
aliases: []
- name: cloud-redis
display_name: Cloud Memorystore Redis Service Agent
api: redis.googleapis.com
identity: service-%[email protected]
role: roles/redis.serviceAgent
is_primary: true
aliases: []
- name: migcenter
display_name: Cloud Migration Center Service Account
api: migrationcenter.googleapis.com
identity: service-%[email protected]
role: roles/migrationcenter.serviceAgent
is_primary: true
aliases: []
- name: networkmanagement
display_name: Cloud Network Management Service Account
api: networkmanagement.googleapis.com
identity: service-%[email protected]
role: roles/networkmanagement.serviceAgent
is_primary: true
aliases: []
- name: cloudoptim
display_name: Cloud Optimization Service Agent
api: cloudoptimization.googleapis.com
identity: service-%[email protected]
role: roles/cloudoptimization.serviceAgent
is_primary: true
aliases: []
- name: routeoptim
display_name: Cloud Optimization Service Agent
api: routeoptimization.googleapis.com
identity: service-%[email protected]
role: roles/routeoptimization.serviceAgent
is_primary: true
aliases: []
- name: pubsub
display_name: Cloud Pub/Sub Service Account
api: pubsub.googleapis.com
identity: service-%[email protected]
role: roles/pubsub.serviceAgent
is_primary: true
aliases: []
- name: cloud-sql
display_name: Cloud SQL Service Account
api: sqladmin.googleapis.com
identity: service-%[email protected]
role: roles/cloudsql.serviceAgent
is_primary: true
aliases: []
- name: cloudscheduler
display_name: Cloud Scheduler Service Account
api: cloudscheduler.googleapis.com
identity: service-%[email protected]
role: roles/cloudscheduler.serviceAgent
is_primary: true
aliases: []
- name: scc-notification
display_name: Cloud Security Command Center Notification Service Account
api: securitycenter.googleapis.com
identity: service-%[email protected]
role: roles/securitycenter.notificationServiceAgent
is_primary: false
aliases: []
- name: securitycenter
display_name: Cloud Security Command Center Service Account
api: securitycenter.googleapis.com
identity: service-%[email protected]
role: roles/securitycenter.serviceAgent
is_primary: false
aliases: []
- name: spanner
display_name: Cloud Spanner Production Service Account
api: spanner.googleapis.com
identity: service-%[email protected]
role: roles/spanner.serviceAgent
is_primary: true
aliases: []
- name: firebasestorage
display_name: Cloud Storage for Firebase Service Agent
api: firebasestorage.googleapis.com
identity: service-%[email protected]
role: roles/firebasestorage.serviceAgent
is_primary: true
aliases: []
- name: cloudtasks
display_name: Cloud Tasks Service Account
api: cloudtasks.googleapis.com
identity: service-%[email protected]
role: roles/cloudtasks.serviceAgent
is_primary: true
aliases: []
- name: cloud-trace
display_name: Cloud Trace Service Account
api: cloudtrace.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: translation
display_name: Cloud Translation Service Agent
api: translate.googleapis.com
identity: service-%[email protected]
role: roles/cloudtranslate.serviceAgent
is_primary: true
aliases: []
- name: vmmigration
display_name: Cloud VM Migration Service Account
api: vmmigration.googleapis.com
identity: service-%[email protected]
role: roles/vmmigration.serviceAgent
is_primary: true
aliases: []
- name: websecurityscanner
display_name: Cloud Web Security Scanner Service Agent
api: websecurityscanner.googleapis.com
identity: service-%[email protected]
role: roles/websecurityscanner.serviceAgent
is_primary: true
aliases: []
- name: workflows
display_name: Cloud Workflows Service Agent
api: workflows.googleapis.com
identity: service-%[email protected]
role: roles/workflows.serviceAgent
is_primary: true
aliases: []
- name: compute-system
display_name: Compute Engine Service Agent
api: compute.googleapis.com
identity: service-%[email protected]
role: roles/compute.serviceAgent
is_primary: false
aliases:
- compute
- name: compute-usage
display_name: Compute Usage Export Service Agent
api: compute.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: configdelivery
display_name: Config Delivery Service Account
api: configdelivery.googleapis.com
identity: service-%[email protected]
role: roles/configdelivery.serviceAgent
is_primary: true
aliases: []
- name: connectors
display_name: Connectors Service Account
api: connectors.googleapis.com
identity: service-%[email protected]
role: roles/connectors.serviceAgent
is_primary: true
aliases: []
- name: contactcenterinsights
display_name: Contact Center AI Insights Service Account
api: contactcenterinsights.googleapis.com
identity: service-%[email protected]
role: roles/contactcenterinsights.serviceAgent
is_primary: true
aliases: []
- name: ccinsights-cmek
display_name: Contact Center AI Insights Service Account for CMEK (prod)
api: contactcenterinsights.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: ccaip
display_name: Contact Center AI Platform Service Account
api: contactcenteraiplatform.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: ccai-cmek
display_name: Contact Center AI shared Service Account for CMEK (prod)
api: contactcenterinsights.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: container-analysis
display_name: Container Analysis Service Agent
api: containeranalysis.googleapis.com
identity: service-%[email protected]
role: roles/containeranalysis.ServiceAgent
is_primary: true
aliases: []
- name: containerscanning
display_name: Container Scanning Service Agent
api: containerscanning.googleapis.com
identity: service-%[email protected]
role: roles/containerscanning.ServiceAgent
is_primary: true
aliases: []
- name: ktd-control
display_name: Container Threat Detection Service Agent
api: containerthreatdetection.googleapis.com
identity: service-%[email protected]
role: roles/containerthreatdetection.serviceAgent
is_primary: true
aliases: []
- name: cloud-cw
display_name: Content Warehouse Service Account
api: contentwarehouse.googleapis.com
identity: service-%[email protected]
role: roles/contentwarehouse.serviceAgent
is_primary: true
aliases: []
- name: dataconnectors
display_name: Data Connectors Service Account
api: dataconnectors.googleapis.com
identity: service-%[email protected]
role: roles/dataconnectors.serviceAgent
is_primary: true
aliases: []
- name: datalabeling
display_name: Data Labeling Service Account
api: datalabeling.googleapis.com
identity: service-%[email protected]
role: roles/datalabeling.serviceAgent
is_primary: true
aliases: []
- name: datapipelines
display_name: Data Pipelines Service Agent
api: datapipelines.googleapis.com
identity: service-%[email protected]
role: roles/datapipelines.serviceAgent
is_primary: true
aliases: []
- name: datastudio
display_name: Data Studio Service Account
api: datastudio.googleapis.com
identity: service-%[email protected]
role: roles/datastudio.serviceAgent
is_primary: true
aliases: []
- name: dataform
display_name: Dataform Service Account
api: dataform.googleapis.com
identity: service-%[email protected]
role: roles/dataform.serviceAgent
is_primary: true
aliases: []
- name: metastore
display_name: Dataproc Metastore Service Account
api: metastore.googleapis.com
identity: service-%[email protected]
role: roles/metastore.serviceAgent
is_primary: true
aliases: []
- name: monitoring-deprecated
display_name: Deprecated Monitoring Service Account
api: monitoring.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: devconnect
display_name: Developer Connect Service Account
api: developerconnect.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: dialogflow-cmek
display_name: Dialogflow Service Account for CMEK (prod)
api: dialogflow.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: dialogflow
display_name: Dialogflow Service Agent
api: dialogflow.googleapis.com
identity: service-%[email protected]
role: roles/dialogflow.serviceAgent
is_primary: true
aliases: []
- name: discoveryengine
display_name: Discovery Engine Service Account
api: discoveryengine.googleapis.com
identity: service-%[email protected]
role: roles/discoveryengine.serviceAgent
is_primary: true
aliases: []
- name: cloud-cw-cmek
display_name: Document AI Warehouse CMEK Infra Spanner Service Account
api: contentwarehouse.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: prod-dai-core
display_name: DocumentAI Core Service Agent
api: documentai.googleapis.com
identity: service-%[email protected]
role: roles/documentaicore.serviceAgent
is_primary: true
aliases: []
- name: edgecontainercluster
display_name: Edge Container Cluster Service Agent
api: edgecontainer.googleapis.com
identity: service-%[email protected]
role: roles/edgecontainer.clusterServiceAgent
is_primary: false
aliases: []
- name: edgecontainergcr
display_name: Edge Container GCR Service Agent
api: edgecontainer.googleapis.com
identity: service-%[email protected]
role: null
is_primary: false
aliases: []
- name: edgecontainer
display_name: Edge Container Service Agent
api: edgecontainer.googleapis.com
identity: service-%[email protected]
role: roles/edgecontainer.serviceAgent
is_primary: true
aliases: []
- name: cloud-ekg
display_name: Enterprise Knowledge Graph Service Agent
api: enterpriseknowledgegraph.googleapis.com
identity: service-%[email protected]
role: roles/enterpriseknowledgegraph.serviceAgent
is_primary: true
aliases: []
- name: eventarc
display_name: Eventarc Service Agent
api: eventarc.googleapis.com
identity: service-%[email protected]
role: roles/eventarc.serviceAgent
is_primary: true
aliases: []
- name: ekms
display_name: External Key Management Service Service Account
api: cloudkms.googleapis.com
identity: service-%[email protected]
role: null
is_primary: true
aliases: []
- name: firebaseappcheck
display_name: Firebase App Check Service Account
api: firebaseappcheck.googleapis.com
identity: service-%[email protected]
role: roles/firebaseappcheck.serviceAgent
is_primary: true
aliases: []
- name: firebaseapphosting
display_name: Firebase App Hosting Service Account
api: firebaseapphosting.googleapis.com
identity: service-%[email protected]
role: roles/firebaseapphosting.serviceAgent
is_primary: true
aliases: []
- name: firebasemods
display_name: Firebase Extensions Service Agent
api: firebaseextensions.googleapis.com
identity: service-%[email protected]
role: roles/firebasemods.serviceAgent
is_primary: true
aliases: []
- name: firebaseml
display_name: Firebase Machine Learning Service Account
api: firebaseml.googleapis.com
identity: service-%[email protected]
role: roles/firebaseml.serviceAgent
is_primary: true
aliases: []
- name: firebase
display_name: Firebase Management Service Agent
api: firebase.googleapis.com
identity: service-%[email protected]
role: roles/firebase.managementServiceAgent
is_primary: false
aliases: []
- name: firebasedatabase
display_name: Firebase Realtime Database Service Agent
api: firebasedatabase.googleapis.com
identity: service-%[email protected]
role: roles/firebasedatabase.serviceAgent
is_primary: true
aliases: []
- name: firebase-rules
display_name: Firebase Rules Service Agent
api: firebaserules.googleapis.com
identity: service-%[email protected]
role: roles/firebaserules.system
is_primary: true
aliases: []
- name: firewallinsights
display_name: Firewall Insights Service Account
api: firewallinsights.googleapis.com
identity: service-%[email protected]
role: roles/firewallinsights.serviceAgent
is_primary: true
aliases: []
- name: gsuiteaddons