gapic-generator-java
gapic-generator-java copied to clipboard
Generates GAPIC Java client libraries from protobufs.
The build has failed : https://github.com/googleapis/gapic-generator-java/actions/runs/6765155734
The build has failed : https://github.com/googleapis/gapic-generator-java/actions/runs/8747027231
We currently have [downstream check](https://github.com/googleapis/sdk-platform-java/blob/main/.kokoro/presubmit/downstream-compatibility.sh) that validates any changes in Gax or shared dependencies would not break downstream(java-bigtable etc.) libraries. However, it does not include changes from the generator, which...
On HTTP exceptions, exceptions that should be `ALREADY_EXISTS` (409) are being propagated as `ABORTED` (also 409). This code change seems to have removed the behavior: https://github.com/googleapis/sdk-platform-java/commit/cdf461425812f5392436fcd8b4dc6096347036c9#diff-ecd504e117f5a7eedb2f2df5df3a32ac6bc85e21c870ff702c0de2771b33a21eL125-L129  Is there a...
SonarCloud has been reporting 0 coverage for all PRs in the past few months. It was working for a [PR](https://github.com/googleapis/sdk-platform-java/pull/2105#issuecomment-1768979134) on 10/18/2023, but not for a [PR](https://github.com/googleapis/sdk-platform-java/pull/2275#issuecomment-1846186365) on 12/7/2023. We...
With java-shared-config:1.6.0, the dependency management of graal-sdk in maven [was shifted from sdk-platform-java to java-shared-config. ](https://github.com/googleapis/java-shared-config/pull/687) However, for bazel, we still need to make an additional update to the graal-sdk...
Please add support for JPMS by adding a module-info.java file to the various libraries that make up sdk-platform-java. It will enable users to use [jlink](https://docs.oracle.com/en/java/javase/11/tools/jlink.html) with projects that depend on...
#### Environment details 1. GCE 2. gax 2.41.0 3. GOOGLE_CLOUD_ENABLE_DIRECT_PATH_XDS is set #### Details In https://github.com/googleapis/sdk-platform-java/pull/2105 we added warning logs for DirectPath misconfiguration. The logic is that we first check...
gax: Using DirectPath fails with NPE when using NoCredentialsProvider to support Downscoped tokens
@mohanli-ml can you help with this issue? cc: @danielduhh , @sydney-munro , and @arunkumarchacko #### Environment details 2. OS type and version: 3. Java version: 4. artifact version(s): com.google.api:gax-grpc:jar:2.39.0, com.google.cloud:google-cloud-storage:2.31.0...
GAPICs use the [EndpointContext ](https://github.com/googleapis/sdk-platform-java/blob/ba648ceac869d4fab1a9cbeb40f2e04f69dad4e3/gax-java/gax/src/main/java/com/google/api/gax/rpc/EndpointContext.java) to resolve the endpoint and universe domain. As of now, we are simply duplicating the logic between Gax-Java and Java-Core. We would like to be...