-
Notifications
You must be signed in to change notification settings - Fork 439
/
.repo-metadata-full.json
1555 lines (1555 loc) · 64.5 KB
/
.repo-metadata-full.json
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
{
"AccessApproval": {
"language": "php",
"distribution_name": "google/cloud-access-approval",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-access-approval/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "accessapproval"
},
"AccessContextManager": {
"language": "php",
"distribution_name": "google/access-context-manager",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/access-context-manager/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "accesscontextmanager"
},
"AdvisoryNotifications": {
"language": "php",
"distribution_name": "google/cloud-advisorynotifications",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-advisorynotifications/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "advisorynotifications"
},
"AiPlatform": {
"language": "php",
"distribution_name": "google/cloud-ai-platform",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-ai-platform/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "aiplatform"
},
"AlloyDb": {
"language": "php",
"distribution_name": "google/cloud-alloydb",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-alloydb/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "alloydb"
},
"AnalyticsAdmin": {
"language": "php",
"distribution_name": "google/analytics-admin",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/analytics-admin/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "analyticsadmin"
},
"AnalyticsData": {
"language": "php",
"distribution_name": "google/analytics-data",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/analytics-data/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "analyticsdata"
},
"ApiGateway": {
"language": "php",
"distribution_name": "google/cloud-api-gateway",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-api-gateway/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "apigateway"
},
"ApiKeys": {
"language": "php",
"distribution_name": "google/cloud-api-keys",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-api-keys/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/api-keys/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "apikeys"
},
"ApigeeConnect": {
"language": "php",
"distribution_name": "google/cloud-apigee-connect",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-apigee-connect/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "apigeeconnect"
},
"ApigeeRegistry": {
"language": "php",
"distribution_name": "google/cloud-apigee-registry",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-apigee-registry/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "apigeeregistry"
},
"AppEngineAdmin": {
"language": "php",
"distribution_name": "google/cloud-appengine-admin",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-appengine-admin/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "appengine"
},
"AppHub": {
"language": "php",
"distribution_name": "google/cloud-apphub",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-apphub/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "apphub"
},
"AppsChat": {
"language": "php",
"distribution_name": "google/apps-chat",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/apps-chat/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "chat"
},
"AppsEventsSubscriptions": {
"language": "php",
"distribution_name": "google/apps-events-subscriptions",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/apps-events-subscriptions/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "workspaceevents"
},
"AppsMeet": {
"language": "php",
"distribution_name": "google/apps-meet",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/apps-meet/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "meet"
},
"ArtifactRegistry": {
"language": "php",
"distribution_name": "google/cloud-artifact-registry",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-artifact-registry/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "artifactregistry"
},
"Asset": {
"language": "php",
"distribution_name": "google/cloud-asset",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-asset/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudasset"
},
"AssuredWorkloads": {
"language": "php",
"distribution_name": "google/cloud-assured-workloads",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-assured-workloads/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "assuredworkloads"
},
"AutoMl": {
"language": "php",
"distribution_name": "google/cloud-automl",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-automl/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "automl"
},
"BackupDr": {
"language": "php",
"distribution_name": "google/cloud-backupdr",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-backupdr/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "backupdr"
},
"BareMetalSolution": {
"language": "php",
"distribution_name": "google/cloud-bare-metal-solution",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bare-metal-solution/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "baremetalsolution"
},
"Batch": {
"language": "php",
"distribution_name": "google/cloud-batch",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-batch/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/batch/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "batch"
},
"BeyondCorpAppConnections": {
"language": "php",
"distribution_name": "google/cloud-beyondcorp-appconnections",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-beyondcorp-appconnections/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/beyondcorp-enterprise/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "beyondcorp"
},
"BeyondCorpAppConnectors": {
"language": "php",
"distribution_name": "google/cloud-beyondcorp-appconnectors",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-beyondcorp-appconnectors/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "beyondcorp"
},
"BeyondCorpAppGateways": {
"language": "php",
"distribution_name": "google/cloud-beyondcorp-appgateways",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-beyondcorp-appgateways/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "beyondcorp"
},
"BeyondCorpClientConnectorServices": {
"language": "php",
"distribution_name": "google/cloud-beyondcorp-clientconnectorservices",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-beyondcorp-clientconnectorservices/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "beyondcorp"
},
"BeyondCorpClientGateways": {
"language": "php",
"distribution_name": "google/cloud-beyondcorp-clientgateways",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-beyondcorp-clientgateways/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "beyondcorp"
},
"BigQuery": {
"language": "php",
"distribution_name": "google/cloud-bigquery",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery/latest",
"library_type": "GAPIC_MANUAL",
"api_shortname": "bigquery"
},
"BigQueryAnalyticsHub": {
"language": "php",
"distribution_name": "google/cloud-bigquery-analyticshub",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-analyticshub/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/analytics-hub",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "analyticshub"
},
"BigQueryConnection": {
"language": "php",
"distribution_name": "google/cloud-bigquery-connection",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-connection/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "bigqueryconnection"
},
"BigQueryDataExchange": {
"language": "php",
"distribution_name": "google/cloud-bigquery-data-exchange",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-data-exchange/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "analyticshub"
},
"BigQueryDataPolicies": {
"language": "php",
"distribution_name": "google/cloud-bigquery-datapolicies",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-datapolicies/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/bigquery/docs/reference/bigquerydatapolicy/rest",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "bigquerydatapolicy"
},
"BigQueryDataTransfer": {
"language": "php",
"distribution_name": "google/cloud-bigquerydatatransfer",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquerydatatransfer/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "bigquerydatatransfer"
},
"BigQueryMigration": {
"language": "php",
"distribution_name": "google/cloud-bigquery-migration",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-migration/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/bigquery/docs/migration-intro/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "bigquerymigration"
},
"BigQueryReservation": {
"language": "php",
"distribution_name": "google/cloud-bigquery-reservation",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-reservation/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "bigqueryreservation"
},
"BigQueryStorage": {
"language": "php",
"distribution_name": "google/cloud-bigquery-storage",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigquery-storage/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "bigquerystorage"
},
"Bigtable": {
"language": "php",
"distribution_name": "google/cloud-bigtable",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-bigtable/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "bigtable"
},
"Billing": {
"language": "php",
"distribution_name": "google/cloud-billing",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-billing/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudbilling"
},
"BillingBudgets": {
"language": "php",
"distribution_name": "google/cloud-billing-budgets",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-billing-budgets/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "billingbudgets"
},
"BinaryAuthorization": {
"language": "php",
"distribution_name": "google/cloud-binary-authorization",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-binary-authorization/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "binaryauthorization"
},
"Build": {
"language": "php",
"distribution_name": "google/cloud-build",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-build/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudbuild"
},
"CertificateManager": {
"language": "php",
"distribution_name": "google/cloud-certificate-manager",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-certificate-manager/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "certificatemanager"
},
"Channel": {
"language": "php",
"distribution_name": "google/cloud-channel",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-channel/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudchannel"
},
"CommerceConsumerProcurement": {
"language": "php",
"distribution_name": "google/cloud-commerce-consumer-procurement",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-commerce-consumer-procurement/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudcommerceconsumerprocurement"
},
"CommonProtos": {
"language": "php",
"distribution_name": "google/cloud-common-protos",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-common-protos/latest",
"library_type": "CORE"
},
"Compute": {
"language": "php",
"distribution_name": "google/cloud-compute",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-compute/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "compute"
},
"ConfidentialComputing": {
"language": "php",
"distribution_name": "google/cloud-confidentialcomputing",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-confidentialcomputing/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "confidentialcomputing"
},
"Config": {
"language": "php",
"distribution_name": "google/cloud-config",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-config/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "config"
},
"ContactCenterInsights": {
"language": "php",
"distribution_name": "google/cloud-contact-center-insights",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-contact-center-insights/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "contactcenterinsights"
},
"Container": {
"language": "php",
"distribution_name": "google/cloud-container",
"release_level": "stable",
"codeowner_team": "@googleapis/cicd",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-container/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "container"
},
"ContainerAnalysis": {
"language": "php",
"distribution_name": "google/cloud-container-analysis",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-container-analysis/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "containeranalysis"
},
"ControlsPartner": {
"language": "php",
"distribution_name": "google/cloud-cloudcontrolspartner",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-cloudcontrolspartner/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudcontrolspartner"
},
"Core": {
"language": "php",
"distribution_name": "google/cloud-core",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-core/latest",
"library_type": "CORE",
"api_shortname": ""
},
"DataCatalog": {
"language": "php",
"distribution_name": "google/cloud-data-catalog",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-data-catalog/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datacatalog"
},
"DataCatalogLineage": {
"language": "php",
"distribution_name": "google/cloud-datacatalog-lineage",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-datacatalog-lineage/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datalineage"
},
"DataFusion": {
"language": "php",
"distribution_name": "google/cloud-data-fusion",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-data-fusion/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datafusion"
},
"DataLabeling": {
"language": "php",
"distribution_name": "google/cloud-datalabeling",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-datalabeling/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datalabeling"
},
"Dataflow": {
"language": "php",
"distribution_name": "google/cloud-dataflow",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dataflow/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dataflow"
},
"Dataform": {
"language": "php",
"distribution_name": "google/cloud-dataform",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dataform/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/dataform/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "dataform"
},
"Dataplex": {
"language": "php",
"distribution_name": "google/cloud-dataplex",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dataplex/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dataplex"
},
"Dataproc": {
"language": "php",
"distribution_name": "google/cloud-dataproc",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dataproc/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dataproc"
},
"DataprocMetastore": {
"language": "php",
"distribution_name": "google/cloud-dataproc-metastore",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dataproc-metastore/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "metastore"
},
"Datastore": {
"language": "php",
"distribution_name": "google/cloud-datastore",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-datastore/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "datastore"
},
"DatastoreAdmin": {
"language": "php",
"distribution_name": "google/cloud-datastore-admin",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-datastore-admin/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datastore"
},
"Datastream": {
"language": "php",
"distribution_name": "google/cloud-datastream",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-datastream/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datastream"
},
"Debugger": {
"language": "php",
"distribution_name": "google/cloud-debugger",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-debugger/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "clouddebugger"
},
"Deploy": {
"language": "php",
"distribution_name": "google/cloud-deploy",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-deploy/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "clouddeploy"
},
"DeveloperConnect": {
"language": "php",
"distribution_name": "google/cloud-developerconnect",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-developerconnect/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "developerconnect"
},
"Dialogflow": {
"language": "php",
"distribution_name": "google/cloud-dialogflow",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dialogflow/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dialogflow"
},
"DialogflowCx": {
"language": "php",
"distribution_name": "google/cloud-dialogflow-cx",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dialogflow-cx/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dialogflow"
},
"DiscoveryEngine": {
"language": "php",
"distribution_name": "google/cloud-discoveryengine",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-discoveryengine/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "discoveryengine"
},
"Dlp": {
"language": "php",
"distribution_name": "google/cloud-dlp",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dlp/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "dlp"
},
"Dms": {
"language": "php",
"distribution_name": "google/cloud-dms",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-dms/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "datamigration"
},
"DocumentAi": {
"language": "php",
"distribution_name": "google/cloud-document-ai",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-document-ai/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "documentai"
},
"Domains": {
"language": "php",
"distribution_name": "google/cloud-domains",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-domains/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "domains"
},
"EdgeNetwork": {
"language": "php",
"distribution_name": "google/cloud-edgenetwork",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-edgenetwork/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "edgenetwork"
},
"ErrorReporting": {
"language": "php",
"distribution_name": "google/cloud-error-reporting",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-error-reporting/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "clouderrorreporting"
},
"EssentialContacts": {
"language": "php",
"distribution_name": "google/cloud-essential-contacts",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-essential-contacts/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "essentialcontacts"
},
"Eventarc": {
"language": "php",
"distribution_name": "google/cloud-eventarc",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-eventarc/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "eventarc"
},
"EventarcPublishing": {
"language": "php",
"distribution_name": "google/cloud-eventarc-publishing",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-eventarc-publishing/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "eventarcpublishing"
},
"Filestore": {
"language": "php",
"distribution_name": "google/cloud-filestore",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-filestore/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "file"
},
"Firestore": {
"language": "php",
"distribution_name": "google/cloud-firestore",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-firestore/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "firestore"
},
"Functions": {
"language": "php",
"distribution_name": "google/cloud-functions",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-functions/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudfunctions"
},
"GSuiteAddOns": {
"language": "php",
"distribution_name": "google/cloud-gsuite-addons",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-gsuite-addons/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://developers.google.com/workspace/add-ons/overview",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "gsuiteaddons"
},
"Gaming": {
"language": "php",
"distribution_name": "google/cloud-game-servers",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-game-servers/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "gameservices"
},
"GeoCommonProtos": {
"distribution_name": "google/geo-common-protos",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/geo-common-protos/latest",
"library_type": "CORE"
},
"GkeBackup": {
"language": "php",
"distribution_name": "google/cloud-gke-backup",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-gke-backup/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "gkebackup"
},
"GkeConnectGateway": {
"language": "php",
"distribution_name": "google/cloud-gke-connect-gateway",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-gke-connect-gateway/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "connectgateway"
},
"GkeHub": {
"language": "php",
"distribution_name": "google/cloud-gke-hub",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-gke-hub/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "gkehub"
},
"GkeMultiCloud": {
"language": "php",
"distribution_name": "google/cloud-gke-multi-cloud",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-gke-multi-cloud/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "gkemulticloud"
},
"Grafeas": {
"language": "php",
"distribution_name": "google/grafeas",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/grafeas/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "containeranalysis"
},
"Iam": {
"language": "php",
"distribution_name": "google/cloud-iam",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-iam/latest",
"library_type": "GAPIC_AUTO",
"product_documentation": "https://cloud.google.com/iam/docs",
"issue_tracker": "https://github.com/googleapis/google-cloud-php/issues",
"api_shortname": "iam"
},
"IamCredentials": {
"language": "php",
"distribution_name": "google/cloud-iam-credentials",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-iam-credentials/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "iamcredentials"
},
"Iap": {
"language": "php",
"distribution_name": "google/cloud-iap",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-iap/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "iap"
},
"Ids": {
"language": "php",
"distribution_name": "google/cloud-ids",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-ids/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "ids"
},
"Iot": {
"language": "php",
"distribution_name": "google/cloud-iot",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-iot/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudiot"
},
"Kms": {
"language": "php",
"distribution_name": "google/cloud-kms",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-kms/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudkms"
},
"KmsInventory": {
"language": "php",
"distribution_name": "google/cloud-kms-inventory",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-kms-inventory/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "kmsinventory"
},
"Language": {
"language": "php",
"distribution_name": "google/cloud-language",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-language/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "language"
},
"LifeSciences": {
"language": "php",
"distribution_name": "google/cloud-life-sciences",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-life-sciences/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "lifesciences"
},
"Logging": {
"language": "php",
"distribution_name": "google/cloud-logging",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-logging/latest",
"library_type": "GAPIC_COMBO",
"api_shortname": "logging"
},
"LongRunning": {
"language": "php",
"distribution_name": "google/longrunning",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/longrunning/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "longrunning"
},
"ManagedIdentities": {
"language": "php",
"distribution_name": "google/cloud-managed-identities",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-managed-identities/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "managedidentities"
},
"ManagedKafka": {
"language": "php",
"distribution_name": "google/cloud-managedkafka",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-managedkafka/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "managedkafka"
},
"MapsFleetEngine": {
"language": "php",
"distribution_name": "google/maps-fleetengine",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/maps-fleetengine/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "fleetengine"
},
"MapsFleetEngineDelivery": {
"language": "php",
"distribution_name": "google/maps-fleetengine-delivery",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/maps-fleetengine-delivery/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "fleetengine"
},
"MapsRouteOptimization": {
"language": "php",
"distribution_name": "google/maps-routeoptimization",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/maps-routeoptimization/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "routeoptimization"
},
"MediaTranslation": {
"language": "php",
"distribution_name": "google/cloud-media-translation",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-media-translation/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "mediatranslation"
},
"Memcache": {
"language": "php",
"distribution_name": "google/cloud-memcache",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-memcache/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "memcache"
},
"MigrationCenter": {
"language": "php",
"distribution_name": "google/cloud-migrationcenter",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-migrationcenter/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "migrationcenter"
},
"Monitoring": {
"language": "php",
"distribution_name": "google/cloud-monitoring",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-monitoring/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "monitoring"
},
"NetApp": {
"language": "php",
"distribution_name": "google/cloud-netapp",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-netapp/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "netapp"
},
"NetworkConnectivity": {
"language": "php",
"distribution_name": "google/cloud-network-connectivity",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-network-connectivity/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "networkconnectivity"
},
"NetworkManagement": {
"language": "php",
"distribution_name": "google/cloud-network-management",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-network-management/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "networkmanagement"
},
"NetworkSecurity": {
"language": "php",
"distribution_name": "google/cloud-network-security",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-network-security/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "networksecurity"
},
"NetworkServices": {
"language": "php",
"distribution_name": "google/cloud-networkservices",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-networkservices/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "networkservices"
},
"Notebooks": {
"language": "php",
"distribution_name": "google/cloud-notebooks",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-notebooks/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "notebooks"
},
"Optimization": {
"language": "php",
"distribution_name": "google/cloud-optimization",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-optimization/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "cloudoptimization"
},
"OrchestrationAirflow": {
"language": "php",
"distribution_name": "google/cloud-orchestration-airflow",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-orchestration-airflow/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "composer"
},
"OrgPolicy": {
"language": "php",
"distribution_name": "google/cloud-org-policy",
"release_level": "preview",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-org-policy/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "orgpolicy"
},
"OsConfig": {
"language": "php",
"distribution_name": "google/cloud-osconfig",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-osconfig/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "osconfig"
},
"OsLogin": {
"language": "php",
"distribution_name": "google/cloud-oslogin",
"release_level": "stable",
"client_documentation": "https://cloud.google.com/php/docs/reference/cloud-oslogin/latest",
"library_type": "GAPIC_AUTO",
"api_shortname": "oslogin"