-
Notifications
You must be signed in to change notification settings - Fork 403
Expand file tree
/
Copy pathpipeline-state.json
More file actions
4811 lines (4811 loc) · 217 KB
/
pipeline-state.json
File metadata and controls
4811 lines (4811 loc) · 217 KB
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
{
"imageTag": "latest",
"libraries": [
{
"id": "Google.Ads.AdManager.V1",
"currentVersion": "1.0.0-beta05",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-12T00:07:32.672194401Z",
"lastGeneratedCommit": "8c06c1e04ae562f49f411357577c700e9142f33c",
"lastReleasedCommit": "8c06c1e04ae562f49f411357577c700e9142f33c",
"apiPaths": [
"google/ads/admanager/v1"
],
"sourcePaths": [
"apis/Google.Ads.AdManager.V1/Google.Ads.AdManager.V1"
]
},
{
"id": "Google.Ads.MarketingPlatform.Admin.V1Alpha",
"currentVersion": "1.0.0-alpha02",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T14:05:38.100302422Z",
"lastGeneratedCommit": "6a3acb370bf4930823bea7486e54591c6e63e12b",
"lastReleasedCommit": "6a3acb370bf4930823bea7486e54591c6e63e12b",
"apiPaths": [
"google/marketingplatform/admin/v1alpha"
],
"sourcePaths": [
"apis/Google.Ads.MarketingPlatform.Admin.V1Alpha/Google.Ads.MarketingPlatform.Admin.V1Alpha"
]
},
{
"id": "Google.Analytics.Admin.V1Alpha",
"currentVersion": "2.0.0-alpha28",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:24:48.241521917Z",
"lastGeneratedCommit": "9070e63a1f574261c153ef6e94afc55677200337",
"lastReleasedCommit": "9070e63a1f574261c153ef6e94afc55677200337",
"apiPaths": [
"google/analytics/admin/v1alpha"
],
"sourcePaths": [
"apis/Google.Analytics.Admin.V1Alpha/Google.Analytics.Admin.V1Alpha"
]
},
{
"id": "Google.Analytics.Admin.V1Beta",
"currentVersion": "1.0.0-beta10",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:25:23.556975044Z",
"lastGeneratedCommit": "d9a16f2feec3d0f03899e48007a02ce154fc919d",
"lastReleasedCommit": "d9a16f2feec3d0f03899e48007a02ce154fc919d",
"apiPaths": [
"google/analytics/admin/v1beta"
],
"sourcePaths": [
"apis/Google.Analytics.Admin.V1Beta/Google.Analytics.Admin.V1Beta"
]
},
{
"id": "Google.Analytics.Data.V1Beta",
"currentVersion": "2.0.0-beta10",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:25:54.293312894Z",
"lastGeneratedCommit": "bab01b38ef7a0f3a756d38862d37e4380ff85753",
"lastReleasedCommit": "bab01b38ef7a0f3a756d38862d37e4380ff85753",
"apiPaths": [
"google/analytics/data/v1beta"
],
"sourcePaths": [
"apis/Google.Analytics.Data.V1Beta/Google.Analytics.Data.V1Beta"
]
},
{
"id": "Google.Apps.Card.V1",
"currentVersion": "1.0.0-beta02",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-10-20T15:53:48.926320484Z",
"lastGeneratedCommit": "fef700942b6a3ef8bbaf253306a0a652a1858552",
"lastReleasedCommit": "fef700942b6a3ef8bbaf253306a0a652a1858552",
"apiPaths": [
"google/apps/card/v1"
],
"sourcePaths": [
"apis/Google.Apps.Card.V1/Google.Apps.Card.V1"
]
},
{
"id": "Google.Apps.Chat.V1",
"currentVersion": "1.0.0-beta19",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:27:28.065987146Z",
"lastGeneratedCommit": "98fef441cef53480961d4e174164def1834a290c",
"lastReleasedCommit": "98fef441cef53480961d4e174164def1834a290c",
"apiPaths": [
"google/chat/v1"
],
"sourcePaths": [
"apis/Google.Apps.Chat.V1/Google.Apps.Chat.V1"
]
},
{
"id": "Google.Apps.Events.Subscriptions.V1",
"currentVersion": "1.1.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:27:57.895615604Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/apps/events/subscriptions/v1"
],
"sourcePaths": [
"apis/Google.Apps.Events.Subscriptions.V1/Google.Apps.Events.Subscriptions.V1"
]
},
{
"id": "Google.Apps.Meet.V2",
"currentVersion": "1.0.0-beta06",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:29:42.670326361Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/apps/meet/v2"
],
"sourcePaths": [
"apis/Google.Apps.Meet.V2/Google.Apps.Meet.V2"
]
},
{
"id": "Google.Apps.Meet.V2Beta",
"currentVersion": "1.0.0-beta08",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:30:31.924659876Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/apps/meet/v2beta"
],
"sourcePaths": [
"apis/Google.Apps.Meet.V2Beta/Google.Apps.Meet.V2Beta"
]
},
{
"id": "Google.Apps.Script.Type",
"currentVersion": "2.4.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:31:53.080303086Z",
"lastGeneratedCommit": "9415ba048aa587b1b2df2b96fc00aa009c831597",
"lastReleasedCommit": "9415ba048aa587b1b2df2b96fc00aa009c831597",
"apiPaths": [
"google/apps/script/type"
],
"sourcePaths": [
"apis/Google.Apps.Script.Type/Google.Apps.Script.Type"
]
},
{
"id": "Google.Area120.Tables.V1Alpha1",
"currentVersion": "2.0.0-alpha19",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:32:18.335419856Z",
"lastGeneratedCommit": "61f2993fa1c33ec2b46d0db3d10f4eed677f1632",
"lastReleasedCommit": "61f2993fa1c33ec2b46d0db3d10f4eed677f1632",
"apiPaths": [
"google/area120/tables/v1alpha1"
],
"sourcePaths": [
"apis/Google.Area120.Tables.V1Alpha1/Google.Area120.Tables.V1Alpha1"
]
},
{
"id": "Google.Cloud.AccessApproval.V1",
"currentVersion": "2.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:32:47.341087934Z",
"lastGeneratedCommit": "222764e0853283787ba2203de6b3f57bf05b6bc5",
"lastReleasedCommit": "222764e0853283787ba2203de6b3f57bf05b6bc5",
"apiPaths": [
"google/cloud/accessapproval/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AccessApproval.V1/Google.Cloud.AccessApproval.V1"
]
},
{
"id": "Google.Cloud.AdvisoryNotifications.V1",
"currentVersion": "1.8.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:33:22.621352106Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/cloud/advisorynotifications/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AdvisoryNotifications.V1/Google.Cloud.AdvisoryNotifications.V1"
]
},
{
"id": "Google.Cloud.AlloyDb.V1",
"currentVersion": "1.13.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:34:05.137486278Z",
"lastGeneratedCommit": "35365cb31245ac9ee3f3ed37bd052ea246ed732b",
"lastReleasedCommit": "fc225fe488a3fbf198bfeda4e67e8a3e691bbb3c",
"apiPaths": [
"google/cloud/alloydb/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AlloyDb.V1/Google.Cloud.AlloyDb.V1"
]
},
{
"id": "Google.Cloud.AlloyDb.V1Alpha",
"currentVersion": "1.0.0-alpha14",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:35:47.598062190Z",
"lastGeneratedCommit": "8cd780626041ecd4666974fd0c4099f1ad1ca01a",
"lastReleasedCommit": "8cd780626041ecd4666974fd0c4099f1ad1ca01a",
"apiPaths": [
"google/cloud/alloydb/v1alpha"
],
"sourcePaths": [
"apis/Google.Cloud.AlloyDb.V1Alpha/Google.Cloud.AlloyDb.V1Alpha"
]
},
{
"id": "Google.Cloud.AlloyDb.V1Beta",
"currentVersion": "1.0.0-beta14",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:38:10.331253988Z",
"lastGeneratedCommit": "48c3f2f1639caf5f99acd0490bc3da1abe6190cd",
"lastReleasedCommit": "48c3f2f1639caf5f99acd0490bc3da1abe6190cd",
"apiPaths": [
"google/cloud/alloydb/v1beta"
],
"sourcePaths": [
"apis/Google.Cloud.AlloyDb.V1Beta/Google.Cloud.AlloyDb.V1Beta"
]
},
{
"id": "Google.Cloud.ApiGateway.V1",
"currentVersion": "2.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:38:49.173792101Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/cloud/apigateway/v1"
],
"sourcePaths": [
"apis/Google.Cloud.ApiGateway.V1/Google.Cloud.ApiGateway.V1"
]
},
{
"id": "Google.Cloud.AIPlatform.V1Beta1",
"currentVersion": "1.0.0-beta63",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-09T10:55:33.816793043Z",
"lastGeneratedCommit": "a448b7d9f0778ee4e14d0be52269facb41989c4b",
"lastReleasedCommit": "a448b7d9f0778ee4e14d0be52269facb41989c4b",
"apiPaths": [
"google/cloud/aiplatform/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.AIPlatform.V1Beta1/Google.Cloud.AIPlatform.V1Beta1"
]
},
{
"id": "Google.Cloud.AIPlatform.V1",
"currentVersion": "3.59.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-12T00:08:36.601780401Z",
"lastGeneratedCommit": "effe5c4fa816021e724ca856d5640f2e55b14a8b",
"lastReleasedCommit": "effe5c4fa816021e724ca856d5640f2e55b14a8b",
"apiPaths": [
"google/cloud/aiplatform/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AIPlatform.V1/Google.Cloud.AIPlatform.V1"
]
},
{
"id": "Google.Cloud.ApiHub.V1",
"currentVersion": "1.2.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:45:24.766538249Z",
"lastGeneratedCommit": "4d3b3a5470a3514b71cedd0119d14d3b7d17db7e",
"lastReleasedCommit": "4d3b3a5470a3514b71cedd0119d14d3b7d17db7e",
"apiPaths": [
"google/cloud/apihub/v1"
],
"sourcePaths": [
"apis/Google.Cloud.ApiHub.V1/Google.Cloud.ApiHub.V1"
]
},
{
"id": "Google.Cloud.ApiKeys.V2",
"currentVersion": "1.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:46:06.989863968Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/api/apikeys/v2"
],
"sourcePaths": [
"apis/Google.Cloud.ApiKeys.V2/Google.Cloud.ApiKeys.V2"
]
},
{
"id": "Google.Cloud.ApigeeConnect.V1",
"currentVersion": "2.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:47:59.780341849Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/cloud/apigeeconnect/v1"
],
"sourcePaths": [
"apis/Google.Cloud.ApigeeConnect.V1/Google.Cloud.ApigeeConnect.V1"
]
},
{
"id": "Google.Cloud.ApigeeRegistry.V1",
"currentVersion": "1.0.0-beta08",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:48:28.612112477Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/apigeeregistry/v1"
],
"sourcePaths": [
"apis/Google.Cloud.ApigeeRegistry.V1/Google.Cloud.ApigeeRegistry.V1"
]
},
{
"id": "Google.Cloud.AppEngine.Logging.V1",
"currentVersion": "1.3.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:50:03.750741168Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/appengine/logging/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AppEngine.Logging.V1/Google.Cloud.AppEngine.Logging.V1"
]
},
{
"id": "Google.Cloud.AppEngine.V1",
"currentVersion": "2.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:50:30.214234283Z",
"lastGeneratedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"lastReleasedCommit": "d03cc133141975f28a66554ddbd5c0e871946044",
"apiPaths": [
"google/appengine/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AppEngine.V1/Google.Cloud.AppEngine.V1"
]
},
{
"id": "Google.Cloud.AppHub.V1",
"currentVersion": "1.2.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:52:13.069926695Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/apphub/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AppHub.V1/Google.Cloud.AppHub.V1"
]
},
{
"id": "Google.Cloud.ArtifactRegistry.V1",
"currentVersion": "2.13.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-03T08:43:36.979604179Z",
"lastGeneratedCommit": "b81889fefc4a617605e3d779c10a2dc6092db671",
"lastReleasedCommit": "535d161c24965e9ed1a0b27032cc1c8b4beab818",
"apiPaths": [
"google/devtools/artifactregistry/v1"
],
"sourcePaths": [
"apis/Google.Cloud.ArtifactRegistry.V1/Google.Cloud.ArtifactRegistry.V1"
]
},
{
"id": "Google.Cloud.ArtifactRegistry.V1Beta2",
"currentVersion": "2.0.0-beta06",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:54:32.602490592Z",
"lastGeneratedCommit": "a53e1e09d16d311ff6064d237abed3ddd7a5d1fe",
"lastReleasedCommit": "a53e1e09d16d311ff6064d237abed3ddd7a5d1fe",
"apiPaths": [
"google/devtools/artifactregistry/v1beta2"
],
"sourcePaths": [
"apis/Google.Cloud.ArtifactRegistry.V1Beta2/Google.Cloud.ArtifactRegistry.V1Beta2"
]
},
{
"id": "Google.Cloud.Asset.V1",
"currentVersion": "3.14.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T16:33:21.988816154Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/asset/v1"
],
"sourcePaths": [
"apis/Google.Cloud.Asset.V1/Google.Cloud.Asset.V1"
]
},
{
"id": "Google.Cloud.AssuredWorkloads.V1",
"currentVersion": "2.7.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:55:06.631297227Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/assuredworkloads/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AssuredWorkloads.V1/Google.Cloud.AssuredWorkloads.V1"
]
},
{
"id": "Google.Cloud.AssuredWorkloads.V1Beta1",
"currentVersion": "2.0.0-beta09",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:55:35.747458735Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/assuredworkloads/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.AssuredWorkloads.V1Beta1/Google.Cloud.AssuredWorkloads.V1Beta1"
]
},
{
"id": "Google.Cloud.Audit",
"currentVersion": "2.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:56:33.811424037Z",
"lastGeneratedCommit": "6e4f2a51f70f16e8102c59e93e930f0df0a0f768",
"lastReleasedCommit": "6e4f2a51f70f16e8102c59e93e930f0df0a0f768",
"apiPaths": [
"google/cloud/audit"
],
"sourcePaths": [
"apis/Google.Cloud.Audit/Google.Cloud.Audit"
]
},
{
"id": "Google.Cloud.AutoML.V1",
"currentVersion": "3.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T18:57:33.377292843Z",
"lastGeneratedCommit": "222764e0853283787ba2203de6b3f57bf05b6bc5",
"lastReleasedCommit": "222764e0853283787ba2203de6b3f57bf05b6bc5",
"apiPaths": [
"google/cloud/automl/v1"
],
"sourcePaths": [
"apis/Google.Cloud.AutoML.V1/Google.Cloud.AutoML.V1"
]
},
{
"id": "Google.Cloud.BackupDR.V1",
"currentVersion": "2.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-03T08:45:49.075870430Z",
"lastGeneratedCommit": "6a7d453e1bd3f1ed759e6ab4546fe96a45b6bd1c",
"lastReleasedCommit": "6a7d453e1bd3f1ed759e6ab4546fe96a45b6bd1c",
"apiPaths": [
"google/cloud/backupdr/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BackupDR.V1/Google.Cloud.BackupDR.V1"
]
},
{
"id": "Google.Cloud.BareMetalSolution.V2",
"currentVersion": "1.8.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:00:01.647671433Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/baremetalsolution/v2"
],
"sourcePaths": [
"apis/Google.Cloud.BareMetalSolution.V2/Google.Cloud.BareMetalSolution.V2"
]
},
{
"id": "Google.Cloud.Batch.V1",
"currentVersion": "2.15.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-03T08:48:09.426039160Z",
"lastGeneratedCommit": "e48d9994008bcebaa2f3a6f334e6a8de0dd1d994",
"lastReleasedCommit": "e48d9994008bcebaa2f3a6f334e6a8de0dd1d994",
"apiPaths": [
"google/cloud/batch/v1"
],
"sourcePaths": [
"apis/Google.Cloud.Batch.V1/Google.Cloud.Batch.V1"
]
},
{
"id": "Google.Cloud.Batch.V1Alpha",
"currentVersion": "1.0.0-alpha33",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:02:01.461210958Z",
"lastGeneratedCommit": "9d640a8a24199038731692658936c57e6d898562",
"lastReleasedCommit": "9d640a8a24199038731692658936c57e6d898562",
"apiPaths": [
"google/cloud/batch/v1alpha"
],
"sourcePaths": [
"apis/Google.Cloud.Batch.V1Alpha/Google.Cloud.Batch.V1Alpha"
]
},
{
"id": "Google.Cloud.BeyondCorp.AppConnections.V1",
"currentVersion": "1.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:03:41.862029290Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/beyondcorp/appconnections/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BeyondCorp.AppConnections.V1/Google.Cloud.BeyondCorp.AppConnections.V1"
]
},
{
"id": "Google.Cloud.BeyondCorp.AppConnectors.V1",
"currentVersion": "1.4.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:04:17.106393046Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/beyondcorp/appconnectors/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BeyondCorp.AppConnectors.V1/Google.Cloud.BeyondCorp.AppConnectors.V1"
]
},
{
"id": "Google.Cloud.BeyondCorp.AppGateways.V1",
"currentVersion": "1.4.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:05:58.762838663Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/beyondcorp/appgateways/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BeyondCorp.AppGateways.V1/Google.Cloud.BeyondCorp.AppGateways.V1"
]
},
{
"id": "Google.Cloud.BeyondCorp.ClientGateways.V1",
"currentVersion": "1.4.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T19:07:03.730766874Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/beyondcorp/clientgateways/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BeyondCorp.ClientGateways.V1/Google.Cloud.BeyondCorp.ClientGateways.V1"
]
},
{
"id": "Google.Cloud.BigQuery.AnalyticsHub.V1",
"currentVersion": "1.12.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:40:42.934682222Z",
"lastGeneratedCommit": "41c4f8d4609f9d04f382ecaa4c206efba24c0e19",
"lastReleasedCommit": "41c4f8d4609f9d04f382ecaa4c206efba24c0e19",
"apiPaths": [
"google/cloud/bigquery/analyticshub/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.AnalyticsHub.V1/Google.Cloud.BigQuery.AnalyticsHub.V1"
]
},
{
"id": "Google.Cloud.BigQuery.Connection.V1",
"currentVersion": "2.10.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:42:29.066741549Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/connection/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.Connection.V1/Google.Cloud.BigQuery.Connection.V1"
]
},
{
"id": "Google.Cloud.BigQuery.DataExchange.V1Beta1",
"currentVersion": "2.0.0-beta07",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:44:00.501166921Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/dataexchange/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.DataExchange.V1Beta1/Google.Cloud.BigQuery.DataExchange.V1Beta1"
]
},
{
"id": "Google.Cloud.BigQuery.DataPolicies.V1",
"currentVersion": "1.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:44:39.440761122Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/datapolicies/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.DataPolicies.V1/Google.Cloud.BigQuery.DataPolicies.V1"
]
},
{
"id": "Google.Cloud.BigQuery.DataPolicies.V1Beta1",
"currentVersion": "1.0.0-beta05",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:45:18.266770043Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/datapolicies/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.DataPolicies.V1Beta1/Google.Cloud.BigQuery.DataPolicies.V1Beta1"
]
},
{
"id": "Google.Cloud.BigQuery.DataTransfer.V1",
"currentVersion": "4.11.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:46:26.441639792Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/datatransfer/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.DataTransfer.V1/Google.Cloud.BigQuery.DataTransfer.V1"
]
},
{
"id": "Google.Cloud.BigQuery.Logging.V1",
"currentVersion": "1.4.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:47:18.659742126Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/logging/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.Logging.V1/Google.Cloud.BigQuery.Logging.V1"
]
},
{
"id": "Google.Cloud.BigQuery.Migration.V2",
"currentVersion": "1.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:47:48.878790533Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/migration/v2"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.Migration.V2/Google.Cloud.BigQuery.Migration.V2"
]
},
{
"id": "Google.Cloud.BigQuery.Reservation.V1",
"currentVersion": "2.11.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:48:27.062237062Z",
"lastGeneratedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"lastReleasedCommit": "4823efd0b9944891ec5c387104dcc2ec401307a8",
"apiPaths": [
"google/cloud/bigquery/reservation/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.Reservation.V1/Google.Cloud.BigQuery.Reservation.V1"
]
},
{
"id": "Google.Cloud.BigQuery.V2",
"currentVersion": "3.11.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_BLOCKED",
"releaseTimestamp": "2025-02-03T17:58:23Z",
"sourcePaths": [
"apis/Google.Cloud.BigQuery.V2/Google.Cloud.BigQuery.V2"
]
},
{
"id": "Google.Cloud.BigQuery.Storage.V1",
"currentVersion": "3.19.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-10T14:05:39.364304686Z",
"lastGeneratedCommit": "04bd623ce9d0c06f1e842a6fc6d5ed7dc9baee13",
"lastReleasedCommit": "04bd623ce9d0c06f1e842a6fc6d5ed7dc9baee13",
"apiPaths": [
"google/cloud/bigquery/storage/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BigQuery.Storage.V1/Google.Cloud.BigQuery.Storage.V1"
]
},
{
"id": "Google.Cloud.Bigtable.Admin.V2",
"currentVersion": "3.30.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:50:25.047605824Z",
"lastGeneratedCommit": "3b2a2ae91db23a9c879b2b725d6a5de6bd64a800",
"lastReleasedCommit": "3b2a2ae91db23a9c879b2b725d6a5de6bd64a800",
"apiPaths": [
"google/bigtable/admin/v2"
],
"sourcePaths": [
"apis/Google.Cloud.Bigtable.Admin.V2/Google.Cloud.Bigtable.Admin.V2"
]
},
{
"id": "Google.Cloud.Bigtable.Common.V2",
"currentVersion": "3.3.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-03T16:50:58.759005572Z",
"sourcePaths": [
"apis/Google.Cloud.Bigtable.Common.V2/Google.Cloud.Bigtable.Common.V2"
]
},
{
"id": "Google.Cloud.Bigtable.V2",
"currentVersion": "3.26.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-10T14:06:32.601430833Z",
"lastGeneratedCommit": "1b5f8632487bce889ce05366647addc6ef5ee36d",
"lastReleasedCommit": "1b5f8632487bce889ce05366647addc6ef5ee36d",
"apiPaths": [
"google/bigtable/v2"
],
"sourcePaths": [
"apis/Google.Cloud.Bigtable.V2/Google.Cloud.Bigtable.V2"
]
},
{
"id": "Google.Cloud.Billing.Budgets.V1",
"currentVersion": "2.7.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:52:41.208005499Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/billing/budgets/v1"
],
"sourcePaths": [
"apis/Google.Cloud.Billing.Budgets.V1/Google.Cloud.Billing.Budgets.V1"
]
},
{
"id": "Google.Cloud.Billing.Budgets.V1Beta1",
"currentVersion": "2.0.0-beta07",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:53:13.950752936Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/billing/budgets/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.Billing.Budgets.V1Beta1/Google.Cloud.Billing.Budgets.V1Beta1"
]
},
{
"id": "Google.Cloud.Billing.V1",
"currentVersion": "3.10.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:53:46.528480330Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/billing/v1"
],
"sourcePaths": [
"apis/Google.Cloud.Billing.V1/Google.Cloud.Billing.V1"
]
},
{
"id": "Google.Cloud.BinaryAuthorization.V1",
"currentVersion": "2.6.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T21:34:29.641260019Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/binaryauthorization/v1"
],
"sourcePaths": [
"apis/Google.Cloud.BinaryAuthorization.V1/Google.Cloud.BinaryAuthorization.V1"
]
},
{
"id": "Google.Cloud.BinaryAuthorization.V1Beta1",
"currentVersion": "2.0.0-beta09",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:54:27.446742309Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/binaryauthorization/v1beta1"
],
"sourcePaths": [
"apis/Google.Cloud.BinaryAuthorization.V1Beta1/Google.Cloud.BinaryAuthorization.V1Beta1"
]
},
{
"id": "Google.Cloud.CertificateManager.V1",
"currentVersion": "2.9.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:55:18.053919038Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/certificatemanager/v1"
],
"sourcePaths": [
"apis/Google.Cloud.CertificateManager.V1/Google.Cloud.CertificateManager.V1"
]
},
{
"id": "Google.Cloud.Channel.V1",
"currentVersion": "2.17.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-03T08:50:20.365244605Z",
"lastGeneratedCommit": "1c1b1ff7874ae3a9a4184afd7804c092777ce72a",
"lastReleasedCommit": "1c1b1ff7874ae3a9a4184afd7804c092777ce72a",
"apiPaths": [
"google/cloud/channel/v1"
],
"sourcePaths": [
"apis/Google.Cloud.Channel.V1/Google.Cloud.Channel.V1"
]
},
{
"id": "Google.Cloud.CloudBuild.V1",
"currentVersion": "2.18.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-12-03T08:50:49.761570132Z",
"lastGeneratedCommit": "943025a9f8f2902af19781e504eb80c7428f7836",
"lastReleasedCommit": "943025a9f8f2902af19781e504eb80c7428f7836",
"apiPaths": [
"google/devtools/cloudbuild/v1"
],
"sourcePaths": [
"apis/Google.Cloud.CloudBuild.V1/Google.Cloud.CloudBuild.V1"
]
},
{
"id": "Google.Cloud.CloudBuild.V2",
"currentVersion": "1.5.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:58:13.072806037Z",
"lastGeneratedCommit": "a53e1e09d16d311ff6064d237abed3ddd7a5d1fe",
"lastReleasedCommit": "a53e1e09d16d311ff6064d237abed3ddd7a5d1fe",
"apiPaths": [
"google/devtools/cloudbuild/v2"
],
"sourcePaths": [
"apis/Google.Cloud.CloudBuild.V2/Google.Cloud.CloudBuild.V2"
]
},
{
"id": "Google.Cloud.CloudControlsPartner.V1",
"currentVersion": "1.3.0",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T08:59:42.672641144Z",
"lastGeneratedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"lastReleasedCommit": "3021374c68bbc640c1f75bfffcadbd5c279811ee",
"apiPaths": [
"google/cloud/cloudcontrolspartner/v1"
],
"sourcePaths": [
"apis/Google.Cloud.CloudControlsPartner.V1/Google.Cloud.CloudControlsPartner.V1"
]
},
{
"id": "Google.Cloud.CloudControlsPartner.V1Beta",
"currentVersion": "1.0.0-beta05",
"generationAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseAutomationLevel": "AUTOMATION_LEVEL_AUTOMATIC",
"releaseTimestamp": "2025-11-05T09:00:15.711416857Z",
"lastGeneratedCommit": "bab01b38ef7a0f3a756d38862d37e4380ff85753",
"lastReleasedCommit": "bab01b38ef7a0f3a756d38862d37e4380ff85753",
"apiPaths": [
"google/cloud/cloudcontrolspartner/v1beta"
],
"sourcePaths": [
"apis/Google.Cloud.CloudControlsPartner.V1Beta/Google.Cloud.CloudControlsPartner.V1Beta"
]
},
{
"id": "Google.Cloud.CloudDms.V1",