Skip to content

Commit b95370f

Browse files
cloud-java-botlqiu96
authored andcommitted
chore: Update generation configuration at Wed Aug 20 02:34:22 UTC 2025 (#2529)
* chore: Update generation configuration at Wed Aug 20 02:34:22 UTC 2025 * chore: generate libraries at Wed Aug 20 02:34:51 UTC 2025
1 parent 38e1f07 commit b95370f

File tree

9 files changed

+51
-7
lines changed

9 files changed

+51
-7
lines changed

.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.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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.52.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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.52.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.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.52.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
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.65.0</version>
22+
<version>26.66.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>

generation_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
gapic_generator_version: 2.61.0
2-
googleapis_commitish: d869249c5d3da60af39dc7968140468ef7d1fdd6
1+
gapic_generator_version: 2.62.0
2+
googleapis_commitish: 3b2a2ae91db23a9c879b2b725d6a5de6bd64a800
33
libraries_bom_version: 26.66.0
44
libraries:
55
- api_shortname: pubsub

google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/stub/GrpcPublisherStub.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public class GrpcPublisherStub extends PublisherStub {
6868
.setFullMethodName("google.pubsub.v1.Publisher/CreateTopic")
6969
.setRequestMarshaller(ProtoUtils.marshaller(Topic.getDefaultInstance()))
7070
.setResponseMarshaller(ProtoUtils.marshaller(Topic.getDefaultInstance()))
71+
.setSampledToLocalTracing(true)
7172
.build();
7273

7374
private static final MethodDescriptor<UpdateTopicRequest, Topic> updateTopicMethodDescriptor =
@@ -76,6 +77,7 @@ public class GrpcPublisherStub extends PublisherStub {
7677
.setFullMethodName("google.pubsub.v1.Publisher/UpdateTopic")
7778
.setRequestMarshaller(ProtoUtils.marshaller(UpdateTopicRequest.getDefaultInstance()))
7879
.setResponseMarshaller(ProtoUtils.marshaller(Topic.getDefaultInstance()))
80+
.setSampledToLocalTracing(true)
7981
.build();
8082

8183
private static final MethodDescriptor<PublishRequest, PublishResponse> publishMethodDescriptor =
@@ -84,6 +86,7 @@ public class GrpcPublisherStub extends PublisherStub {
8486
.setFullMethodName("google.pubsub.v1.Publisher/Publish")
8587
.setRequestMarshaller(ProtoUtils.marshaller(PublishRequest.getDefaultInstance()))
8688
.setResponseMarshaller(ProtoUtils.marshaller(PublishResponse.getDefaultInstance()))
89+
.setSampledToLocalTracing(true)
8790
.build();
8891

8992
private static final MethodDescriptor<GetTopicRequest, Topic> getTopicMethodDescriptor =
@@ -92,6 +95,7 @@ public class GrpcPublisherStub extends PublisherStub {
9295
.setFullMethodName("google.pubsub.v1.Publisher/GetTopic")
9396
.setRequestMarshaller(ProtoUtils.marshaller(GetTopicRequest.getDefaultInstance()))
9497
.setResponseMarshaller(ProtoUtils.marshaller(Topic.getDefaultInstance()))
98+
.setSampledToLocalTracing(true)
9599
.build();
96100

97101
private static final MethodDescriptor<ListTopicsRequest, ListTopicsResponse>
@@ -101,6 +105,7 @@ public class GrpcPublisherStub extends PublisherStub {
101105
.setFullMethodName("google.pubsub.v1.Publisher/ListTopics")
102106
.setRequestMarshaller(ProtoUtils.marshaller(ListTopicsRequest.getDefaultInstance()))
103107
.setResponseMarshaller(ProtoUtils.marshaller(ListTopicsResponse.getDefaultInstance()))
108+
.setSampledToLocalTracing(true)
104109
.build();
105110

106111
private static final MethodDescriptor<
@@ -114,6 +119,7 @@ public class GrpcPublisherStub extends PublisherStub {
114119
ProtoUtils.marshaller(ListTopicSubscriptionsRequest.getDefaultInstance()))
115120
.setResponseMarshaller(
116121
ProtoUtils.marshaller(ListTopicSubscriptionsResponse.getDefaultInstance()))
122+
.setSampledToLocalTracing(true)
117123
.build();
118124

119125
private static final MethodDescriptor<ListTopicSnapshotsRequest, ListTopicSnapshotsResponse>
@@ -125,6 +131,7 @@ public class GrpcPublisherStub extends PublisherStub {
125131
ProtoUtils.marshaller(ListTopicSnapshotsRequest.getDefaultInstance()))
126132
.setResponseMarshaller(
127133
ProtoUtils.marshaller(ListTopicSnapshotsResponse.getDefaultInstance()))
134+
.setSampledToLocalTracing(true)
128135
.build();
129136

130137
private static final MethodDescriptor<DeleteTopicRequest, Empty> deleteTopicMethodDescriptor =
@@ -133,6 +140,7 @@ public class GrpcPublisherStub extends PublisherStub {
133140
.setFullMethodName("google.pubsub.v1.Publisher/DeleteTopic")
134141
.setRequestMarshaller(ProtoUtils.marshaller(DeleteTopicRequest.getDefaultInstance()))
135142
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
143+
.setSampledToLocalTracing(true)
136144
.build();
137145

138146
private static final MethodDescriptor<DetachSubscriptionRequest, DetachSubscriptionResponse>
@@ -144,6 +152,7 @@ public class GrpcPublisherStub extends PublisherStub {
144152
ProtoUtils.marshaller(DetachSubscriptionRequest.getDefaultInstance()))
145153
.setResponseMarshaller(
146154
ProtoUtils.marshaller(DetachSubscriptionResponse.getDefaultInstance()))
155+
.setSampledToLocalTracing(true)
147156
.build();
148157

149158
private static final MethodDescriptor<SetIamPolicyRequest, Policy> setIamPolicyMethodDescriptor =
@@ -152,6 +161,7 @@ public class GrpcPublisherStub extends PublisherStub {
152161
.setFullMethodName("google.iam.v1.IAMPolicy/SetIamPolicy")
153162
.setRequestMarshaller(ProtoUtils.marshaller(SetIamPolicyRequest.getDefaultInstance()))
154163
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
164+
.setSampledToLocalTracing(true)
155165
.build();
156166

157167
private static final MethodDescriptor<GetIamPolicyRequest, Policy> getIamPolicyMethodDescriptor =
@@ -160,6 +170,7 @@ public class GrpcPublisherStub extends PublisherStub {
160170
.setFullMethodName("google.iam.v1.IAMPolicy/GetIamPolicy")
161171
.setRequestMarshaller(ProtoUtils.marshaller(GetIamPolicyRequest.getDefaultInstance()))
162172
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
173+
.setSampledToLocalTracing(true)
163174
.build();
164175

165176
private static final MethodDescriptor<TestIamPermissionsRequest, TestIamPermissionsResponse>
@@ -171,6 +182,7 @@ public class GrpcPublisherStub extends PublisherStub {
171182
ProtoUtils.marshaller(TestIamPermissionsRequest.getDefaultInstance()))
172183
.setResponseMarshaller(
173184
ProtoUtils.marshaller(TestIamPermissionsResponse.getDefaultInstance()))
185+
.setSampledToLocalTracing(true)
174186
.build();
175187

176188
private final UnaryCallable<Topic, Topic> createTopicCallable;

google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/v1/stub/GrpcSchemaServiceStub.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
6868
.setFullMethodName("google.pubsub.v1.SchemaService/CreateSchema")
6969
.setRequestMarshaller(ProtoUtils.marshaller(CreateSchemaRequest.getDefaultInstance()))
7070
.setResponseMarshaller(ProtoUtils.marshaller(Schema.getDefaultInstance()))
71+
.setSampledToLocalTracing(true)
7172
.build();
7273

7374
private static final MethodDescriptor<GetSchemaRequest, Schema> getSchemaMethodDescriptor =
@@ -76,6 +77,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
7677
.setFullMethodName("google.pubsub.v1.SchemaService/GetSchema")
7778
.setRequestMarshaller(ProtoUtils.marshaller(GetSchemaRequest.getDefaultInstance()))
7879
.setResponseMarshaller(ProtoUtils.marshaller(Schema.getDefaultInstance()))
80+
.setSampledToLocalTracing(true)
7981
.build();
8082

8183
private static final MethodDescriptor<ListSchemasRequest, ListSchemasResponse>
@@ -86,6 +88,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
8688
.setRequestMarshaller(ProtoUtils.marshaller(ListSchemasRequest.getDefaultInstance()))
8789
.setResponseMarshaller(
8890
ProtoUtils.marshaller(ListSchemasResponse.getDefaultInstance()))
91+
.setSampledToLocalTracing(true)
8992
.build();
9093

9194
private static final MethodDescriptor<ListSchemaRevisionsRequest, ListSchemaRevisionsResponse>
@@ -97,6 +100,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
97100
ProtoUtils.marshaller(ListSchemaRevisionsRequest.getDefaultInstance()))
98101
.setResponseMarshaller(
99102
ProtoUtils.marshaller(ListSchemaRevisionsResponse.getDefaultInstance()))
103+
.setSampledToLocalTracing(true)
100104
.build();
101105

102106
private static final MethodDescriptor<CommitSchemaRequest, Schema> commitSchemaMethodDescriptor =
@@ -105,6 +109,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
105109
.setFullMethodName("google.pubsub.v1.SchemaService/CommitSchema")
106110
.setRequestMarshaller(ProtoUtils.marshaller(CommitSchemaRequest.getDefaultInstance()))
107111
.setResponseMarshaller(ProtoUtils.marshaller(Schema.getDefaultInstance()))
112+
.setSampledToLocalTracing(true)
108113
.build();
109114

110115
private static final MethodDescriptor<RollbackSchemaRequest, Schema>
@@ -115,6 +120,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
115120
.setRequestMarshaller(
116121
ProtoUtils.marshaller(RollbackSchemaRequest.getDefaultInstance()))
117122
.setResponseMarshaller(ProtoUtils.marshaller(Schema.getDefaultInstance()))
123+
.setSampledToLocalTracing(true)
118124
.build();
119125

120126
private static final MethodDescriptor<DeleteSchemaRevisionRequest, Schema>
@@ -125,6 +131,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
125131
.setRequestMarshaller(
126132
ProtoUtils.marshaller(DeleteSchemaRevisionRequest.getDefaultInstance()))
127133
.setResponseMarshaller(ProtoUtils.marshaller(Schema.getDefaultInstance()))
134+
.setSampledToLocalTracing(true)
128135
.build();
129136

130137
private static final MethodDescriptor<DeleteSchemaRequest, Empty> deleteSchemaMethodDescriptor =
@@ -133,6 +140,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
133140
.setFullMethodName("google.pubsub.v1.SchemaService/DeleteSchema")
134141
.setRequestMarshaller(ProtoUtils.marshaller(DeleteSchemaRequest.getDefaultInstance()))
135142
.setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
143+
.setSampledToLocalTracing(true)
136144
.build();
137145

138146
private static final MethodDescriptor<ValidateSchemaRequest, ValidateSchemaResponse>
@@ -144,6 +152,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
144152
ProtoUtils.marshaller(ValidateSchemaRequest.getDefaultInstance()))
145153
.setResponseMarshaller(
146154
ProtoUtils.marshaller(ValidateSchemaResponse.getDefaultInstance()))
155+
.setSampledToLocalTracing(true)
147156
.build();
148157

149158
private static final MethodDescriptor<ValidateMessageRequest, ValidateMessageResponse>
@@ -155,6 +164,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
155164
ProtoUtils.marshaller(ValidateMessageRequest.getDefaultInstance()))
156165
.setResponseMarshaller(
157166
ProtoUtils.marshaller(ValidateMessageResponse.getDefaultInstance()))
167+
.setSampledToLocalTracing(true)
158168
.build();
159169

160170
private static final MethodDescriptor<SetIamPolicyRequest, Policy> setIamPolicyMethodDescriptor =
@@ -163,6 +173,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
163173
.setFullMethodName("google.iam.v1.IAMPolicy/SetIamPolicy")
164174
.setRequestMarshaller(ProtoUtils.marshaller(SetIamPolicyRequest.getDefaultInstance()))
165175
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
176+
.setSampledToLocalTracing(true)
166177
.build();
167178

168179
private static final MethodDescriptor<GetIamPolicyRequest, Policy> getIamPolicyMethodDescriptor =
@@ -171,6 +182,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
171182
.setFullMethodName("google.iam.v1.IAMPolicy/GetIamPolicy")
172183
.setRequestMarshaller(ProtoUtils.marshaller(GetIamPolicyRequest.getDefaultInstance()))
173184
.setResponseMarshaller(ProtoUtils.marshaller(Policy.getDefaultInstance()))
185+
.setSampledToLocalTracing(true)
174186
.build();
175187

176188
private static final MethodDescriptor<TestIamPermissionsRequest, TestIamPermissionsResponse>
@@ -182,6 +194,7 @@ public class GrpcSchemaServiceStub extends SchemaServiceStub {
182194
ProtoUtils.marshaller(TestIamPermissionsRequest.getDefaultInstance()))
183195
.setResponseMarshaller(
184196
ProtoUtils.marshaller(TestIamPermissionsResponse.getDefaultInstance()))
197+
.setSampledToLocalTracing(true)
185198
.build();
186199

187200
private final UnaryCallable<CreateSchemaRequest, Schema> createSchemaCallable;

0 commit comments

Comments
 (0)