-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathgeneration_config.yaml
2542 lines (2364 loc) · 112 KB
/
generation_config.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
gapic_generator_version: 2.51.0
googleapis_commitish: 7d0c6bee2517d77635beb2a1dd6d6e7d4d943512
libraries_bom_version: 26.51.0
# the libraries are ordered with respect to library name, which is
# java-{library.library_name} or java-{library.api-shortname} when
# library.library_name is not defined.
libraries:
- api_shortname: accessapproval
name_pretty: Access Approval
product_documentation: https://cloud.google.com/access-approval/docs/
api_description: enables controlling access to your organization's data by Google
personnel.
release_level: stable
GAPICs:
- proto_path: google/cloud/accessapproval/v1
- api_shortname: accesscontextmanager
name_pretty: Identity Access Context Manager
product_documentation: n/a
api_description: n/a
release_level: stable
distribution_name: com.google.cloud:google-identity-accesscontextmanager
GAPICs:
- proto_path: google/identity/accesscontextmanager/v1
- proto_path: google/identity/accesscontextmanager/type
- api_shortname: admanager
name_pretty: Google Ad Manager API
product_documentation: https://developers.google.com/ad-manager/api/beta
api_description: The Ad Manager API enables an app to integrate with Google Ad Manager.
You can read Ad Manager data and run reports using the API.
client_documentation: https://cloud.google.com/java/docs/reference/ad-manager/latest/overview
release_level: preview
distribution_name: com.google.api-ads:ad-manager
api_id: admanager.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.api-ads
cloud_api: false
GAPICs:
- proto_path: google/ads/admanager/v1
requires_billing: true
- api_shortname: advisorynotifications
name_pretty: Advisory Notifications API
product_documentation: https://cloud.google.com/advisory-notifications/
api_description: An API for accessing Advisory Notifications in Google Cloud.
release_level: stable
GAPICs:
- proto_path: google/cloud/advisorynotifications/v1
- api_shortname: aiplatform
name_pretty: Vertex AI
product_documentation: https://cloud.google.com/vertex-ai/docs
api_description: is an integrated suite of machine learning tools and services for
building and using ML models with AutoML or custom code. It offers both novices
and experts the best workbench for the entire machine learning development lifecycle.
release_level: stable
rest_documentation: https://cloud.google.com/vertex-ai/docs/reference/rest
rpc_documentation: https://cloud.google.com/vertex-ai/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/aiplatform/v1
- proto_path: google/cloud/aiplatform/v1beta1
- api_shortname: alloydb
name_pretty: AlloyDB
product_documentation: https://cloud.google.com/alloydb/
api_description: AlloyDB is a fully managed, PostgreSQL-compatible database service
with industry-leading performance, availability, and scale.
rest_documentation: https://cloud.google.com/alloydb/docs/reference/rest
release_level: stable
GAPICs:
- proto_path: google/cloud/alloydb/v1
- proto_path: google/cloud/alloydb/v1alpha
- proto_path: google/cloud/alloydb/v1beta
- api_shortname: alloydb
name_pretty: AlloyDB connectors
product_documentation: https://cloud.google.com/alloydb/docs
api_description: AlloyDB is a fully-managed, PostgreSQL-compatible database for
demanding transactional workloads. It provides enterprise-grade performance and
availability while maintaining 100% compatibility with open-source PostgreSQL.
api_id: connectors.googleapis.com
library_name: alloydb-connectors
rest_documentation: https://cloud.google.com/alloydb/docs/reference/rest
release_level: stable
GAPICs:
- proto_path: google/cloud/alloydb/connectors/v1
- proto_path: google/cloud/alloydb/connectors/v1alpha
- proto_path: google/cloud/alloydb/connectors/v1beta
- api_shortname: analyticsadmin
name_pretty: Analytics Admin
product_documentation: https://developers.google.com/analytics
api_description: allows you to manage Google Analytics accounts and properties.
library_name: analytics-admin
cloud_api: false
distribution_name: com.google.analytics:google-analytics-admin
codeowner_team: '@googleapis/analytics-dpe'
GAPICs:
- proto_path: google/analytics/admin/v1alpha
- proto_path: google/analytics/admin/v1beta
- api_shortname: analyticsdata
name_pretty: Analytics Data
product_documentation: https://developers.google.com/analytics/trusted-testing/analytics-data
api_description: provides programmatic methods to access report data in Google Analytics
App+Web properties.
library_name: analytics-data
api_id: analytics-data.googleapis.com
cloud_api: false
distribution_name: com.google.analytics:google-analytics-data
codeowner_team: '@googleapis/analytics-dpe'
GAPICs:
- proto_path: google/analytics/data/v1alpha
- proto_path: google/analytics/data/v1beta
- api_shortname: analyticshub
name_pretty: Analytics Hub API
product_documentation: https://cloud.google.com/bigquery/TBD
api_description: TBD
release_level: stable
GAPICs:
- proto_path: google/cloud/bigquery/analyticshub/v1
- api_shortname: apigateway
name_pretty: API Gateway
product_documentation: https://cloud.google.com/api-gateway/docs
api_description: enables you to provide secure access to your backend services through
a well-defined REST API that is consistent across all of your services, regardless
of the service implementation. Clients consume your REST APIS to implement standalone
apps for a mobile device or tablet, through apps running in a browser, or through
any other type of app that can make a request to an HTTP endpoint.
library_name: api-gateway
release_level: stable
api_id: apigateway.googleapis.com
rest_documentation: https://cloud.google.com/api-gateway/docs/reference/rest
GAPICs:
- proto_path: google/cloud/apigateway/v1
- api_shortname: apigeeconnect
name_pretty: Apigee Connect
product_documentation: https://cloud.google.com/apigee/docs/hybrid/v1.3/apigee-connect/
api_description: allows the Apigee hybrid management plane to connect securely to
the MART service in the runtime plane without requiring you to expose the MART
endpoint on the internet.
library_name: apigee-connect
release_level: stable
GAPICs:
- proto_path: google/cloud/apigeeconnect/v1
- api_shortname: apigee-registry
name_pretty: Registry API
product_documentation: https://cloud.google.com/apigee/docs/api-hub/get-started-registry-api
api_description: allows teams to upload and share machine-readable descriptions
of APIs that are in use and in development.
api_id: apigeeregistry.googleapis.com
GAPICs:
- proto_path: google/cloud/apigeeregistry/v1
- api_shortname: apihub
name_pretty: API hub API
product_documentation: https://cloud.google.com/apigee/docs/apihub/what-is-api-hub
api_description: API hub lets you consolidate and organize information about all
of the APIs of interest to your organization. API hub lets you capture critical
information about APIs that allows developers to discover and evaluate them
easily and leverage the work of other teams wherever possible. API platform
teams can use API hub to have visibility into and manage their portfolio of APIs.
client_documentation: https://cloud.google.com/java/docs/reference/google-cloud-apihub/latest/overview
release_level: preview
distribution_name: com.google.cloud:google-cloud-apihub
api_id: apihub.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.cloud
cloud_api: true
GAPICs:
- proto_path: google/cloud/apihub/v1
requires_billing: true
- api_shortname: apikeys
name_pretty: API Keys API
product_documentation: https://cloud.google.com/api-keys/
api_description: API Keys lets you create and manage your API keys for your projects.
release_level: stable
GAPICs:
- proto_path: google/api/apikeys/v2
- api_shortname: appengine
name_pretty: App Engine Admin API
product_documentation: https://cloud.google.com/appengine/docs/admin-api/
api_description: you to manage your App Engine applications.
library_name: appengine-admin
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
GAPICs:
- proto_path: google/appengine/v1
- api_shortname: apphub
name_pretty: App Hub API
product_documentation: https://cloud.google.com/app-hub/docs/overview
api_description: App Hub simplifies the process of building, running, and managing
applications on Google Cloud.
rpc_documentation: https://cloud.google.com/app-hub/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/apphub/v1
- api_shortname: area120tables
name_pretty: Area 120 Tables
product_documentation: https://area120.google.com/
api_description: provides programmatic methods to the Area 120 Tables API.
library_name: area120-tables
cloud_api: false
distribution_name: com.google.area120:google-area120-tables
GAPICs:
- proto_path: google/area120/tables/v1alpha1
- api_shortname: artifactregistry
name_pretty: Artifact Registry
product_documentation: https://cloud.google.com/artifact-registry
api_description: provides a single place for your organization to manage container
images and language packages (such as Maven and npm). It is fully integrated with
Google Cloud's tooling and runtimes and comes with support for native artifact
protocols. This makes it simple to integrate it with your CI/CD tooling to set
up automated pipelines.
library_name: artifact-registry
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
rest_documentation: https://cloud.google.com/artifact-registry/docs/reference/rest
rpc_documentation: https://cloud.google.com/artifact-registry/docs/reference/rpc
GAPICs:
- proto_path: google/devtools/artifactregistry/v1
- proto_path: google/devtools/artifactregistry/v1beta2
- api_shortname: cloudasset
name_pretty: Cloud Asset Inventory
product_documentation: https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview
api_description: provides inventory services based on a time series database. This
database keeps a five week history of Google Cloud asset metadata. The Cloud Asset
Inventory export service allows you to export all asset metadata at a certain
timestamp or export event change history during a timeframe.
library_name: asset
release_level: stable
api_reference: https://cloud.google.com/resource-manager/docs/cloud-asset-inventory/overview
issue_tracker: https://issuetracker.google.com/issues/new?component=187210&template=0
GAPICs:
- proto_path: google/cloud/asset/v1
- proto_path: google/cloud/asset/v1p1beta1
- proto_path: google/cloud/asset/v1p2beta1
- proto_path: google/cloud/asset/v1p5beta1
- proto_path: google/cloud/asset/v1p7beta1
- api_shortname: assuredworkloads
name_pretty: Assured Workloads for Government
product_documentation: https://cloud.google.com/assured-workloads/
api_description: allows you to secure your government workloads and accelerate your
path to running compliant workloads on Google Cloud with Assured Workloads for
Government.
library_name: assured-workloads
release_level: stable
rest_documentation: https://cloud.google.com/assured-workloads/docs/reference/rest
GAPICs:
- proto_path: google/cloud/assuredworkloads/v1
- proto_path: google/cloud/assuredworkloads/v1beta1
- api_shortname: automl
name_pretty: Cloud Auto ML
product_documentation: https://cloud.google.com/automl/docs/
api_description: makes the power of machine learning available to you even if you
have limited knowledge of machine learning. You can use AutoML to build on Google's
machine learning capabilities to create your own custom machine learning models
that are tailored to your business needs, and then integrate those models into
your applications and web sites.
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/559744
rest_documentation: https://cloud.google.com/automl/docs/reference/rest
rpc_documentation: https://cloud.google.com/automl/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/automl/v1
- proto_path: google/cloud/automl/v1beta1
- api_shortname: backupdr
name_pretty: Backup and DR Service API
product_documentation: https://cloud.google.com/backup-disaster-recovery/docs/concepts/backup-dr
api_description: 'Backup and DR Service is a powerful, centralized, cloud-first
backup and disaster recovery solution for cloud-based and hybrid workloads. '
client_documentation:
https://cloud.google.com/java/docs/reference/google-cloud-backupdr/latest/overview
release_level: stable
distribution_name: com.google.cloud:google-cloud-backupdr
api_id: backupdr.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.cloud
cloud_api: true
GAPICs:
- proto_path: google/cloud/backupdr/v1
requires_billing: true
- api_shortname: baremetalsolution
name_pretty: Bare Metal Solution
product_documentation: https://cloud.google.com/bare-metal/docs
api_description: Bring your Oracle workloads to Google Cloud with Bare Metal Solution
and jumpstart your cloud journey with minimal risk.
library_name: bare-metal-solution
rest_documentation: https://cloud.google.com/bare-metal/docs/reference/rest
rpc_documentation: https://cloud.google.com/bare-metal/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/baremetalsolution/v2
- api_shortname: batch
name_pretty: Cloud Batch
product_documentation: https://cloud.google.com/
api_description: n/a
GAPICs:
- proto_path: google/cloud/batch/v1
- proto_path: google/cloud/batch/v1alpha
- api_shortname: beyondcorp-appconnections
name_pretty: BeyondCorp AppConnections
product_documentation: https://cloud.google.com/beyondcorp-enterprise/
api_description: is Google's implementation of the zero trust model. It builds upon
a decade of experience at Google, combined with ideas and best practices from
the community. By shifting access controls from the network perimeter to individual
users, BeyondCorp enables secure work from virtually any location without the
need for a traditional VPN.
GAPICs:
- proto_path: google/cloud/beyondcorp/appconnections/v1
- api_shortname: beyondcorp-appconnectors
name_pretty: BeyondCorp AppConnectors
product_documentation: cloud.google.com/beyondcorp-enterprise/
api_description: provides methods to manage (create/read/update/delete) BeyondCorp
AppConnectors.
GAPICs:
- proto_path: google/cloud/beyondcorp/appconnectors/v1
- api_shortname: beyondcorp-appgateways
name_pretty: BeyondCorp AppGateways
product_documentation: https://cloud.google.com/beyondcorp-enterprise/
api_description: A zero trust solution that enables secure access to applications
and resources, and offers integrated threat and data protection.
api_id: beyondcorp.googleapis.com
GAPICs:
- proto_path: google/cloud/beyondcorp/appgateways/v1
- api_shortname: beyondcorp-clientconnectorservices
name_pretty: BeyondCorp ClientConnectorServices
product_documentation: https://cloud.google.com/beyondcorp-enterprise/
api_description: A zero trust solution that enables secure access to applications
and resources, and offers integrated threat and data protection.
api_id: beyondcorp.googleapis.com
GAPICs:
- proto_path: google/cloud/beyondcorp/clientconnectorservices/v1
- api_shortname: beyondcorp-clientgateways
name_pretty: BeyondCorp ClientGateways
product_documentation: https://cloud.google.com/beyondcorp-enterprise/
api_description: A zero trust solution that enables secure access to applications
and resources, and offers integrated threat and data protection.
api_id: beyondcorp.googleapis.com
GAPICs:
- proto_path: google/cloud/beyondcorp/clientgateways/v1
- api_shortname: biglake
name_pretty: BigLake
product_documentation: https://cloud.google.com/biglake
api_description: The BigLake API provides access to BigLake Metastore, a serverless,
fully managed, and highly available metastore for open-source data that can be
used for querying Apache Iceberg tables in BigQuery.
GAPICs:
- proto_path: google/cloud/bigquery/biglake/v1
- proto_path: google/cloud/bigquery/biglake/v1alpha1
- api_shortname: analyticshub
name_pretty: Analytics Hub
product_documentation: https://cloud.google.com/analytics-hub
api_description: is a data exchange that allows you to efficiently and securely
exchange data assets across organizations to address challenges of data reliability
and cost.
library_name: bigquery-data-exchange
GAPICs:
- proto_path: google/cloud/bigquery/dataexchange/v1beta1
- api_shortname: bigqueryconnection
name_pretty: Cloud BigQuery Connection
product_documentation: https://cloud.google.com/bigquery/docs/reference/bigqueryconnection/rest
api_description: allows users to manage BigQuery connections to external data sources.
release_level: stable
client_documentation:
https://cloud.google.com/bigquery/docs/reference/reservations/rpc/google.cloud.bigquery.reservation.v1beta1
GAPICs:
- proto_path: google/cloud/bigquery/connection/v1
- proto_path: google/cloud/bigquery/connection/v1beta1
- api_shortname: bigquerydatapolicy
name_pretty: BigQuery DataPolicy API
product_documentation: https://cloud.google.com/bigquery/docs/reference/datapolicy/
api_description: ''
GAPICs:
- proto_path: google/cloud/bigquery/datapolicies/v1
- proto_path: google/cloud/bigquery/datapolicies/v1beta1
- api_shortname: bigquerydatatransfer
name_pretty: BigQuery Data Transfer Service
product_documentation: https://cloud.google.com/bigquery/transfer/
api_description: transfers data from partner SaaS applications to Google BigQuery
on a scheduled, managed basis.
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/559654
GAPICs:
- proto_path: google/cloud/bigquery/datatransfer/v1
- api_shortname: bigquerymigration
name_pretty: BigQuery Migration
product_documentation: https://cloud.google.com/bigquery/docs
api_description: BigQuery Migration API
rest_documentation: https://cloud.google.com/bigquery/docs/reference/rest
GAPICs:
- proto_path: google/cloud/bigquery/migration/v2
- proto_path: google/cloud/bigquery/migration/v2alpha
- api_shortname: bigqueryreservation
name_pretty: Cloud BigQuery Reservation
product_documentation: https://cloud.google.com/bigquery/docs/reference/reservations/rpc
api_description: allows users to manage their flat-rate BigQuery reservations.
release_level: stable
GAPICs:
- proto_path: google/cloud/bigquery/reservation/v1
- api_shortname: cloudbilling
name_pretty: Cloud Billing
product_documentation: https://cloud.google.com/billing/docs
api_description: allows developers to manage their billing accounts or browse the
catalog of SKUs and pricing.
library_name: billing
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/559770
rest_documentation: https://cloud.google.com/billing/docs/reference/rest
rpc_documentation: https://cloud.google.com/billing/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/billing/v1
- api_shortname: billingbudgets
name_pretty: Cloud Billing Budgets
product_documentation: https://cloud.google.com/billing/docs/how-to/budgets
api_description: allows you to avoid surprises on your bill by creating budgets
to monitor all your Google Cloud charges in one place.
release_level: stable
GAPICs:
- proto_path: google/cloud/billing/budgets/v1
- proto_path: google/cloud/billing/budgets/v1beta1
- api_shortname: binaryauthorization
name_pretty: Binary Authorization
product_documentation: https://cloud.google.com/binary-authorization/docs
api_description: ' is a service on Google Cloud that provides centralized software
supply-chain security for applications that run on Google Kubernetes Engine (GKE)
and Anthos clusters on VMware'
library_name: binary-authorization
release_level: stable
api_id: binaryauthorization.googleapis.com
codeowner_team: '@googleapis/aap-dpes'
rest_documentation: https://cloud.google.com/binary-authorization/docs/reference/rest
rpc_documentation: https://cloud.google.com/binary-authorization/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/binaryauthorization/v1
- proto_path: google/cloud/binaryauthorization/v1beta1
- api_shortname: certificatemanager
name_pretty: Certificate Manager
product_documentation: https://cloud.google.com/certificate-manager/docs
api_description: lets you acquire and manage TLS (SSL) certificates for use with
Cloud Load Balancing.
library_name: certificate-manager
api_id: certificatemanager.googleapis.com
GAPICs:
- proto_path: google/cloud/certificatemanager/v1
- api_shortname: cloudchannel
name_pretty: Channel Services
product_documentation: https://cloud.google.com/channel/docs
api_description: With Channel Services, Google Cloud partners and resellers have
a single unified resale platform, with a unified resale catalog, customer management,
order management, billing management, policy and authorization management, and
cost management.
library_name: channel
release_level: stable
rest_documentation: https://cloud.google.com/channel/docs/reference/rest
rpc_documentation: https://cloud.google.com/channel/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/channel/v1
- api_shortname: chat
name_pretty: Google Chat API
product_documentation: https://developers.google.com/chat/concepts
api_description: The Google Chat API lets you build Chat apps to integrate your
services with Google Chat and manage Chat resources such as spaces, members, and
messages.
rest_documentation: https://developers.google.com/chat/api/reference/rest
GAPICs:
- proto_path: google/chat/v1
- api_shortname: cloudbuild
name_pretty: Cloud Build
product_documentation: https://cloud.google.com/cloud-build/
api_description: lets you build software quickly across all languages. Get complete
control over defining custom workflows for building, testing, and deploying across
multiple environments such as VMs, serverless, Kubernetes, or Firebase.
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
distribution_name: com.google.cloud:google-cloud-build
issue_tracker: https://issuetracker.google.com/savedsearches/5226584
GAPICs:
- proto_path: google/devtools/cloudbuild/v1
- proto_path: google/devtools/cloudbuild/v2
- api_shortname: cloudcommerceconsumerprocurement
name_pretty: Cloud Commerce Consumer Procurement
product_documentation: https://cloud.google.com/marketplace/
api_description: Find top solutions integrated with Google Cloud to accelerate your
digital transformation. Scale and simplify procurement for your organization with
online discovery, flexible purchasing, and fulfillment of enterprise-grade cloud
solutions.
GAPICs:
- proto_path: google/cloud/commerce/consumer/procurement/v1
- proto_path: google/cloud/commerce/consumer/procurement/v1alpha1
- api_shortname: cloudcontrolspartner
name_pretty: Cloud Controls Partner API
product_documentation: https://cloud.google.com/sovereign-controls-by-partners/docs/sovereign-partners
api_description: Provides insights about your customers and their Assured Workloads
based on your Sovereign Controls by Partners offering.
release_level: stable
GAPICs:
- proto_path: google/cloud/cloudcontrolspartner/v1
- proto_path: google/cloud/cloudcontrolspartner/v1beta
- api_shortname: cloudquotas
name_pretty: Cloud Quotas API
product_documentation: https://cloud.google.com/cloudquotas/docs/
api_description: "Cloud Quotas API provides GCP service consumers with management
and\n observability for resource usage, quotas, and restrictions of the services\n\
\ they consume."
release_level: stable
GAPICs:
- proto_path: google/api/cloudquotas/v1
- api_shortname: cloudsupport
name_pretty: Google Cloud Support API
product_documentation: https://cloud.google.com/support/docs/reference/support-api/
api_description: Manages Google Cloud technical support cases for Customer Care
support offerings.
GAPICs:
- proto_path: google/cloud/support/v2
- api_shortname: compute
name_pretty: Compute Engine
product_documentation: https://cloud.google.com/compute/
api_description: "delivers virtual machines running in Google's innovative data
centers and worldwide fiber network. Compute Engine's tooling and workflow support
enable scaling from single instances to global, load-balanced cloud computing.
Compute Engine's VMs boot quickly, come with persistent disk storage, deliver
consistent performance and are available in many configurations. "
release_level: stable
excluded_poms: grpc-google-cloud-compute-v1
excluded_dependencies: grpc-google-cloud-compute-v1
GAPICs:
- proto_path: google/cloud/compute/v1
- api_shortname: confidentialcomputing
name_pretty: Confidential Computing API
product_documentation: https://cloud.google.com/confidential-computing/
api_description: Protect data in-use with Confidential VMs, Confidential GKE, Confidential
Dataproc, and Confidential Space.
GAPICs:
- proto_path: google/cloud/confidentialcomputing/v1
- proto_path: google/cloud/confidentialcomputing/v1alpha1
- api_shortname: connectgateway
name_pretty: Connect Gateway API
product_documentation:
https://cloud.google.com/kubernetes-engine/enterprise/multicluster-management/gateway
api_description: The Connect Gateway service allows connectivity from external parties
to connected Kubernetes clusters.
client_documentation:
https://cloud.google.com/java/docs/reference/google-cloud-connectgateway/latest/overview
release_level: preview
distribution_name: com.google.cloud:google-cloud-connectgateway
api_id: connectgateway.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.cloud
cloud_api: true
GAPICs:
- proto_path: google/cloud/gkeconnect/gateway/v1
requires_billing: true
- api_shortname: contactcenterinsights
name_pretty: CCAI Insights
product_documentation: https://cloud.google.com/dialogflow/priv/docs/insights/
api_description: ' helps users detect and visualize patterns in their contact center
data.'
library_name: contact-center-insights
release_level: stable
codeowner_team: '@googleapis/api-contact-center-insights'
GAPICs:
- proto_path: google/cloud/contactcenterinsights/v1
- api_shortname: container
name_pretty: Kubernetes Engine
product_documentation: https://cloud.google.com/kubernetes-engine/
api_description: is an enterprise-grade platform for containerized applications,
including stateful and stateless, AI and ML, Linux and Windows, complex and simple
web apps, API, and backend services. Leverage industry-first features like four-way
auto-scaling and no-stress management. Optimize GPU and TPU provisioning, use
integrated developer tools, and get multi-cluster support from SREs.
release_level: stable
codeowner_team: '@googleapis/yoshi-java'
issue_tracker: https://issuetracker.google.com/savedsearches/559777
rest_documentation: https://cloud.google.com/kubernetes-engine/docs/reference/rest
GAPICs:
- proto_path: google/container/v1
- proto_path: google/container/v1beta1
- api_shortname: containeranalysis
name_pretty: Cloud Container Analysis
product_documentation: https://cloud.google.com/container-registry/docs/container-analysis
api_description: is a service that provides vulnerability scanning and metadata
storage for software artifacts. The service performs vulnerability scans on built
software artifacts, such as the images in Container Registry, then stores the
resulting metadata and makes it available for consumption through an API. The
metadata may come from several sources, including vulnerability scanning, other
Cloud services, and third-party providers.
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
issue_tracker: https://issuetracker.google.com/savedsearches/559777
GAPICs:
- proto_path: google/devtools/containeranalysis/v1
- proto_path: google/devtools/containeranalysis/v1beta1
- api_shortname: contentwarehouse
name_pretty: Document AI Warehouse
product_documentation: https://cloud.google.com/document-warehouse/docs/overview
api_description: Document AI Warehouse is an integrated cloud-native GCP platform
to store, search, organize, govern and analyze documents and their structured
metadata.
GAPICs:
- proto_path: google/cloud/contentwarehouse/v1
- api_shortname: datafusion
name_pretty: Cloud Data Fusion
product_documentation: https://cloud.google.com/data-fusion/docs
api_description: is a fully managed, cloud-native, enterprise data integration service
for quickly building and managing data pipelines.
library_name: data-fusion
release_level: stable
rest_documentation: https://cloud.google.com/data-fusion/docs/reference/rest
GAPICs:
- proto_path: google/cloud/datafusion/v1
- proto_path: google/cloud/datafusion/v1beta1
- api_shortname: datacatalog
name_pretty: Data Catalog
product_documentation: https://cloud.google.com/data-catalog
api_description: is a fully managed and highly scalable data discovery and metadata
management service.
release_level: stable
issue_tracker: ''
GAPICs:
- proto_path: google/cloud/datacatalog/v1
- proto_path: google/cloud/datacatalog/v1beta1
- api_shortname: dataflow
name_pretty: Dataflow
product_documentation: https://cloud.google.com/dataflow/docs
api_description: is a managed service for executing a wide variety of data processing
patterns.
rest_documentation: https://cloud.google.com/dataflow/docs/reference/rest
rpc_documentation: https://cloud.google.com/dataflow/docs/reference/rpc
GAPICs:
- proto_path: google/dataflow/v1beta3
- api_shortname: dataform
name_pretty: Cloud Dataform
product_documentation: https://cloud.google.com/dataform/docs
api_description: Help analytics teams manage data inside BigQuery using SQL.
GAPICs:
- proto_path: google/cloud/dataform/v1alpha2
- proto_path: google/cloud/dataform/v1beta1
- api_shortname: datalabeling
name_pretty: Data Labeling
product_documentation: https://cloud.google.com/ai-platform/data-labeling/docs/
api_description: is a service that lets you work with human labelers to generate
highly accurate labels for a collection of data that you can use to train your
machine learning models.
issue_tracker: ''
rest_documentation: https://cloud.google.com/ai-platform/data-labeling/docs/reference/rest
rpc_documentation: https://cloud.google.com/ai-platform/data-labeling/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/datalabeling/v1beta1
- api_shortname: datalineage
name_pretty: Data Lineage
product_documentation: https://cloud.google.com/data-catalog/docs/data-lineage/
api_description: Lineage is used to track data flows between assets over time.
release_level: stable
GAPICs:
- proto_path: google/cloud/datacatalog/lineage/v1
- api_shortname: dataplex
name_pretty: Cloud Dataplex
product_documentation: https://cloud.google.com/dataplex
api_description: provides intelligent data fabric that enables organizations to
centrally manage, monitor, and govern their data across data lakes, data warehouses,
and data marts with consistent controls, providing access to trusted data and
powering analytics at scale.
release_level: stable
rest_documentation: https://cloud.google.com/dataplex/docs/reference/rest
rpc_documentation: https://cloud.google.com/dataplex/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/dataplex/v1
- api_shortname: dataproc
name_pretty: Dataproc
product_documentation: https://cloud.google.com/dataproc
api_description: is a faster, easier, more cost-effective way to run Apache Spark
and Apache Hadoop.
release_level: stable
codeowner_team: '@googleapis/api-dataproc'
issue_tracker: https://issuetracker.google.com/savedsearches/559745
rest_documentation: https://cloud.google.com/dataproc/docs/reference/rest
rpc_documentation: https://cloud.google.com/dataproc/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/dataproc/v1
- api_shortname: metastore
name_pretty: Dataproc Metastore
product_documentation: https://cloud.google.com/dataproc-metastore/docs
api_description: is a fully managed, highly available, autoscaled, autohealing,
OSS-native metastore service that greatly simplifies technical metadata management.
Dataproc Metastore service is based on Apache Hive metastore and serves as a critical
component towards enterprise data lakes.
library_name: dataproc-metastore
release_level: stable
rest_documentation: https://cloud.google.com/dataproc-metastore/docs/reference/rest
rpc_documentation: https://cloud.google.com/dataproc-metastore/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/metastore/v1
- proto_path: google/cloud/metastore/v1alpha
- proto_path: google/cloud/metastore/v1beta
- api_shortname: datastream
name_pretty: Datastream
product_documentation: https://cloud.google.com/datastream/docs
api_description: is a serverless and easy-to-use change data capture (CDC) and replication
service. It allows you to synchronize data across heterogeneous databases and
applications reliably, and with minimal latency and downtime.
release_level: stable
rest_documentation: https://cloud.google.com/datastream/docs/reference/rest
GAPICs:
- proto_path: google/cloud/datastream/v1
- proto_path: google/cloud/datastream/v1alpha1
- api_shortname: clouddebugger
name_pretty: Cloud Debugger
product_documentation: https://cloud.google.com/debugger/docs
api_description: is a feature of Google Cloud Platform that lets you inspect the
state of an application, at any code location, without stopping or slowing down
the running app. Cloud Debugger makes it easier to view the application state
without adding logging statements.
library_name: debugger-client
release_level: stable
GAPICs:
- proto_path: google/devtools/clouddebugger/v2
- api_shortname: clouddeploy
name_pretty: Google Cloud Deploy
product_documentation: https://cloud.google.com/deploy/docs
api_description: is a service that automates delivery of your applications to a
series of target environments in a defined sequence
library_name: deploy
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
GAPICs:
- proto_path: google/cloud/deploy/v1
- api_shortname: developerconnect
name_pretty: Developer Connect API
product_documentation: https://cloud.google.com/developer-connect/docs/overview
api_description: Connect third-party source code management to Google
client_documentation:
https://cloud.google.com/java/docs/reference/google-cloud-developerconnect/latest/overview
release_level: preview
distribution_name: com.google.cloud:google-cloud-developerconnect
api_id: developerconnect.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.cloud
cloud_api: true
GAPICs:
- proto_path: google/cloud/developerconnect/v1
requires_billing: true
- api_shortname: dialogflow
name_pretty: Dialogflow API
product_documentation: https://cloud.google.com/dialogflow-enterprise/
api_description: is an end-to-end, build-once deploy-everywhere development suite
for creating conversational interfaces for websites, mobile applications, popular
messaging platforms, and IoT devices. You can use it to build interfaces (such
as chatbots and conversational IVR) that enable natural and rich interactions
between your users and your business. Dialogflow Enterprise Edition users have
access to Google Cloud Support and a service level agreement (SLA) for production
deployments.
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/5300385
GAPICs:
- proto_path: google/cloud/dialogflow/v2
- proto_path: google/cloud/dialogflow/v2beta1
- api_shortname: dialogflow-cx
name_pretty: Dialogflow CX
product_documentation: https://cloud.google.com/dialogflow/cx/docs
api_description: provides a new way of designing agents, taking a state machine
approach to agent design. This gives you clear and explicit control over a conversation,
a better end-user experience, and a better development workflow.
rest_documentation: https://cloud.google.com/dialogflow/cx/docs/reference/rest
rpc_documentation: https://cloud.google.com/dialogflow/cx/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/dialogflow/cx/v3
- proto_path: google/cloud/dialogflow/cx/v3beta1
- api_shortname: discoveryengine
name_pretty: Discovery Engine API
product_documentation: https://cloud.google.com/discovery-engine/media/docs
api_description: A Cloud API that offers search and recommendation discoverability
for documents from different industry verticals (e.g. media, retail, etc.).
release_level: stable
GAPICs:
- proto_path: google/cloud/discoveryengine/v1
- proto_path: google/cloud/discoveryengine/v1alpha
- proto_path: google/cloud/discoveryengine/v1beta
- api_shortname: distributedcloudedge
name_pretty: Google Distributed Cloud Edge
product_documentation: https://cloud.google.com/distributed-cloud/edge/latest/
api_description: Google Distributed Cloud Edge allows you to run Kubernetes clusters
on dedicated hardware provided and maintained by Google that is separate from
the Google Cloud data center.
api_id: edgecontainer.googleapis.com
library_name: distributedcloudedge
release_level: stable
GAPICs:
- proto_path: google/cloud/edgecontainer/v1
- api_shortname: dlp
name_pretty: Cloud Data Loss Prevention
product_documentation: https://cloud.google.com/dlp/docs/
api_description: provides programmatic access to a powerful detection engine for
personally identifiable information and other privacy-sensitive data in unstructured
data streams, like text blocks and images.
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/5548083
rest_documentation: https://cloud.google.com/dlp/docs/reference/rest
rpc_documentation: https://cloud.google.com/dlp/docs/reference/rpc
GAPICs:
- proto_path: google/privacy/dlp/v2
- api_shortname: datamigration
name_pretty: Database Migration Service
product_documentation: https://cloud.google.com/database-migration/docs
api_description: makes it easier for you to migrate your data to Google Cloud. This
service helps you lift and shift your MySQL and PostgreSQL workloads into Cloud
SQL.
library_name: dms
release_level: stable
api_id: datamigration.googleapis.com
rest_documentation: https://cloud.google.com/database-migration/docs/reference/rest
GAPICs:
- proto_path: google/cloud/clouddms/v1
- api_shortname: documentai
name_pretty: Document AI
product_documentation: https://cloud.google.com/compute/docs/documentai/
api_description: allows developers to unlock insights from your documents with machine
learning.
library_name: document-ai
release_level: stable
issue_tracker: https://issuetracker.google.com/savedsearches/559755
GAPICs:
- proto_path: google/cloud/documentai/v1
- proto_path: google/cloud/documentai/v1beta3
- api_shortname: domains
name_pretty: Cloud Domains
product_documentation: https://cloud.google.com/domains
api_description: allows you to register and manage domains by using Cloud Domains.
release_level: stable
GAPICs:
- proto_path: google/cloud/domains/v1
- proto_path: google/cloud/domains/v1alpha2
- proto_path: google/cloud/domains/v1beta1
- api_shortname: edgenetwork
name_pretty: Distributed Cloud Edge Network API
product_documentation: https://cloud.google.com/distributed-cloud/edge/latest/docs/overview
api_description: Network management API for Distributed Cloud Edge.
release_level: stable
GAPICs:
- proto_path: google/cloud/edgenetwork/v1
- api_shortname: enterpriseknowledgegraph
name_pretty: Enterprise Knowledge Graph
product_documentation: https://cloud.google.com/enterprise-knowledge-graph/docs/overview
api_description: Enterprise Knowledge Graph organizes siloed information into organizational
knowledge, which involves consolidating, standardizing, and reconciling data in
an efficient and useful way.
GAPICs:
- proto_path: google/cloud/enterpriseknowledgegraph/v1
- api_shortname: clouderrorreporting
name_pretty: Error Reporting
product_documentation: https://cloud.google.com/error-reporting
api_description: 'counts, analyzes, and aggregates the crashes in your running cloud
services. A centralized error management interface displays the results with sorting
and filtering capabilities. A dedicated view shows the error details: time chart,
occurrences, affected user count, first- and last-seen dates and a cleaned exception
stack trace. Opt in to receive email and mobile alerts on new errors.'
library_name: errorreporting
codeowner_team: '@googleapis/api-logging'
issue_tracker: https://issuetracker.google.com/savedsearches/559780
requires_billing: false
GAPICs:
- proto_path: google/devtools/clouderrorreporting/v1beta1
- api_shortname: essentialcontacts
name_pretty: Essential Contacts API
product_documentation: https://cloud.google.com/resource-manager/docs/managing-notification-contacts/
api_description: helps you customize who receives notifications by providing your
own list of contacts in many Google Cloud services.
library_name: essential-contacts
release_level: stable
GAPICs:
- proto_path: google/cloud/essentialcontacts/v1
- api_shortname: eventarc
name_pretty: Eventarc
product_documentation: https://cloud.google.com/eventarc/docs
api_description: lets you asynchronously deliver events from Google services, SaaS,
and your own apps using loosely coupled services that react to state changes.
Eventarc requires no infrastructure management, you can optimize productivity
and costs while building a modern, event-driven solution.
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
rest_documentation: https://cloud.google.com/eventarc/docs/reference/rest
rpc_documentation: https://cloud.google.com/eventarc/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/eventarc/v1
- api_shortname: eventarcpublishing
name_pretty: Eventarc Publishing
product_documentation: https://cloud.google.com/eventarc/docs
api_description: lets you asynchronously deliver events from Google services, SaaS,
and your own apps using loosely coupled services that react to state changes.
library_name: eventarc-publishing
api_id: eventarc-publishing.googleapis.com
rest_documentation: https://cloud.google.com/eventarc/docs/reference/rest
rpc_documentation: https://cloud.google.com/eventarc/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/eventarc/publishing/v1
- api_shortname: file
name_pretty: Cloud Filestore API
product_documentation: https://cloud.google.com/filestore/docs
api_description: instances are fully managed NFS file servers on Google Cloud for
use with applications running on Compute Engine virtual machines (VMs) instances
or Google Kubernetes Engine clusters.
library_name: filestore
release_level: stable
rest_documentation: https://cloud.google.com/filestore/docs/reference/rest
GAPICs:
- proto_path: google/cloud/filestore/v1
- proto_path: google/cloud/filestore/v1beta1
- api_shortname: cloudfunctions
name_pretty: Cloud Functions
product_documentation: https://cloud.google.com/functions
api_description: is a scalable pay as you go Functions-as-a-Service (FaaS) to run
your code with zero server management.
library_name: functions
release_level: stable
codeowner_team: '@googleapis/aap-dpes'
rest_documentation: https://cloud.google.com/functions/docs/reference/rest
rpc_documentation: https://cloud.google.com/functions/docs/reference/rpc
GAPICs:
- proto_path: google/cloud/functions/v1
- proto_path: google/cloud/functions/v2
- proto_path: google/cloud/functions/v2alpha
- proto_path: google/cloud/functions/v2beta
- api_shortname: gdchardwaremanagement
name_pretty: GDC Hardware Management API
product_documentation: https://cloud.google.com/distributed-cloud/edge/latest/docs
api_description: Google Distributed Cloud connected allows you to run Kubernetes
clusters on dedicated hardware provided and maintained by Google that is separate
from the Google Cloud data center.
client_documentation: