Skip to content

Commit 469290e

Browse files
chore: Update generation configuration at Sat Oct 11 02:32:04 UTC 2025 (#2653)
This pull request is generated with proto changes between [googleapis/googleapis@b031657](https://togithub.com/googleapis/googleapis/commit/b0316578aaf7434e3c5bb93badd252f67aacf8d5) (exclusive) and [googleapis/googleapis@6821943](https://togithub.com/googleapis/googleapis/commit/6821943108fe3284f483defc9b60774a3752de2b) (inclusive). BEGIN_COMMIT_OVERRIDE BEGIN_NESTED_COMMIT fix(deps): update the Java code generator (gapic-generator-java) to 2.62.3 END_NESTED_COMMIT BEGIN_NESTED_COMMIT chore: update the libraries_bom version to 26.70.0 END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat: Add Type API updates needed to support structured keys in materialized views feat: Add encodings for STRUCT and the Timestamp type PiperOrigin-RevId: 805031861 Source Link: [googleapis/googleapis@6d1dca2](https://togithub.com/googleapis/googleapis/commit/6d1dca2b8e3d50914609414e219df2778b2b20ba) END_NESTED_COMMIT BEGIN_NESTED_COMMIT fix: Fixed the bigtableadmin API name for snippet region tags and possibly other GAPIC attributes PiperOrigin-RevId: 797086089 Source Link: [googleapis/googleapis@3b2a2ae](https://togithub.com/googleapis/googleapis/commit/3b2a2ae91db23a9c879b2b725d6a5de6bd64a800) END_NESTED_COMMIT BEGIN_NESTED_COMMIT fix: Add ReadRows/SampleRowKeys bindings for materialized views PiperOrigin-RevId: 793800781 Source Link: [googleapis/googleapis@fe06a49](https://togithub.com/googleapis/googleapis/commit/fe06a492944dc3a8360ed5b426942d34631eeca7) END_NESTED_COMMIT END_COMMIT_OVERRIDE
1 parent 62a1812 commit 469290e

File tree

18 files changed

+10337
-3845
lines changed

18 files changed

+10337
-3845
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
java: [11, 17, 21, 24]
28+
java: [11, 17, 21, 25]
2929
steps:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-java@v4

.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.61.0
40+
- uses: googleapis/sdk-platform-java/.github/scripts@v2.62.3
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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.52.3" # {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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.52.3" # {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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.52.3" # {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.65.0')
52+
implementation platform('com.google.cloud:libraries-bom:26.70.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.61.0
2-
googleapis_commitish: b0316578aaf7434e3c5bb93badd252f67aacf8d5
3-
libraries_bom_version: 26.65.0
1+
gapic_generator_version: 2.62.3
2+
googleapis_commitish: 6821943108fe3284f483defc9b60774a3752de2b
3+
libraries_bom_version: 26.70.0
44
template_excludes:
55
- .gitignore
66
- .kokoro/presubmit/integration.cfg

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

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
104104
.setRequestMarshaller(
105105
ProtoUtils.marshaller(CreateInstanceRequest.getDefaultInstance()))
106106
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
107+
.setSampledToLocalTracing(true)
107108
.build();
108109

109110
private static final MethodDescriptor<GetInstanceRequest, Instance> getInstanceMethodDescriptor =
@@ -112,6 +113,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
112113
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/GetInstance")
113114
.setRequestMarshaller(ProtoUtils.marshaller(GetInstanceRequest.getDefaultInstance()))
114115
.setResponseMarshaller(ProtoUtils.marshaller(Instance.getDefaultInstance()))
116+
.setSampledToLocalTracing(true)
115117
.build();
116118

117119
private static final MethodDescriptor<ListInstancesRequest, ListInstancesResponse>
@@ -123,6 +125,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
123125
ProtoUtils.marshaller(ListInstancesRequest.getDefaultInstance()))
124126
.setResponseMarshaller(
125127
ProtoUtils.marshaller(ListInstancesResponse.getDefaultInstance()))
128+
.setSampledToLocalTracing(true)
126129
.build();
127130

128131
private static final MethodDescriptor<Instance, Instance> updateInstanceMethodDescriptor =
@@ -131,6 +134,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
131134
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateInstance")
132135
.setRequestMarshaller(ProtoUtils.marshaller(Instance.getDefaultInstance()))
133136
.setResponseMarshaller(ProtoUtils.marshaller(Instance.getDefaultInstance()))
137+
.setSampledToLocalTracing(true)
134138
.build();
135139

136140
private static final MethodDescriptor<PartialUpdateInstanceRequest, Operation>
@@ -142,6 +146,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
142146
.setRequestMarshaller(
143147
ProtoUtils.marshaller(PartialUpdateInstanceRequest.getDefaultInstance()))
144148
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
149+
.setSampledToLocalTracing(true)
145150
.build();
146151

147152
private static final MethodDescriptor<DeleteInstanceRequest, Empty>
@@ -152,6 +157,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
152157
.setRequestMarshaller(
153158
ProtoUtils.marshaller(DeleteInstanceRequest.getDefaultInstance()))
154159
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
160+
.setSampledToLocalTracing(true)
155161
.build();
156162

157163
private static final MethodDescriptor<CreateClusterRequest, Operation>
@@ -162,6 +168,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
162168
.setRequestMarshaller(
163169
ProtoUtils.marshaller(CreateClusterRequest.getDefaultInstance()))
164170
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
171+
.setSampledToLocalTracing(true)
165172
.build();
166173

167174
private static final MethodDescriptor<GetClusterRequest, Cluster> getClusterMethodDescriptor =
@@ -170,6 +177,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
170177
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/GetCluster")
171178
.setRequestMarshaller(ProtoUtils.marshaller(GetClusterRequest.getDefaultInstance()))
172179
.setResponseMarshaller(ProtoUtils.marshaller(Cluster.getDefaultInstance()))
180+
.setSampledToLocalTracing(true)
173181
.build();
174182

175183
private static final MethodDescriptor<ListClustersRequest, ListClustersResponse>
@@ -180,6 +188,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
180188
.setRequestMarshaller(ProtoUtils.marshaller(ListClustersRequest.getDefaultInstance()))
181189
.setResponseMarshaller(
182190
ProtoUtils.marshaller(ListClustersResponse.getDefaultInstance()))
191+
.setSampledToLocalTracing(true)
183192
.build();
184193

185194
private static final MethodDescriptor<Cluster, Operation> updateClusterMethodDescriptor =
@@ -188,6 +197,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
188197
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateCluster")
189198
.setRequestMarshaller(ProtoUtils.marshaller(Cluster.getDefaultInstance()))
190199
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
200+
.setSampledToLocalTracing(true)
191201
.build();
192202

193203
private static final MethodDescriptor<PartialUpdateClusterRequest, Operation>
@@ -199,6 +209,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
199209
.setRequestMarshaller(
200210
ProtoUtils.marshaller(PartialUpdateClusterRequest.getDefaultInstance()))
201211
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
212+
.setSampledToLocalTracing(true)
202213
.build();
203214

204215
private static final MethodDescriptor<DeleteClusterRequest, Empty> deleteClusterMethodDescriptor =
@@ -207,6 +218,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
207218
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/DeleteCluster")
208219
.setRequestMarshaller(ProtoUtils.marshaller(DeleteClusterRequest.getDefaultInstance()))
209220
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
221+
.setSampledToLocalTracing(true)
210222
.build();
211223

212224
private static final MethodDescriptor<CreateAppProfileRequest, AppProfile>
@@ -217,6 +229,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
217229
.setRequestMarshaller(
218230
ProtoUtils.marshaller(CreateAppProfileRequest.getDefaultInstance()))
219231
.setResponseMarshaller(ProtoUtils.marshaller(AppProfile.getDefaultInstance()))
232+
.setSampledToLocalTracing(true)
220233
.build();
221234

222235
private static final MethodDescriptor<GetAppProfileRequest, AppProfile>
@@ -227,6 +240,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
227240
.setRequestMarshaller(
228241
ProtoUtils.marshaller(GetAppProfileRequest.getDefaultInstance()))
229242
.setResponseMarshaller(ProtoUtils.marshaller(AppProfile.getDefaultInstance()))
243+
.setSampledToLocalTracing(true)
230244
.build();
231245

232246
private static final MethodDescriptor<ListAppProfilesRequest, ListAppProfilesResponse>
@@ -238,6 +252,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
238252
ProtoUtils.marshaller(ListAppProfilesRequest.getDefaultInstance()))
239253
.setResponseMarshaller(
240254
ProtoUtils.marshaller(ListAppProfilesResponse.getDefaultInstance()))
255+
.setSampledToLocalTracing(true)
241256
.build();
242257

243258
private static final MethodDescriptor<UpdateAppProfileRequest, Operation>
@@ -248,6 +263,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
248263
.setRequestMarshaller(
249264
ProtoUtils.marshaller(UpdateAppProfileRequest.getDefaultInstance()))
250265
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
266+
.setSampledToLocalTracing(true)
251267
.build();
252268

253269
private static final MethodDescriptor<DeleteAppProfileRequest, Empty>
@@ -258,6 +274,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
258274
.setRequestMarshaller(
259275
ProtoUtils.marshaller(DeleteAppProfileRequest.getDefaultInstance()))
260276
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
277+
.setSampledToLocalTracing(true)
261278
.build();
262279

263280
private static final MethodDescriptor<GetIamPolicyRequest, Policy> getIamPolicyMethodDescriptor =
@@ -266,6 +283,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
266283
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/GetIamPolicy")
267284
.setRequestMarshaller(ProtoUtils.marshaller(GetIamPolicyRequest.getDefaultInstance()))
268285
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
286+
.setSampledToLocalTracing(true)
269287
.build();
270288

271289
private static final MethodDescriptor<SetIamPolicyRequest, Policy> setIamPolicyMethodDescriptor =
@@ -274,6 +292,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
274292
.setFullMethodName("google.bigtable.admin.v2.BigtableInstanceAdmin/SetIamPolicy")
275293
.setRequestMarshaller(ProtoUtils.marshaller(SetIamPolicyRequest.getDefaultInstance()))
276294
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
295+
.setSampledToLocalTracing(true)
277296
.build();
278297

279298
private static final MethodDescriptor<TestIamPermissionsRequest, TestIamPermissionsResponse>
@@ -286,6 +305,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
286305
ProtoUtils.marshaller(TestIamPermissionsRequest.getDefaultInstance()))
287306
.setResponseMarshaller(
288307
ProtoUtils.marshaller(TestIamPermissionsResponse.getDefaultInstance()))
308+
.setSampledToLocalTracing(true)
289309
.build();
290310

291311
private static final MethodDescriptor<ListHotTabletsRequest, ListHotTabletsResponse>
@@ -297,6 +317,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
297317
ProtoUtils.marshaller(ListHotTabletsRequest.getDefaultInstance()))
298318
.setResponseMarshaller(
299319
ProtoUtils.marshaller(ListHotTabletsResponse.getDefaultInstance()))
320+
.setSampledToLocalTracing(true)
300321
.build();
301322

302323
private static final MethodDescriptor<CreateLogicalViewRequest, Operation>
@@ -307,6 +328,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
307328
.setRequestMarshaller(
308329
ProtoUtils.marshaller(CreateLogicalViewRequest.getDefaultInstance()))
309330
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
331+
.setSampledToLocalTracing(true)
310332
.build();
311333

312334
private static final MethodDescriptor<GetLogicalViewRequest, LogicalView>
@@ -317,6 +339,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
317339
.setRequestMarshaller(
318340
ProtoUtils.marshaller(GetLogicalViewRequest.getDefaultInstance()))
319341
.setResponseMarshaller(ProtoUtils.marshaller(LogicalView.getDefaultInstance()))
342+
.setSampledToLocalTracing(true)
320343
.build();
321344

322345
private static final MethodDescriptor<ListLogicalViewsRequest, ListLogicalViewsResponse>
@@ -328,6 +351,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
328351
ProtoUtils.marshaller(ListLogicalViewsRequest.getDefaultInstance()))
329352
.setResponseMarshaller(
330353
ProtoUtils.marshaller(ListLogicalViewsResponse.getDefaultInstance()))
354+
.setSampledToLocalTracing(true)
331355
.build();
332356

333357
private static final MethodDescriptor<UpdateLogicalViewRequest, Operation>
@@ -338,6 +362,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
338362
.setRequestMarshaller(
339363
ProtoUtils.marshaller(UpdateLogicalViewRequest.getDefaultInstance()))
340364
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
365+
.setSampledToLocalTracing(true)
341366
.build();
342367

343368
private static final MethodDescriptor<DeleteLogicalViewRequest, Empty>
@@ -348,6 +373,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
348373
.setRequestMarshaller(
349374
ProtoUtils.marshaller(DeleteLogicalViewRequest.getDefaultInstance()))
350375
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
376+
.setSampledToLocalTracing(true)
351377
.build();
352378

353379
private static final MethodDescriptor<CreateMaterializedViewRequest, Operation>
@@ -359,6 +385,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
359385
.setRequestMarshaller(
360386
ProtoUtils.marshaller(CreateMaterializedViewRequest.getDefaultInstance()))
361387
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
388+
.setSampledToLocalTracing(true)
362389
.build();
363390

364391
private static final MethodDescriptor<GetMaterializedViewRequest, MaterializedView>
@@ -370,6 +397,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
370397
.setRequestMarshaller(
371398
ProtoUtils.marshaller(GetMaterializedViewRequest.getDefaultInstance()))
372399
.setResponseMarshaller(ProtoUtils.marshaller(MaterializedView.getDefaultInstance()))
400+
.setSampledToLocalTracing(true)
373401
.build();
374402

375403
private static final MethodDescriptor<ListMaterializedViewsRequest, ListMaterializedViewsResponse>
@@ -382,6 +410,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
382410
ProtoUtils.marshaller(ListMaterializedViewsRequest.getDefaultInstance()))
383411
.setResponseMarshaller(
384412
ProtoUtils.marshaller(ListMaterializedViewsResponse.getDefaultInstance()))
413+
.setSampledToLocalTracing(true)
385414
.build();
386415

387416
private static final MethodDescriptor<UpdateMaterializedViewRequest, Operation>
@@ -393,6 +422,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
393422
.setRequestMarshaller(
394423
ProtoUtils.marshaller(UpdateMaterializedViewRequest.getDefaultInstance()))
395424
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
425+
.setSampledToLocalTracing(true)
396426
.build();
397427

398428
private static final MethodDescriptor<DeleteMaterializedViewRequest, Empty>
@@ -404,6 +434,7 @@ public class GrpcBigtableInstanceAdminStub extends BigtableInstanceAdminStub {
404434
.setRequestMarshaller(
405435
ProtoUtils.marshaller(DeleteMaterializedViewRequest.getDefaultInstance()))
406436
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
437+
.setSampledToLocalTracing(true)
407438
.build();
408439

409440
private final UnaryCallable<CreateInstanceRequest, Operation> createInstanceCallable;

0 commit comments

Comments
 (0)