Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit f63b305

Browse files
feat: re-generated to pick up changes in the API or client library generator. (#59)
1 parent 4271524 commit f63b305

33 files changed

+46
-481
lines changed

.kokoro/linkage-monitor.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ cd github/java-bigquerystorage/
2323
java -version
2424
echo ${JOB_TYPE}
2525

26-
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgcloud.download.skip=true -B -V
26+
mvn install -B -V \
27+
-DskipTests=true \
28+
-Dclirr.skip=true \
29+
-Denforcer.skip=true \
30+
-Dmaven.javadoc.skip=true \
31+
-Dgcloud.download.skip=true
2732

2833
# Kokoro job cloud-opensource-java/ubuntu/linkage-monitor-gcs creates this JAR
2934
JAR=linkage-monitor-latest-all-deps.jar

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/BigQueryWriteClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/BigQueryWriteSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/stub/BigQueryWriteStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/stub/BigQueryWriteStubSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/stub/GrpcBigQueryWriteCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/stub/GrpcBigQueryWriteStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageClient.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -198,7 +198,6 @@ public BigQueryStorageStub getStub() {
198198
*/
199199
public final ReadSession createReadSession(
200200
TableReference tableReference, String parent, int requestedStreams) {
201-
202201
CreateReadSessionRequest request =
203202
CreateReadSessionRequest.newBuilder()
204203
.setTableReference(tableReference)
@@ -329,7 +328,6 @@ public final ServerStreamingCallable<ReadRowsRequest, ReadRowsResponse> readRows
329328
*/
330329
public final BatchCreateReadSessionStreamsResponse batchCreateReadSessionStreams(
331330
ReadSession session, int requestedStreams) {
332-
333331
BatchCreateReadSessionStreamsRequest request =
334332
BatchCreateReadSessionStreamsRequest.newBuilder()
335333
.setSession(session)
@@ -419,7 +417,6 @@ public final BatchCreateReadSessionStreamsResponse batchCreateReadSessionStreams
419417
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
420418
*/
421419
public final void finalizeStream(Stream stream) {
422-
423420
FinalizeStreamRequest request = FinalizeStreamRequest.newBuilder().setStream(stream).build();
424421
finalizeStream(request);
425422
}
@@ -516,7 +513,6 @@ public final UnaryCallable<FinalizeStreamRequest, Empty> finalizeStreamCallable(
516513
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
517514
*/
518515
public final SplitReadStreamResponse splitReadStream(Stream originalStream) {
519-
520516
SplitReadStreamRequest request =
521517
SplitReadStreamRequest.newBuilder().setOriginalStream(originalStream).build();
522518
return splitReadStream(request);

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019 Google LLC
2+
* Copyright 2020 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)