Skip to content

Commit 089d527

Browse files
chore: Update generation configuration at Thu Aug 7 02:49:23 UTC 2025 (#2649)
* chore: Update generation configuration at Thu Jul 31 02:47:07 UTC 2025 * chore: Update generation configuration at Fri Aug 1 02:54:57 UTC 2025 * chore: Update generation configuration at Sat Aug 2 02:42:43 UTC 2025 * chore: generate libraries at Sat Aug 2 02:43:12 UTC 2025 * chore: Update generation configuration at Tue Aug 5 02:50:25 UTC 2025 * chore: generate libraries at Tue Aug 5 02:50:52 UTC 2025 * chore: Update generation configuration at Wed Aug 6 02:48:20 UTC 2025 * chore: generate libraries at Wed Aug 6 02:48:53 UTC 2025 * chore: Update generation configuration at Thu Aug 7 02:49:23 UTC 2025
1 parent e8007fa commit 089d527

File tree

15 files changed

+648
-62
lines changed

15 files changed

+648
-62
lines changed

.github/scripts/update_generation_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
set -ex
33
# This script should be run at the root of the repository.
44
# This script is used to update googleapis_commitish, gapic_generator_version,
55
# and libraries_bom_version in generation configuration at the time of running

.github/workflows/hermetic_library_generation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
40-
- uses: googleapis/sdk-platform-java/.github/scripts@v2.60.2
40+
- uses: googleapis/sdk-platform-java/.github/scripts@v2.61.0
4141
if: env.SHOULD_RUN == 'true'
4242
with:
4343
base_ref: ${{ github.base_ref }}

.kokoro/presubmit/graalvm-native-a.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.50.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-b.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.50.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native-c.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.50.2" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
77
}
88

99
env_vars: {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If you are using Maven without the BOM, add this to your dependencies:
4949
If you are using Gradle 5.x or later, add this to your dependencies:
5050

5151
```Groovy
52-
implementation platform('com.google.cloud:libraries-bom:26.64.0')
52+
implementation platform('com.google.cloud:libraries-bom:26.65.0')
5353
5454
implementation 'com.google.cloud:google-cloud-bigtable'
5555
```

generation_config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
gapic_generator_version: 2.60.2
2-
googleapis_commitish: 64e82d17e410ff5e71ab3e040ea393db362f2850
3-
libraries_bom_version: 26.64.0
1+
gapic_generator_version: 2.61.0
2+
googleapis_commitish: b0316578aaf7434e3c5bb93badd252f67aacf8d5
3+
libraries_bom_version: 26.65.0
44
template_excludes:
55
- .gitignore
66
- .kokoro/presubmit/integration.cfg

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClient.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -644,6 +644,7 @@ public final UnaryCallable<ListInstancesRequest, ListInstancesResponse> listInst
644644
* .setCreateTime(Timestamp.newBuilder().build())
645645
* .setSatisfiesPzs(true)
646646
* .setSatisfiesPzi(true)
647+
* .putAllTags(new HashMap<String, String>())
647648
* .build();
648649
* Instance response = baseBigtableInstanceAdminClient.updateInstance(request);
649650
* }
@@ -679,6 +680,7 @@ public final Instance updateInstance(Instance request) {
679680
* .setCreateTime(Timestamp.newBuilder().build())
680681
* .setSatisfiesPzs(true)
681682
* .setSatisfiesPzi(true)
683+
* .putAllTags(new HashMap<String, String>())
682684
* .build();
683685
* ApiFuture<Instance> future =
684686
* baseBigtableInstanceAdminClient.updateInstanceCallable().futureCall(request);

google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/BaseBigtableInstanceAdminClientTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ public void createInstanceTest() throws Exception {
157157
.setCreateTime(Timestamp.newBuilder().build())
158158
.setSatisfiesPzs(true)
159159
.setSatisfiesPzi(true)
160+
.putAllTags(new HashMap<String, String>())
160161
.build();
161162
Operation resultOperation =
162163
Operation.newBuilder()
@@ -218,6 +219,7 @@ public void createInstanceTest2() throws Exception {
218219
.setCreateTime(Timestamp.newBuilder().build())
219220
.setSatisfiesPzs(true)
220221
.setSatisfiesPzi(true)
222+
.putAllTags(new HashMap<String, String>())
221223
.build();
222224
Operation resultOperation =
223225
Operation.newBuilder()
@@ -279,6 +281,7 @@ public void getInstanceTest() throws Exception {
279281
.setCreateTime(Timestamp.newBuilder().build())
280282
.setSatisfiesPzs(true)
281283
.setSatisfiesPzi(true)
284+
.putAllTags(new HashMap<String, String>())
282285
.build();
283286
mockBigtableInstanceAdmin.addResponse(expectedResponse);
284287

@@ -322,6 +325,7 @@ public void getInstanceTest2() throws Exception {
322325
.setCreateTime(Timestamp.newBuilder().build())
323326
.setSatisfiesPzs(true)
324327
.setSatisfiesPzi(true)
328+
.putAllTags(new HashMap<String, String>())
325329
.build();
326330
mockBigtableInstanceAdmin.addResponse(expectedResponse);
327331

@@ -445,6 +449,7 @@ public void updateInstanceTest() throws Exception {
445449
.setCreateTime(Timestamp.newBuilder().build())
446450
.setSatisfiesPzs(true)
447451
.setSatisfiesPzi(true)
452+
.putAllTags(new HashMap<String, String>())
448453
.build();
449454
mockBigtableInstanceAdmin.addResponse(expectedResponse);
450455

@@ -456,6 +461,7 @@ public void updateInstanceTest() throws Exception {
456461
.setCreateTime(Timestamp.newBuilder().build())
457462
.setSatisfiesPzs(true)
458463
.setSatisfiesPzi(true)
464+
.putAllTags(new HashMap<String, String>())
459465
.build();
460466

461467
Instance actualResponse = client.updateInstance(request);
@@ -473,6 +479,7 @@ public void updateInstanceTest() throws Exception {
473479
Assert.assertEquals(request.getCreateTime(), actualRequest.getCreateTime());
474480
Assert.assertEquals(request.getSatisfiesPzs(), actualRequest.getSatisfiesPzs());
475481
Assert.assertEquals(request.getSatisfiesPzi(), actualRequest.getSatisfiesPzi());
482+
Assert.assertEquals(request.getTagsMap(), actualRequest.getTagsMap());
476483
Assert.assertTrue(
477484
channelProvider.isHeaderSent(
478485
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -493,6 +500,7 @@ public void updateInstanceExceptionTest() throws Exception {
493500
.setCreateTime(Timestamp.newBuilder().build())
494501
.setSatisfiesPzs(true)
495502
.setSatisfiesPzi(true)
503+
.putAllTags(new HashMap<String, String>())
496504
.build();
497505
client.updateInstance(request);
498506
Assert.fail("No exception raised");
@@ -511,6 +519,7 @@ public void partialUpdateInstanceTest() throws Exception {
511519
.setCreateTime(Timestamp.newBuilder().build())
512520
.setSatisfiesPzs(true)
513521
.setSatisfiesPzi(true)
522+
.putAllTags(new HashMap<String, String>())
514523
.build();
515524
Operation resultOperation =
516525
Operation.newBuilder()

proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfile.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4707,7 +4707,7 @@ public com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClu
47074707
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
47084708
*
47094709
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
4710-
* google/bigtable/admin/v2/instance.proto;l=406
4710+
* google/bigtable/admin/v2/instance.proto;l=421
47114711
* @return Whether the priority field is set.
47124712
*/
47134713
@java.lang.Deprecated
@@ -4728,7 +4728,7 @@ public boolean hasPriority() {
47284728
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
47294729
*
47304730
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
4731-
* google/bigtable/admin/v2/instance.proto;l=406
4731+
* google/bigtable/admin/v2/instance.proto;l=421
47324732
* @return The enum numeric value on the wire for priority.
47334733
*/
47344734
@java.lang.Deprecated
@@ -4752,7 +4752,7 @@ public int getPriorityValue() {
47524752
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
47534753
*
47544754
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
4755-
* google/bigtable/admin/v2/instance.proto;l=406
4755+
* google/bigtable/admin/v2/instance.proto;l=421
47564756
* @return The priority.
47574757
*/
47584758
@java.lang.Deprecated
@@ -6386,7 +6386,7 @@ public Builder clearSingleClusterRouting() {
63866386
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
63876387
*
63886388
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6389-
* google/bigtable/admin/v2/instance.proto;l=406
6389+
* google/bigtable/admin/v2/instance.proto;l=421
63906390
* @return Whether the priority field is set.
63916391
*/
63926392
@java.lang.Override
@@ -6408,7 +6408,7 @@ public boolean hasPriority() {
64086408
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
64096409
*
64106410
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6411-
* google/bigtable/admin/v2/instance.proto;l=406
6411+
* google/bigtable/admin/v2/instance.proto;l=421
64126412
* @return The enum numeric value on the wire for priority.
64136413
*/
64146414
@java.lang.Override
@@ -6433,7 +6433,7 @@ public int getPriorityValue() {
64336433
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
64346434
*
64356435
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6436-
* google/bigtable/admin/v2/instance.proto;l=406
6436+
* google/bigtable/admin/v2/instance.proto;l=421
64376437
* @param value The enum numeric value on the wire for priority to set.
64386438
* @return This builder for chaining.
64396439
*/
@@ -6458,7 +6458,7 @@ public Builder setPriorityValue(int value) {
64586458
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
64596459
*
64606460
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6461-
* google/bigtable/admin/v2/instance.proto;l=406
6461+
* google/bigtable/admin/v2/instance.proto;l=421
64626462
* @return The priority.
64636463
*/
64646464
@java.lang.Override
@@ -6488,7 +6488,7 @@ public com.google.bigtable.admin.v2.AppProfile.Priority getPriority() {
64886488
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
64896489
*
64906490
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6491-
* google/bigtable/admin/v2/instance.proto;l=406
6491+
* google/bigtable/admin/v2/instance.proto;l=421
64926492
* @param value The priority to set.
64936493
* @return This builder for chaining.
64946494
*/
@@ -6516,7 +6516,7 @@ public Builder setPriority(com.google.bigtable.admin.v2.AppProfile.Priority valu
65166516
* <code>.google.bigtable.admin.v2.AppProfile.Priority priority = 7 [deprecated = true];</code>
65176517
*
65186518
* @deprecated google.bigtable.admin.v2.AppProfile.priority is deprecated. See
6519-
* google/bigtable/admin/v2/instance.proto;l=406
6519+
* google/bigtable/admin/v2/instance.proto;l=421
65206520
* @return This builder for chaining.
65216521
*/
65226522
@java.lang.Deprecated

0 commit comments

Comments
 (0)