Jeff Ching

Results 73 comments of Jeff Ching

This feature is already available in the `google-api-services-compute` library: ```java import com.google.api.client.http.javanet.NetHttpTransport; import com.google.api.client.json.jackson2.JacksonFactory; import com.google.api.services.compute.Compute; import com.google.api.services.compute.model.DisplayDevice; import com.google.api.services.compute.model.Instance; import com.google.api.services.compute.model.Operation; Compute compute = new Compute.Builder(new NetHttpTransport(), new JacksonFactory(),...

Ah, you have a *very* old version of the compute API and the supporting libraries. google-http-client is on version 1.32.1, google-api-client is on 1.30.4, google-api-services-compute is at v1-rev20190825-1.30.3 Is there...

How are you instantiating your http transport implementation for the API client? We suggest that you use either [`GoogleNetHttpTransport.newTrustedTransport()`](https://googleapis.dev/java/google-api-client/latest/com/google/api/client/googleapis/javanet/GoogleNetHttpTransport.html#newTrustedTransport--) or [`GoogleApacheHttpTransport.newTrustedTransport()`](https://googleapis.dev/java/google-api-client/latest/com/google/api/client/googleapis/apache/v2/GoogleApacheHttpTransport.html#newTrustedTransport--). These 2 helpers create `HttpTransport` instances that use include...

Can you point us to which link is broken?

These versions will change at a much different cadence (daily) than the google-api-client-bom artifact so I'm not sure that's feasible. Also, how important is this one as each of the...

Ok, that makes sense. We can also separate the cadence of releasing the bom from the artifacts. We likely don't need to publish it every day (even though individual artifacts...

This is actually blocked on #447 as we can only pick a single version of an API with the current versioning scheme. For example, we cannot include both `google-api-services-cloudresourcemanager`'s `v1`...

This repository contains over 100 client libraries. Which client and endpoint are you referring to?

Which client are you trying to use for authentication? Also a code snippet of what you are attempting to do would help.

cc @lsirac Will the upcoming 3pi credentials work better for this use case?