Skip to content

Commit 061691c

Browse files
authored
feat: v1alpha client generation (#2615)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/java-bigquerystorage/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary)
1 parent fc59d83 commit 061691c

File tree

213 files changed

+30611
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+30611
-151
lines changed

.github/workflows/hermetic_library_generation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424
jobs:
2525
library_generation:
2626
# skip pull requests coming from a forked repository
27-
if: github.env.REPO_FULL_NAME == github.repository
27+
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
2828
runs-on: ubuntu-latest
2929
steps:
3030
- uses: actions/checkout@v4

README.md

+5-5
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.43.0</version>
22+
<version>26.44.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -42,7 +42,7 @@ If you are using Maven without the BOM, add this to your dependencies:
4242
<dependency>
4343
<groupId>com.google.cloud</groupId>
4444
<artifactId>google-cloud-bigquerystorage</artifactId>
45-
<version>3.8.0</version>
45+
<version>3.8.1</version>
4646
</dependency>
4747

4848
```
@@ -57,13 +57,13 @@ implementation 'com.google.cloud:google-cloud-bigquerystorage'
5757
If you are using Gradle without BOM, add this to your dependencies:
5858

5959
```Groovy
60-
implementation 'com.google.cloud:google-cloud-bigquerystorage:3.8.0'
60+
implementation 'com.google.cloud:google-cloud-bigquerystorage:3.8.1'
6161
```
6262

6363
If you are using SBT, add this to your dependencies:
6464

6565
```Scala
66-
libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "3.8.0"
66+
libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "3.8.1"
6767
```
6868
<!-- {x-version-update-end} -->
6969

@@ -219,7 +219,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
219219
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigquerystorage/java11.html
220220
[stability-image]: https://img.shields.io/badge/stability-stable-green
221221
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-bigquerystorage.svg
222-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigquerystorage/3.8.0
222+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigquerystorage/3.8.1
223223
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
224224
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
225225
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

generation_config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ libraries:
2121
recommended_package: com.google.cloud.bigquery.storage.v1
2222
GAPICs:
2323
- proto_path: google/cloud/bigquery/storage/v1
24+
- proto_path: google/cloud/bigquery/storage/v1alpha
2425
- proto_path: google/cloud/bigquery/storage/v1beta1
2526
- proto_path: google/cloud/bigquery/storage/v1beta2

google-cloud-bigquerystorage-bom/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@
6969
<artifactId>grpc-google-cloud-bigquerystorage-v1</artifactId>
7070
<version>3.8.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-bigquerystorage-v1:current} -->
7171
</dependency>
72+
<dependency>
73+
<groupId>com.google.api.grpc</groupId>
74+
<artifactId>grpc-google-cloud-bigquerystorage-v1alpha</artifactId>
75+
<version>3.8.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-bigquerystorage-v1alpha:current} -->
76+
</dependency>
7277
<dependency>
7378
<groupId>com.google.api.grpc</groupId>
7479
<artifactId>proto-google-cloud-bigquerystorage-v1beta1</artifactId>
@@ -84,6 +89,11 @@
8489
<artifactId>proto-google-cloud-bigquerystorage-v1</artifactId>
8590
<version>3.8.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-bigquerystorage-v1:current} -->
8691
</dependency>
92+
<dependency>
93+
<groupId>com.google.api.grpc</groupId>
94+
<artifactId>proto-google-cloud-bigquerystorage-v1alpha</artifactId>
95+
<version>3.8.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-bigquerystorage-v1alpha:current} -->
96+
</dependency>
8797
</dependencies>
8898
</dependencyManagement>
8999

google-cloud-bigquerystorage/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@
9898
<groupId>com.google.api.grpc</groupId>
9999
<artifactId>proto-google-common-protos</artifactId>
100100
</dependency>
101+
<dependency>
102+
<groupId>com.google.api.grpc</groupId>
103+
<artifactId>proto-google-cloud-bigquerystorage-v1alpha</artifactId>
104+
</dependency>
101105
<dependency>
102106
<groupId>com.google.api.grpc</groupId>
103107
<artifactId>proto-google-cloud-bigquerystorage-v1beta1</artifactId>
@@ -241,6 +245,11 @@
241245
<groupId>com.google.api.grpc</groupId>
242246
<artifactId>grpc-google-cloud-bigquerystorage-v1beta1</artifactId>
243247
</dependency>
248+
<dependency>
249+
<groupId>com.google.api.grpc</groupId>
250+
<artifactId>grpc-google-cloud-bigquerystorage-v1alpha</artifactId>
251+
<scope>test</scope>
252+
</dependency>
244253
<dependency>
245254
<groupId>com.google.api.grpc</groupId>
246255
<artifactId>grpc-google-cloud-bigquerystorage-v1beta2</artifactId>

0 commit comments

Comments
 (0)