{
+ private ComplianceBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected ComplianceBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new ComplianceBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request. This method exercises
+ * sending the entire request object in the REST body.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataBody(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataBodyMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request. This method exercises
+ * sending the a message-type field in the REST body. Per AIP-127, only
+ * top-level, non-repeated fields can be sent this way.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataBodyInfo(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataBodyInfoMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request. This method exercises
+ * sending all request fields as query parameters.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataQuery(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataQueryMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request. This method exercises
+ * sending some parameters as "simple" path variables (i.e., of the form
+ * "/bar/{foo}" rather than "/{foo=bar/*}"), and the rest as query parameters.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataSimplePath(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataSimplePathMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Same as RepeatDataSimplePath, but with a path resource.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataPathResource(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataPathResourceMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Same as RepeatDataSimplePath, but with a trailing resource.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataPathTrailingResource(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataPathTrailingResourceMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request, using the HTTP PUT method.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataBodyPut(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataBodyPutMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method echoes the ComplianceData request, using the HTTP PATCH method.
+ *
+ */
+ public com.google.showcase.v1beta1.RepeatResponse repeatDataBodyPatch(com.google.showcase.v1beta1.RepeatRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getRepeatDataBodyPatchMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method requests an enum value from the server. Depending on the contents of EnumRequest, the enum value returned will be a known enum declared in the
+ * .proto file, or a made-up enum value the is unknown to the client. To verify that clients can round-trip unknown enum vaues they receive, use the
+ * response from this RPC as the request to VerifyEnum()
+ * The values of enums sent by the server when a known or unknown value is requested will be the same within a single Showcase server run (this is needed for
+ * VerifyEnum() to work) but are not guaranteed to be the same across separate Showcase server runs.
+ *
+ */
+ public com.google.showcase.v1beta1.EnumResponse getEnum(com.google.showcase.v1beta1.EnumRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetEnumMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method is used to verify that clients can round-trip enum values, which is particularly important for unknown enum values over REST. VerifyEnum()
+ * verifies that its request, which is presumably the response that the client previously got to a GetEnum(), contains the correct data. If so, it responds
+ * with the same EnumResponse; otherwise, the RPC errors.
+ * This works because the values of enums sent by the server when a known or unknown value is requested will be the same within a single Showcase server run,
+ * although they are not guaranteed to be the same across separate Showcase server runs.
+ *
+ */
+ public com.google.showcase.v1beta1.EnumResponse verifyEnum(com.google.showcase.v1beta1.EnumResponse request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getVerifyEnumMethod(), getCallOptions(), request);
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service Compliance.
+ *
+ * This service is used to test that GAPICs implement various REST-related features correctly. This mostly means transcoding proto3 requests to REST format
+ * correctly for various types of HTTP annotations, but it also includes verifying that unknown (numeric) enums received by clients can be round-tripped
+ * correctly.
+ *
+ */
public static final class ComplianceBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private ComplianceBlockingStub(
diff --git a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/EchoGrpc.java b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/EchoGrpc.java
index 907089a5e7..88dfc51bf7 100644
--- a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/EchoGrpc.java
+++ b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/EchoGrpc.java
@@ -348,6 +348,21 @@ public EchoStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions
return EchoStub.newStub(factory, channel);
}
+ /**
+ * Creates a new blocking-style stub that supports all types of calls on the service
+ */
+ public static EchoBlockingV2Stub newBlockingV2Stub(
+ io.grpc.Channel channel) {
+ io.grpc.stub.AbstractStub.StubFactory factory =
+ new io.grpc.stub.AbstractStub.StubFactory() {
+ @java.lang.Override
+ public EchoBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new EchoBlockingV2Stub(channel, callOptions);
+ }
+ };
+ return EchoBlockingV2Stub.newStub(factory, channel);
+ }
+
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
@@ -700,6 +715,158 @@ public void block(com.google.showcase.v1beta1.BlockRequest request,
* echoed in the response headers.
*
*/
+ public static final class EchoBlockingV2Stub
+ extends io.grpc.stub.AbstractBlockingStub {
+ private EchoBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected EchoBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new EchoBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * This method simply echoes the request. This method showcases unary RPCs.
+ *
+ */
+ public com.google.showcase.v1beta1.EchoResponse echo(com.google.showcase.v1beta1.EchoRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getEchoMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method returns error details in a repeated "google.protobuf.Any"
+ * field. This method showcases handling errors thus encoded, particularly
+ * over REST transport. Note that GAPICs only allow the type
+ * "google.protobuf.Any" for field paths ending in "error.details", and, at
+ * run-time, the actual types for these fields must be one of the types in
+ * google/rpc/error_details.proto.
+ *
+ */
+ public com.google.showcase.v1beta1.EchoErrorDetailsResponse echoErrorDetails(com.google.showcase.v1beta1.EchoErrorDetailsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getEchoErrorDetailsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method splits the given content into words and will pass each word back
+ * through the stream. This method showcases server-side streaming RPCs.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall, com.google.showcase.v1beta1.EchoResponse>
+ expand(com.google.showcase.v1beta1.ExpandRequest request) {
+ return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall(
+ getChannel(), getExpandMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method will collect the words given to it. When the stream is closed
+ * by the client, this method will return the a concatenation of the strings
+ * passed to it. This method showcases client-side streaming RPCs.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall
+ collect() {
+ return io.grpc.stub.ClientCalls.blockingClientStreamingCall(
+ getChannel(), getCollectMethod(), getCallOptions());
+ }
+
+ /**
+ *
+ * This method, upon receiving a request on the stream, will pass the same
+ * content back on the stream. This method showcases bidirectional
+ * streaming RPCs.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall
+ chat() {
+ return io.grpc.stub.ClientCalls.blockingBidiStreamingCall(
+ getChannel(), getChatMethod(), getCallOptions());
+ }
+
+ /**
+ *
+ * This is similar to the Expand method but instead of returning a stream of
+ * expanded words, this method returns a paged list of expanded words.
+ *
+ */
+ public com.google.showcase.v1beta1.PagedExpandResponse pagedExpand(com.google.showcase.v1beta1.PagedExpandRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getPagedExpandMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This is similar to the PagedExpand except that it uses
+ * max_results instead of page_size, as some legacy APIs still
+ * do. New APIs should NOT use this pattern.
+ *
+ */
+ public com.google.showcase.v1beta1.PagedExpandResponse pagedExpandLegacy(com.google.showcase.v1beta1.PagedExpandLegacyRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getPagedExpandLegacyMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method returns a map containing lists of words that appear in the input, keyed by their
+ * initial character. The only words returned are the ones included in the current page,
+ * as determined by page_token and page_size, which both refer to the word indices in the
+ * input. This paging result consisting of a map of lists is a pattern used by some legacy
+ * APIs. New APIs should NOT use this pattern.
+ *
+ */
+ public com.google.showcase.v1beta1.PagedExpandLegacyMappedResponse pagedExpandLegacyMapped(com.google.showcase.v1beta1.PagedExpandRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getPagedExpandLegacyMappedMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method will wait for the requested amount of time and then return.
+ * This method showcases how a client handles a request timeout.
+ *
+ */
+ public com.google.longrunning.Operation wait(com.google.showcase.v1beta1.WaitRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getWaitMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method will block (wait) for the requested amount of time
+ * and then return the response or error.
+ * This method showcases how a client handles delays or retries.
+ *
+ */
+ public com.google.showcase.v1beta1.BlockResponse block(com.google.showcase.v1beta1.BlockRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getBlockMethod(), getCallOptions(), request);
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service Echo.
+ *
+ * This service is used showcase the four main types of rpcs - unary, server
+ * side streaming, client side streaming, and bidirectional streaming. This
+ * service also exposes methods that explicitly implement server delay, and
+ * paginated calls. Set the 'showcase-trailer' metadata key on any method
+ * to have the values echoed in the response trailers. Set the
+ * 'x-goog-request-params' metadata key on any method to have the values
+ * echoed in the response headers.
+ *
+ */
public static final class EchoBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private EchoBlockingStub(
diff --git a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/IdentityGrpc.java b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/IdentityGrpc.java
index 4d0168e2a5..846e1475ca 100644
--- a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/IdentityGrpc.java
+++ b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/IdentityGrpc.java
@@ -187,6 +187,21 @@ public IdentityStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOpt
return IdentityStub.newStub(factory, channel);
}
+ /**
+ * Creates a new blocking-style stub that supports all types of calls on the service
+ */
+ public static IdentityBlockingV2Stub newBlockingV2Stub(
+ io.grpc.Channel channel) {
+ io.grpc.stub.AbstractStub.StubFactory factory =
+ new io.grpc.stub.AbstractStub.StubFactory() {
+ @java.lang.Override
+ public IdentityBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new IdentityBlockingV2Stub(channel, callOptions);
+ }
+ };
+ return IdentityBlockingV2Stub.newStub(factory, channel);
+ }
+
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
@@ -370,6 +385,76 @@ public void listUsers(com.google.showcase.v1beta1.ListUsersRequest request,
* A simple identity service.
*
*/
+ public static final class IdentityBlockingV2Stub
+ extends io.grpc.stub.AbstractBlockingStub {
+ private IdentityBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected IdentityBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new IdentityBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * Creates a user.
+ *
+ */
+ public com.google.showcase.v1beta1.User createUser(com.google.showcase.v1beta1.CreateUserRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateUserMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Retrieves the User with the given uri.
+ *
+ */
+ public com.google.showcase.v1beta1.User getUser(com.google.showcase.v1beta1.GetUserRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetUserMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Updates a user.
+ *
+ */
+ public com.google.showcase.v1beta1.User updateUser(com.google.showcase.v1beta1.UpdateUserRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getUpdateUserMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Deletes a user, their profile, and all of their authored messages.
+ *
+ */
+ public com.google.protobuf.Empty deleteUser(com.google.showcase.v1beta1.DeleteUserRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getDeleteUserMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Lists all users.
+ *
+ */
+ public com.google.showcase.v1beta1.ListUsersResponse listUsers(com.google.showcase.v1beta1.ListUsersRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getListUsersMethod(), getCallOptions(), request);
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service Identity.
+ *
+ * A simple identity service.
+ *
+ */
public static final class IdentityBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private IdentityBlockingStub(
diff --git a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/MessagingGrpc.java b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/MessagingGrpc.java
index 04c1ed6ed8..4fae3c111c 100644
--- a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/MessagingGrpc.java
+++ b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/MessagingGrpc.java
@@ -468,6 +468,21 @@ public MessagingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOp
return MessagingStub.newStub(factory, channel);
}
+ /**
+ * Creates a new blocking-style stub that supports all types of calls on the service
+ */
+ public static MessagingBlockingV2Stub newBlockingV2Stub(
+ io.grpc.Channel channel) {
+ io.grpc.stub.AbstractStub.StubFactory factory =
+ new io.grpc.stub.AbstractStub.StubFactory() {
+ @java.lang.Override
+ public MessagingBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new MessagingBlockingV2Stub(channel, callOptions);
+ }
+ };
+ return MessagingBlockingV2Stub.newStub(factory, channel);
+ }
+
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
@@ -868,6 +883,184 @@ public io.grpc.stub.StreamObserver c
* generated by gapic-generators implement.
*
*/
+ public static final class MessagingBlockingV2Stub
+ extends io.grpc.stub.AbstractBlockingStub {
+ private MessagingBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected MessagingBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new MessagingBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * Creates a room.
+ *
+ */
+ public com.google.showcase.v1beta1.Room createRoom(com.google.showcase.v1beta1.CreateRoomRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateRoomMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Retrieves the Room with the given resource name.
+ *
+ */
+ public com.google.showcase.v1beta1.Room getRoom(com.google.showcase.v1beta1.GetRoomRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetRoomMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Updates a room.
+ *
+ */
+ public com.google.showcase.v1beta1.Room updateRoom(com.google.showcase.v1beta1.UpdateRoomRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getUpdateRoomMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Deletes a room and all of its blurbs.
+ *
+ */
+ public com.google.protobuf.Empty deleteRoom(com.google.showcase.v1beta1.DeleteRoomRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getDeleteRoomMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Lists all chat rooms.
+ *
+ */
+ public com.google.showcase.v1beta1.ListRoomsResponse listRooms(com.google.showcase.v1beta1.ListRoomsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getListRoomsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Creates a blurb. If the parent is a room, the blurb is understood to be a
+ * message in that room. If the parent is a profile, the blurb is understood
+ * to be a post on the profile.
+ *
+ */
+ public com.google.showcase.v1beta1.Blurb createBlurb(com.google.showcase.v1beta1.CreateBlurbRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateBlurbMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Retrieves the Blurb with the given resource name.
+ *
+ */
+ public com.google.showcase.v1beta1.Blurb getBlurb(com.google.showcase.v1beta1.GetBlurbRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetBlurbMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Updates a blurb.
+ *
+ */
+ public com.google.showcase.v1beta1.Blurb updateBlurb(com.google.showcase.v1beta1.UpdateBlurbRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getUpdateBlurbMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Deletes a blurb.
+ *
+ */
+ public com.google.protobuf.Empty deleteBlurb(com.google.showcase.v1beta1.DeleteBlurbRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getDeleteBlurbMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Lists blurbs for a specific chat room or user profile depending on the
+ * parent resource name.
+ *
+ */
+ public com.google.showcase.v1beta1.ListBlurbsResponse listBlurbs(com.google.showcase.v1beta1.ListBlurbsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getListBlurbsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This method searches through all blurbs across all rooms and profiles
+ * for blurbs containing to words found in the query. Only posts that
+ * contain an exact match of a queried word will be returned.
+ *
+ */
+ public com.google.longrunning.Operation searchBlurbs(com.google.showcase.v1beta1.SearchBlurbsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getSearchBlurbsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This returns a stream that emits the blurbs that are created for a
+ * particular chat room or user profile.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall, com.google.showcase.v1beta1.StreamBlurbsResponse>
+ streamBlurbs(com.google.showcase.v1beta1.StreamBlurbsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall(
+ getChannel(), getStreamBlurbsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * This is a stream to create multiple blurbs. If an invalid blurb is
+ * requested to be created, the stream will close with an error.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall
+ sendBlurbs() {
+ return io.grpc.stub.ClientCalls.blockingClientStreamingCall(
+ getChannel(), getSendBlurbsMethod(), getCallOptions());
+ }
+
+ /**
+ *
+ * This method starts a bidirectional stream that receives all blurbs that
+ * are being created after the stream has started and sends requests to create
+ * blurbs. If an invalid blurb is requested to be created, the stream will
+ * close with an error.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall
+ connect() {
+ return io.grpc.stub.ClientCalls.blockingBidiStreamingCall(
+ getChannel(), getConnectMethod(), getCallOptions());
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service Messaging.
+ *
+ * A simple messaging service that implements chat rooms and profile posts.
+ * This messaging service showcases the features that API clients
+ * generated by gapic-generators implement.
+ *
+ */
public static final class MessagingBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private MessagingBlockingStub(
diff --git a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/SequenceServiceGrpc.java b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/SequenceServiceGrpc.java
index 5512a820dc..6fa9af09aa 100644
--- a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/SequenceServiceGrpc.java
+++ b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/SequenceServiceGrpc.java
@@ -215,6 +215,21 @@ public SequenceServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions
return SequenceServiceStub.newStub(factory, channel);
}
+ /**
+ * Creates a new blocking-style stub that supports all types of calls on the service
+ */
+ public static SequenceServiceBlockingV2Stub newBlockingV2Stub(
+ io.grpc.Channel channel) {
+ io.grpc.stub.AbstractStub.StubFactory factory =
+ new io.grpc.stub.AbstractStub.StubFactory() {
+ @java.lang.Override
+ public SequenceServiceBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new SequenceServiceBlockingV2Stub(channel, callOptions);
+ }
+ };
+ return SequenceServiceBlockingV2Stub.newStub(factory, channel);
+ }
+
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
@@ -407,6 +422,85 @@ public void attemptStreamingSequence(com.google.showcase.v1beta1.AttemptStreamin
/**
* A stub to allow clients to do synchronous rpc calls to service SequenceService.
*/
+ public static final class SequenceServiceBlockingV2Stub
+ extends io.grpc.stub.AbstractBlockingStub {
+ private SequenceServiceBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected SequenceServiceBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new SequenceServiceBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * Creates a sequence.
+ *
+ */
+ public com.google.showcase.v1beta1.Sequence createSequence(com.google.showcase.v1beta1.CreateSequenceRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateSequenceMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Creates a sequence.
+ *
+ */
+ public com.google.showcase.v1beta1.StreamingSequence createStreamingSequence(com.google.showcase.v1beta1.CreateStreamingSequenceRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateStreamingSequenceMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Retrieves a sequence.
+ *
+ */
+ public com.google.showcase.v1beta1.SequenceReport getSequenceReport(com.google.showcase.v1beta1.GetSequenceReportRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetSequenceReportMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Retrieves a sequence.
+ *
+ */
+ public com.google.showcase.v1beta1.StreamingSequenceReport getStreamingSequenceReport(com.google.showcase.v1beta1.GetStreamingSequenceReportRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetStreamingSequenceReportMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Attempts a sequence.
+ *
+ */
+ public com.google.protobuf.Empty attemptSequence(com.google.showcase.v1beta1.AttemptSequenceRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getAttemptSequenceMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Attempts a streaming sequence.
+ *
+ */
+ @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918")
+ public io.grpc.stub.BlockingClientCall, com.google.showcase.v1beta1.AttemptStreamingSequenceResponse>
+ attemptStreamingSequence(com.google.showcase.v1beta1.AttemptStreamingSequenceRequest request) {
+ return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall(
+ getChannel(), getAttemptStreamingSequenceMethod(), getCallOptions(), request);
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service SequenceService.
+ */
public static final class SequenceServiceBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private SequenceServiceBlockingStub(
diff --git a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/TestingGrpc.java b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/TestingGrpc.java
index 61c3d974e4..56781ab009 100644
--- a/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/TestingGrpc.java
+++ b/showcase/grpc-gapic-showcase-v1beta1/src/main/java/com/google/showcase/v1beta1/TestingGrpc.java
@@ -284,6 +284,21 @@ public TestingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOpti
return TestingStub.newStub(factory, channel);
}
+ /**
+ * Creates a new blocking-style stub that supports all types of calls on the service
+ */
+ public static TestingBlockingV2Stub newBlockingV2Stub(
+ io.grpc.Channel channel) {
+ io.grpc.stub.AbstractStub.StubFactory factory =
+ new io.grpc.stub.AbstractStub.StubFactory() {
+ @java.lang.Override
+ public TestingBlockingV2Stub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new TestingBlockingV2Stub(channel, callOptions);
+ }
+ };
+ return TestingBlockingV2Stub.newStub(factory, channel);
+ }
+
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
@@ -566,6 +581,120 @@ public void verifyTest(com.google.showcase.v1beta1.VerifyTestRequest request,
* 2) [Nonsense][]: `pokemon/*/psychic/*`
*
*/
+ public static final class TestingBlockingV2Stub
+ extends io.grpc.stub.AbstractBlockingStub {
+ private TestingBlockingV2Stub(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ super(channel, callOptions);
+ }
+
+ @java.lang.Override
+ protected TestingBlockingV2Stub build(
+ io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
+ return new TestingBlockingV2Stub(channel, callOptions);
+ }
+
+ /**
+ *
+ * Creates a new testing session.
+ * Adding this comment with special characters for comment formatting tests:
+ * 1. (abra->kadabra->alakazam)
+ * 2) [Nonsense][]: `pokemon/*/psychic/*`
+ *
+ */
+ public com.google.showcase.v1beta1.Session createSession(com.google.showcase.v1beta1.CreateSessionRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getCreateSessionMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Gets a testing session.
+ *
+ */
+ public com.google.showcase.v1beta1.Session getSession(com.google.showcase.v1beta1.GetSessionRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getGetSessionMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Lists the current test sessions.
+ *
+ */
+ public com.google.showcase.v1beta1.ListSessionsResponse listSessions(com.google.showcase.v1beta1.ListSessionsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getListSessionsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Delete a test session.
+ *
+ */
+ public com.google.protobuf.Empty deleteSession(com.google.showcase.v1beta1.DeleteSessionRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getDeleteSessionMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Report on the status of a session.
+ * This generates a report detailing which tests have been completed,
+ * and an overall rollup.
+ *
+ */
+ public com.google.showcase.v1beta1.ReportSessionResponse reportSession(com.google.showcase.v1beta1.ReportSessionRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getReportSessionMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * List the tests of a sessesion.
+ *
+ */
+ public com.google.showcase.v1beta1.ListTestsResponse listTests(com.google.showcase.v1beta1.ListTestsRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getListTestsMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Explicitly decline to implement a test.
+ * This removes the test from subsequent `ListTests` calls, and
+ * attempting to do the test will error.
+ * This method will error if attempting to delete a required test.
+ *
+ */
+ public com.google.protobuf.Empty deleteTest(com.google.showcase.v1beta1.DeleteTestRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getDeleteTestMethod(), getCallOptions(), request);
+ }
+
+ /**
+ *
+ * Register a response to a test.
+ * In cases where a test involves registering a final answer at the
+ * end of the test, this method provides the means to do so.
+ *
+ */
+ public com.google.showcase.v1beta1.VerifyTestResponse verifyTest(com.google.showcase.v1beta1.VerifyTestRequest request) {
+ return io.grpc.stub.ClientCalls.blockingUnaryCall(
+ getChannel(), getVerifyTestMethod(), getCallOptions(), request);
+ }
+ }
+
+ /**
+ * A stub to allow clients to do limited synchronous rpc calls to service Testing.
+ *
+ * A service to facilitate running discrete sets of tests
+ * against Showcase.
+ * Adding this comment with special characters for comment formatting tests:
+ * 1. (abra->kadabra->alakazam)
+ * 2) [Nonsense][]: `pokemon/*/psychic/*`
+ *
+ */
public static final class TestingBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private TestingBlockingStub(
From 9d5b3b5ae6a18fbc8445025fa9ec1abe00b7f7cc Mon Sep 17 00:00:00 2001
From: ldetmer <1771267+ldetmer@users.noreply.github.com>
Date: Tue, 25 Feb 2025 20:06:49 +0000
Subject: [PATCH 13/17] deps: update google http client dependencies to v1.46.3
(#3657)
---
gapic-generator-java-pom-parent/pom.xml | 2 +-
gax-java/dependencies.properties | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gapic-generator-java-pom-parent/pom.xml b/gapic-generator-java-pom-parent/pom.xml
index 693ee5bd21..671c6b1485 100644
--- a/gapic-generator-java-pom-parent/pom.xml
+++ b/gapic-generator-java-pom-parent/pom.xml
@@ -28,7 +28,7 @@
1.3.2
1.70.0
1.32.1
- 1.46.1
+ 1.46.3
2.12.1
33.4.0-jre
3.25.5
diff --git a/gax-java/dependencies.properties b/gax-java/dependencies.properties
index 547b425a47..cf55172893 100644
--- a/gax-java/dependencies.properties
+++ b/gax-java/dependencies.properties
@@ -71,8 +71,8 @@ maven.com_google_api_api_common=com.google.api:api-common:2.44.0
maven.org_threeten_threetenbp=org.threeten:threetenbp:1.7.0
maven.com_google_api_grpc_grpc_google_iam_v1=com.google.api.grpc:grpc-google-iam-v1:1.47.0
maven.com_google_api_grpc_proto_google_iam_v1=com.google.api.grpc:proto-google-iam-v1:1.47.0
-maven.com_google_http_client_google_http_client=com.google.http-client:google-http-client:1.46.1
-maven.com_google_http_client_google_http_client_gson=com.google.http-client:google-http-client-gson:1.46.1
+maven.com_google_http_client_google_http_client=com.google.http-client:google-http-client:1.46.3
+maven.com_google_http_client_google_http_client_gson=com.google.http-client:google-http-client-gson:1.46.3
maven.org_codehaus_mojo_animal_sniffer_annotations=org.codehaus.mojo:animal-sniffer-annotations:1.24
maven.javax_annotation_javax_annotation_api=javax.annotation:javax.annotation-api:1.3.2
maven.org_graalvm_sdk=org.graalvm.sdk:nativeimage:24.1.2
From f7877a5b278d3487cb50a1e942f6ff6268121069 Mon Sep 17 00:00:00 2001
From: Mend Renovate
Date: Tue, 25 Feb 2025 21:28:46 +0100
Subject: [PATCH 14/17] deps: update google auth library dependencies to
v1.33.1 (#3656)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[com.google.auth:google-auth-library-credentials](https://redirect.github.com/googleapis/google-auth-library-java)
| `1.32.1` -> `1.33.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[com.google.auth:google-auth-library-oauth2-http](https://redirect.github.com/googleapis/google-auth-library-java)
| `1.32.1` -> `1.33.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[com.google.auth:google-auth-library-bom](https://redirect.github.com/googleapis/google-auth-library-java)
| `1.32.1` -> `1.33.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
googleapis/google-auth-library-java
(com.google.auth:google-auth-library-credentials)
###
[`v1.33.1`](https://redirect.github.com/googleapis/google-auth-library-java/blob/HEAD/CHANGELOG.md#1331-2025-02-25)
[Compare
Source](https://redirect.github.com/googleapis/google-auth-library-java/compare/v1.33.0...v1.33.1)
##### Dependencies
- Update dependency com.google.cloud:google-cloud-shared-config to
v1.14.4
([53a2abc](https://redirect.github.com/googleapis/google-auth-library-java/commit/53a2abc5b19e25079113ebff501aebc18efca309))
###
[`v1.33.0`](https://redirect.github.com/googleapis/google-auth-library-java/blob/HEAD/CHANGELOG.md#1330-2025-02-24)
[Compare
Source](https://redirect.github.com/googleapis/google-auth-library-java/compare/v1.32.1...v1.33.0)
##### Features
- Add client logging with slf4j
([#1586](https://redirect.github.com/googleapis/google-auth-library-java/issues/1586))
([24761d6](https://redirect.github.com/googleapis/google-auth-library-java/commit/24761d6cc3590c4b08c56c8c992b740e235b31c5))
##### Dependencies
- Update dependency com.google.http-client:google-http-client-bom to
v1.46.1
([96a5ad8](https://redirect.github.com/googleapis/google-auth-library-java/commit/96a5ad88a7b187e1a0d472dca06ff39d74804d61))
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
â™» **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/googleapis/sdk-platform-java).
---
gapic-generator-java-pom-parent/pom.xml | 2 +-
gax-java/dependencies.properties | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gapic-generator-java-pom-parent/pom.xml b/gapic-generator-java-pom-parent/pom.xml
index 671c6b1485..36aafb4c56 100644
--- a/gapic-generator-java-pom-parent/pom.xml
+++ b/gapic-generator-java-pom-parent/pom.xml
@@ -27,7 +27,7 @@
consistent across modules in this repository -->
1.3.2
1.70.0
- 1.32.1
+ 1.33.1
1.46.3
2.12.1
33.4.0-jre
diff --git a/gax-java/dependencies.properties b/gax-java/dependencies.properties
index cf55172893..11feb50065 100644
--- a/gax-java/dependencies.properties
+++ b/gax-java/dependencies.properties
@@ -37,8 +37,8 @@ version.io_grpc=1.70.0
# 2) Replace all characters which are neither alphabetic nor digits with the underscore ('_') character
maven.com_google_api_grpc_proto_google_common_protos=com.google.api.grpc:proto-google-common-protos:2.52.0
maven.com_google_api_grpc_grpc_google_common_protos=com.google.api.grpc:grpc-google-common-protos:2.52.0
-maven.com_google_auth_google_auth_library_oauth2_http=com.google.auth:google-auth-library-oauth2-http:1.32.1
-maven.com_google_auth_google_auth_library_credentials=com.google.auth:google-auth-library-credentials:1.32.1
+maven.com_google_auth_google_auth_library_oauth2_http=com.google.auth:google-auth-library-oauth2-http:1.33.1
+maven.com_google_auth_google_auth_library_credentials=com.google.auth:google-auth-library-credentials:1.33.1
maven.io_opentelemetry_opentelemetry_api=io.opentelemetry:opentelemetry-api:1.47.0
maven.io_opencensus_opencensus_api=io.opencensus:opencensus-api:0.31.1
maven.io_opencensus_opencensus_contrib_grpc_metrics=io.opencensus:opencensus-contrib-grpc-metrics:0.31.1
From 651cc9a7beabf8534d5b6edc83c1c554a9e691ef Mon Sep 17 00:00:00 2001
From: Joe Wang <106995533+JoeWang1127@users.noreply.github.com>
Date: Tue, 25 Feb 2025 16:04:15 -0500
Subject: [PATCH 15/17] chore: update googleapis commit (#3662)
---
generation_config.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generation_config.yaml b/generation_config.yaml
index 432348b55e..ef953bba5d 100644
--- a/generation_config.yaml
+++ b/generation_config.yaml
@@ -1,4 +1,4 @@
-googleapis_commitish: 0a459af4362c0e41b9723dd4d7edc022c552db40
+googleapis_commitish: 58be301346758c9a342de5632c3f9284d05c4b95
# the libraries are ordered with respect to library name, which is
# java-{library.library_name} or java-{library.api-shortname} when
# library.library_name is not defined.
From 5c233d8b646e8385e30fb917f77870157d10f940 Mon Sep 17 00:00:00 2001
From: cloud-java-bot <122572305+cloud-java-bot@users.noreply.github.com>
Date: Tue, 25 Feb 2025 17:18:48 -0500
Subject: [PATCH 16/17] chore: update googleapis commit at Tue Feb 25 21:56:14
UTC 2025 (#3664)
chore: update googleapis commit at Tue Feb 25 21:56:14 UTC 2025
---
generation_config.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generation_config.yaml b/generation_config.yaml
index ef953bba5d..dcadb4ea02 100644
--- a/generation_config.yaml
+++ b/generation_config.yaml
@@ -1,4 +1,4 @@
-googleapis_commitish: 58be301346758c9a342de5632c3f9284d05c4b95
+googleapis_commitish: fbbbf5023815f9a662c85aa8af8f3b72467fcb6f
# the libraries are ordered with respect to library name, which is
# java-{library.library_name} or java-{library.api-shortname} when
# library.library_name is not defined.
From 3319c715c627f5113fc54873155b45cc94a3fb0c Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Tue, 25 Feb 2025 17:35:22 -0500
Subject: [PATCH 17/17] chore(main): release 2.54.0 (#3636)
:robot: I have created a release *beep* *boop*
---
2.54.0
##
[2.54.0](https://github.com/googleapis/sdk-platform-java/compare/v2.53.0...v2.54.0)
(2025-02-25)
### Features
* add client side logging with slf4j
([#3403](https://github.com/googleapis/sdk-platform-java/issues/3403))
([fe002fa](https://github.com/googleapis/sdk-platform-java/commit/fe002fab1ab65b29eeb5510d1ba1ef72fa3441b0))
### Bug Fixes
* S2A gRPC flow creates ComputeEngineCredentials via newBuilder.
([#3651](https://github.com/googleapis/sdk-platform-java/issues/3651))
([29c061e](https://github.com/googleapis/sdk-platform-java/commit/29c061e8a18b9a416262986f11c5148ea6fec9b2))
### Dependencies
* update dependency ch.qos.logback:logback-core to v1.3.15 [security]
([#3654](https://github.com/googleapis/sdk-platform-java/issues/3654))
([093d867](https://github.com/googleapis/sdk-platform-java/commit/093d867eb5dcdcc08ece434598f96a6dff760326))
* update google api dependencies
([#3631](https://github.com/googleapis/sdk-platform-java/issues/3631))
([48db2a1](https://github.com/googleapis/sdk-platform-java/commit/48db2a10e3ef46ad9ddf23378613a550172f63af))
* update google auth library dependencies to v1.33.1
([#3656](https://github.com/googleapis/sdk-platform-java/issues/3656))
([f7877a5](https://github.com/googleapis/sdk-platform-java/commit/f7877a5b278d3487cb50a1e942f6ff6268121069))
* update google http client dependencies to v1.46.3
([#3657](https://github.com/googleapis/sdk-platform-java/issues/3657))
([9d5b3b5](https://github.com/googleapis/sdk-platform-java/commit/9d5b3b5ae6a18fbc8445025fa9ec1abe00b7f7cc))
* update grpc to 1.70.0
([#3641](https://github.com/googleapis/sdk-platform-java/issues/3641))
([ad26cf9](https://github.com/googleapis/sdk-platform-java/commit/ad26cf98548e325c99edb263baf8fe1a7696e634))
* update grpc to 1.70.0 (missed update)
([#3658](https://github.com/googleapis/sdk-platform-java/issues/3658))
([6ca0599](https://github.com/googleapis/sdk-platform-java/commit/6ca05994f6be40344b21befb8cdabb0766a835d0))
* Update opentelemetry-semconv to v1.29.0-alpha
([#3635](https://github.com/googleapis/sdk-platform-java/issues/3635))
([49ac09d](https://github.com/googleapis/sdk-platform-java/commit/49ac09d263daad8ceb2e14a623db242339880670))
### Documentation
* update showcase readme
([#3659](https://github.com/googleapis/sdk-platform-java/issues/3659))
([0ddf073](https://github.com/googleapis/sdk-platform-java/commit/0ddf0738a8ef74f5676a3bf76c306837d14988e0))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Co-authored-by: Joe Wang
---
.cloudbuild/graalvm/cloudbuild-test-a.yaml | 2 +-
.cloudbuild/graalvm/cloudbuild-test-b.yaml | 2 +-
.cloudbuild/graalvm/cloudbuild.yaml | 2 +-
.../cloudbuild-library-generation-push.yaml | 2 +-
.../library_generation.Dockerfile | 2 +-
.../library_generation_airlock.Dockerfile | 2 +-
.release-please-manifest.json | 2 +-
CHANGELOG.md | 28 ++++++++++++++++
WORKSPACE | 2 +-
api-common-java/pom.xml | 4 +--
coverage-report/pom.xml | 8 ++---
gapic-generator-java-bom/pom.xml | 26 +++++++--------
gapic-generator-java-pom-parent/pom.xml | 2 +-
gapic-generator-java/pom.xml | 6 ++--
gax-java/README.md | 12 +++----
gax-java/dependencies.properties | 8 ++---
gax-java/gax-bom/pom.xml | 20 ++++++------
gax-java/gax-grpc/pom.xml | 4 +--
gax-java/gax-httpjson/pom.xml | 4 +--
gax-java/gax/pom.xml | 4 +--
gax-java/pom.xml | 14 ++++----
.../grpc-google-common-protos/pom.xml | 4 +--
java-common-protos/pom.xml | 10 +++---
.../proto-google-common-protos/pom.xml | 4 +--
java-core/google-cloud-core-bom/pom.xml | 10 +++---
java-core/google-cloud-core-grpc/pom.xml | 4 +--
java-core/google-cloud-core-http/pom.xml | 4 +--
java-core/google-cloud-core/pom.xml | 4 +--
java-core/pom.xml | 6 ++--
java-iam/grpc-google-iam-v1/pom.xml | 4 +--
java-iam/grpc-google-iam-v2/pom.xml | 4 +--
java-iam/grpc-google-iam-v2beta/pom.xml | 4 +--
java-iam/pom.xml | 22 ++++++-------
java-iam/proto-google-iam-v1/pom.xml | 4 +--
java-iam/proto-google-iam-v2/pom.xml | 4 +--
java-iam/proto-google-iam-v2beta/pom.xml | 4 +--
java-shared-dependencies/README.md | 2 +-
.../dependency-convergence-check/pom.xml | 2 +-
.../first-party-dependencies/pom.xml | 10 +++---
java-shared-dependencies/pom.xml | 8 ++---
.../third-party-dependencies/pom.xml | 4 +--
.../upper-bound-check/pom.xml | 4 +--
sdk-platform-java-config/pom.xml | 4 +--
showcase/pom.xml | 2 +-
versions.txt | 32 +++++++++----------
45 files changed, 172 insertions(+), 144 deletions(-)
diff --git a/.cloudbuild/graalvm/cloudbuild-test-a.yaml b/.cloudbuild/graalvm/cloudbuild-test-a.yaml
index 1f2745619a..975722ee16 100644
--- a/.cloudbuild/graalvm/cloudbuild-test-a.yaml
+++ b/.cloudbuild/graalvm/cloudbuild-test-a.yaml
@@ -14,7 +14,7 @@
timeout: 7200s # 2 hours
substitutions:
- _SHARED_DEPENDENCIES_VERSION: '3.43.1-SNAPSHOT' # {x-version-update:google-cloud-shared-dependencies:current}
+ _SHARED_DEPENDENCIES_VERSION: '3.44.0' # {x-version-update:google-cloud-shared-dependencies:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.4'
options:
machineType: 'E2_HIGHCPU_8'
diff --git a/.cloudbuild/graalvm/cloudbuild-test-b.yaml b/.cloudbuild/graalvm/cloudbuild-test-b.yaml
index 9d00b91f51..1feaf0b34b 100644
--- a/.cloudbuild/graalvm/cloudbuild-test-b.yaml
+++ b/.cloudbuild/graalvm/cloudbuild-test-b.yaml
@@ -14,7 +14,7 @@
timeout: 7200s # 2 hours
substitutions:
- _SHARED_DEPENDENCIES_VERSION: '3.43.1-SNAPSHOT' # {x-version-update:google-cloud-shared-dependencies:current}
+ _SHARED_DEPENDENCIES_VERSION: '3.44.0' # {x-version-update:google-cloud-shared-dependencies:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.4'
options:
machineType: 'E2_HIGHCPU_8'
diff --git a/.cloudbuild/graalvm/cloudbuild.yaml b/.cloudbuild/graalvm/cloudbuild.yaml
index 39c4c19a1e..7f39327425 100644
--- a/.cloudbuild/graalvm/cloudbuild.yaml
+++ b/.cloudbuild/graalvm/cloudbuild.yaml
@@ -14,7 +14,7 @@
timeout: 7200s # 2 hours
substitutions:
- _SHARED_DEPENDENCIES_VERSION: '3.43.1-SNAPSHOT' # {x-version-update:google-cloud-shared-dependencies:current}
+ _SHARED_DEPENDENCIES_VERSION: '3.44.0' # {x-version-update:google-cloud-shared-dependencies:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.4'
steps:
# GraalVM A build
diff --git a/.cloudbuild/library_generation/cloudbuild-library-generation-push.yaml b/.cloudbuild/library_generation/cloudbuild-library-generation-push.yaml
index 1f7c9df729..b95f5833e6 100644
--- a/.cloudbuild/library_generation/cloudbuild-library-generation-push.yaml
+++ b/.cloudbuild/library_generation/cloudbuild-library-generation-push.yaml
@@ -14,7 +14,7 @@
timeout: 7200s # 2 hours
substitutions:
- _GAPIC_GENERATOR_JAVA_VERSION: '2.53.1-SNAPSHOT' # {x-version-update:gapic-generator-java:current}
+ _GAPIC_GENERATOR_JAVA_VERSION: '2.54.0' # {x-version-update:gapic-generator-java:current}
_PRIVATE_IMAGE_NAME: "us-docker.pkg.dev/java-hermetic-build-prod/private-resources/java-library-generation"
_PRIVATE_SHA_IMAGE_ID: "${_PRIVATE_IMAGE_NAME}:${COMMIT_SHA}"
_PRIVATE_LATEST_IMAGE_ID: "${_PRIVATE_IMAGE_NAME}:latest"
diff --git a/.cloudbuild/library_generation/library_generation.Dockerfile b/.cloudbuild/library_generation/library_generation.Dockerfile
index c303a78de8..0db1c56b57 100644
--- a/.cloudbuild/library_generation/library_generation.Dockerfile
+++ b/.cloudbuild/library_generation/library_generation.Dockerfile
@@ -20,7 +20,7 @@ FROM docker.io/library/maven:3.9.9-eclipse-temurin-11-alpine@sha256:456f60c1643c
WORKDIR /sdk-platform-java
COPY . .
# {x-version-update-start:gapic-generator-java:current}
-ENV DOCKER_GAPIC_GENERATOR_VERSION="2.53.1-SNAPSHOT"
+ENV DOCKER_GAPIC_GENERATOR_VERSION="2.54.0"
# {x-version-update-end}
RUN mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip
diff --git a/.cloudbuild/library_generation/library_generation_airlock.Dockerfile b/.cloudbuild/library_generation/library_generation_airlock.Dockerfile
index b9162f977d..3fe0fb98c2 100644
--- a/.cloudbuild/library_generation/library_generation_airlock.Dockerfile
+++ b/.cloudbuild/library_generation/library_generation_airlock.Dockerfile
@@ -21,7 +21,7 @@ FROM us-docker.pkg.dev/artifact-foundry-prod/docker-3p-trusted/maven@sha256:d3f0
WORKDIR /sdk-platform-java
COPY . .
# {x-version-update-start:gapic-generator-java:current}
-ENV DOCKER_GAPIC_GENERATOR_VERSION="2.53.1-SNAPSHOT"
+ENV DOCKER_GAPIC_GENERATOR_VERSION="2.54.0"
# {x-version-update-end}
RUN mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index fffa4507c8..5c2b1511f2 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "2.53.0"
+ ".": "2.54.0"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e555335428..83d0a3322a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,33 @@
# Changelog
+## [2.54.0](https://github.com/googleapis/sdk-platform-java/compare/v2.53.0...v2.54.0) (2025-02-25)
+
+
+### Features
+
+* add client side logging with slf4j ([#3403](https://github.com/googleapis/sdk-platform-java/issues/3403)) ([fe002fa](https://github.com/googleapis/sdk-platform-java/commit/fe002fab1ab65b29eeb5510d1ba1ef72fa3441b0))
+
+
+### Bug Fixes
+
+* S2A gRPC flow creates ComputeEngineCredentials via newBuilder. ([#3651](https://github.com/googleapis/sdk-platform-java/issues/3651)) ([29c061e](https://github.com/googleapis/sdk-platform-java/commit/29c061e8a18b9a416262986f11c5148ea6fec9b2))
+
+
+### Dependencies
+
+* update dependency ch.qos.logback:logback-core to v1.3.15 [security] ([#3654](https://github.com/googleapis/sdk-platform-java/issues/3654)) ([093d867](https://github.com/googleapis/sdk-platform-java/commit/093d867eb5dcdcc08ece434598f96a6dff760326))
+* update google api dependencies ([#3631](https://github.com/googleapis/sdk-platform-java/issues/3631)) ([48db2a1](https://github.com/googleapis/sdk-platform-java/commit/48db2a10e3ef46ad9ddf23378613a550172f63af))
+* update google auth library dependencies to v1.33.1 ([#3656](https://github.com/googleapis/sdk-platform-java/issues/3656)) ([f7877a5](https://github.com/googleapis/sdk-platform-java/commit/f7877a5b278d3487cb50a1e942f6ff6268121069))
+* update google http client dependencies to v1.46.3 ([#3657](https://github.com/googleapis/sdk-platform-java/issues/3657)) ([9d5b3b5](https://github.com/googleapis/sdk-platform-java/commit/9d5b3b5ae6a18fbc8445025fa9ec1abe00b7f7cc))
+* update grpc to 1.70.0 ([#3641](https://github.com/googleapis/sdk-platform-java/issues/3641)) ([ad26cf9](https://github.com/googleapis/sdk-platform-java/commit/ad26cf98548e325c99edb263baf8fe1a7696e634))
+* update grpc to 1.70.0 (missed update) ([#3658](https://github.com/googleapis/sdk-platform-java/issues/3658)) ([6ca0599](https://github.com/googleapis/sdk-platform-java/commit/6ca05994f6be40344b21befb8cdabb0766a835d0))
+* Update opentelemetry-semconv to v1.29.0-alpha ([#3635](https://github.com/googleapis/sdk-platform-java/issues/3635)) ([49ac09d](https://github.com/googleapis/sdk-platform-java/commit/49ac09d263daad8ceb2e14a623db242339880670))
+
+
+### Documentation
+
+* update showcase readme ([#3659](https://github.com/googleapis/sdk-platform-java/issues/3659)) ([0ddf073](https://github.com/googleapis/sdk-platform-java/commit/0ddf0738a8ef74f5676a3bf76c306837d14988e0))
+
## [2.53.0](https://github.com/googleapis/sdk-platform-java/compare/v2.52.0...v2.53.0) (2025-02-10)
diff --git a/WORKSPACE b/WORKSPACE
index 2a6449b6f7..aba5fbb7f1 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -58,7 +58,7 @@ load("@rules_jvm_external//:defs.bzl", "maven_install")
load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_ARTIFACTS")
load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS")
-_gapic_generator_java_version = "2.53.1-SNAPSHOT" # {x-version-update:gapic-generator-java:current}
+_gapic_generator_java_version = "2.54.0" # {x-version-update:gapic-generator-java:current}
maven_install(
artifacts = [
diff --git a/api-common-java/pom.xml b/api-common-java/pom.xml
index 479d7f4a80..88f1bc01d4 100644
--- a/api-common-java/pom.xml
+++ b/api-common-java/pom.xml
@@ -5,14 +5,14 @@
com.google.api
api-common
jar
- 2.44.1-SNAPSHOT
+ 2.45.0
API Common
Common utilities for Google APIs in Java
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
diff --git a/coverage-report/pom.xml b/coverage-report/pom.xml
index eb06248bf3..abc4e66102 100644
--- a/coverage-report/pom.xml
+++ b/coverage-report/pom.xml
@@ -31,22 +31,22 @@
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax-grpc
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax-httpjson
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
api-common
- 2.44.1-SNAPSHOT
+ 2.45.0
diff --git a/gapic-generator-java-bom/pom.xml b/gapic-generator-java-bom/pom.xml
index 280463a887..0ef582eb2f 100644
--- a/gapic-generator-java-bom/pom.xml
+++ b/gapic-generator-java-bom/pom.xml
@@ -4,7 +4,7 @@
com.google.api
gapic-generator-java-bom
pom
- 2.53.1-SNAPSHOT
+ 2.54.0
GAPIC Generator Java BOM
BOM for the libraries in gapic-generator-java repository. Users should not
@@ -15,7 +15,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -75,61 +75,61 @@
com.google.api
api-common
- 2.44.1-SNAPSHOT
+ 2.45.0
com.google.api
gax-bom
- 2.61.1-SNAPSHOT
+ 2.62.0
pom
import
com.google.api
gapic-generator-java
- 2.53.1-SNAPSHOT
+ 2.54.0
com.google.api.grpc
grpc-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
com.google.api.grpc
proto-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
com.google.api.grpc
proto-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
proto-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
proto-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/gapic-generator-java-pom-parent/pom.xml b/gapic-generator-java-pom-parent/pom.xml
index 36aafb4c56..1fa1a803e3 100644
--- a/gapic-generator-java-pom-parent/pom.xml
+++ b/gapic-generator-java-pom-parent/pom.xml
@@ -5,7 +5,7 @@
4.0.0
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
pom
GAPIC Generator Java POM Parent
https://github.com/googleapis/sdk-platform-java
diff --git a/gapic-generator-java/pom.xml b/gapic-generator-java/pom.xml
index 4b08253e11..c5f652e20d 100644
--- a/gapic-generator-java/pom.xml
+++ b/gapic-generator-java/pom.xml
@@ -4,7 +4,7 @@
4.0.0
com.google.api
gapic-generator-java
- 2.53.1-SNAPSHOT
+ 2.54.0
GAPIC Generator Java
GAPIC generator Java
@@ -22,7 +22,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -31,7 +31,7 @@
com.google.api
gapic-generator-java-bom
- 2.53.1-SNAPSHOT
+ 2.54.0
pom
import
diff --git a/gax-java/README.md b/gax-java/README.md
index 3cfb4d5059..17a95656fb 100644
--- a/gax-java/README.md
+++ b/gax-java/README.md
@@ -34,27 +34,27 @@ If you are using Maven, add this to your pom.xml file
com.google.api
gax
- 2.61.0
+ 2.62.0
com.google.api
gax-grpc
- 2.61.0
+ 2.62.0
```
If you are using Gradle, add this to your dependencies
```Groovy
-compile 'com.google.api:gax:2.61.0',
- 'com.google.api:gax-grpc:2.61.0'
+compile 'com.google.api:gax:2.62.0',
+ 'com.google.api:gax-grpc:2.62.0'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.api" % "gax" % "2.61.0"
-libraryDependencies += "com.google.api" % "gax-grpc" % "2.61.0"
+libraryDependencies += "com.google.api" % "gax" % "2.62.0"
+libraryDependencies += "com.google.api" % "gax-grpc" % "2.62.0"
```
[//]: # ({x-version-update-end})
diff --git a/gax-java/dependencies.properties b/gax-java/dependencies.properties
index 11feb50065..eb1f7e99a3 100644
--- a/gax-java/dependencies.properties
+++ b/gax-java/dependencies.properties
@@ -8,16 +8,16 @@
# Versions of oneself
# {x-version-update-start:gax:current}
-version.gax=2.61.1-SNAPSHOT
+version.gax=2.62.0
# {x-version-update-end}
# {x-version-update-start:gax:current}
-version.gax_grpc=2.61.1-SNAPSHOT
+version.gax_grpc=2.62.0
# {x-version-update-end}
# {x-version-update-start:gax:current}
-version.gax_bom=2.61.1-SNAPSHOT
+version.gax_bom=2.62.0
# {x-version-update-end}
# {x-version-update-start:gax:current}
-version.gax_httpjson=2.61.1-SNAPSHOT
+version.gax_httpjson=2.62.0
# {x-version-update-end}
# Versions for dependencies which actual artifacts differ between Bazel and Gradle.
diff --git a/gax-java/gax-bom/pom.xml b/gax-java/gax-bom/pom.xml
index 11c6229542..90ac3bcd34 100644
--- a/gax-java/gax-bom/pom.xml
+++ b/gax-java/gax-bom/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.api
gax-bom
- 2.61.1-SNAPSHOT
+ 2.62.0
pom
GAX (Google Api eXtensions) for Java (BOM)
Google Api eXtensions for Java (BOM)
@@ -43,55 +43,55 @@
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
test-jar
testlib
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
testlib
com.google.api
gax-grpc
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax-grpc
- 2.61.1-SNAPSHOT
+ 2.62.0
test-jar
testlib
com.google.api
gax-grpc
- 2.61.1-SNAPSHOT
+ 2.62.0
testlib
com.google.api
gax-httpjson
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax-httpjson
- 2.61.1-SNAPSHOT
+ 2.62.0
test-jar
testlib
com.google.api
gax-httpjson
- 2.61.1-SNAPSHOT
+ 2.62.0
testlib
diff --git a/gax-java/gax-grpc/pom.xml b/gax-java/gax-grpc/pom.xml
index cb33a3dae3..41b51fc457 100644
--- a/gax-java/gax-grpc/pom.xml
+++ b/gax-java/gax-grpc/pom.xml
@@ -3,7 +3,7 @@
4.0.0
gax-grpc
- 2.61.1-SNAPSHOT
+ 2.62.0
jar
GAX (Google Api eXtensions) for Java (gRPC)
Google Api eXtensions for Java (gRPC)
@@ -11,7 +11,7 @@
com.google.api
gax-parent
- 2.61.1-SNAPSHOT
+ 2.62.0
diff --git a/gax-java/gax-httpjson/pom.xml b/gax-java/gax-httpjson/pom.xml
index 30e1389b80..685406ba96 100644
--- a/gax-java/gax-httpjson/pom.xml
+++ b/gax-java/gax-httpjson/pom.xml
@@ -3,7 +3,7 @@
4.0.0
gax-httpjson
- 2.61.1-SNAPSHOT
+ 2.62.0
jar
GAX (Google Api eXtensions) for Java (HTTP JSON)
Google Api eXtensions for Java (HTTP JSON)
@@ -11,7 +11,7 @@
com.google.api
gax-parent
- 2.61.1-SNAPSHOT
+ 2.62.0
diff --git a/gax-java/gax/pom.xml b/gax-java/gax/pom.xml
index 7323e6315e..b97c5b190d 100644
--- a/gax-java/gax/pom.xml
+++ b/gax-java/gax/pom.xml
@@ -3,7 +3,7 @@
4.0.0
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
jar
GAX (Google Api eXtensions) for Java (Core)
Google Api eXtensions for Java (Core)
@@ -11,7 +11,7 @@
com.google.api
gax-parent
- 2.61.1-SNAPSHOT
+ 2.62.0
diff --git a/gax-java/pom.xml b/gax-java/pom.xml
index 193276a45d..a28ea58f87 100644
--- a/gax-java/pom.xml
+++ b/gax-java/pom.xml
@@ -4,14 +4,14 @@
com.google.api
gax-parent
pom
- 2.61.1-SNAPSHOT
+ 2.62.0
GAX (Google Api eXtensions) for Java (Parent)
Google Api eXtensions for Java (Parent)
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -50,7 +50,7 @@
com.google.api
api-common
- 2.44.1-SNAPSHOT
+ 2.45.0
com.google.auth
@@ -98,24 +98,24 @@
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
com.google.api
gax
- 2.61.1-SNAPSHOT
+ 2.62.0
test-jar
testlib
com.google.api.grpc
proto-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
com.google.api.grpc
grpc-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
io.grpc
diff --git a/java-common-protos/grpc-google-common-protos/pom.xml b/java-common-protos/grpc-google-common-protos/pom.xml
index e996ebe3f7..409d8b086a 100644
--- a/java-common-protos/grpc-google-common-protos/pom.xml
+++ b/java-common-protos/grpc-google-common-protos/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
grpc-google-common-protos
GRPC library for grpc-google-common-protos
com.google.api.grpc
google-common-protos-parent
- 2.52.1-SNAPSHOT
+ 2.53.0
diff --git a/java-common-protos/pom.xml b/java-common-protos/pom.xml
index 37301dcd02..b471f41f94 100644
--- a/java-common-protos/pom.xml
+++ b/java-common-protos/pom.xml
@@ -4,7 +4,7 @@
com.google.api.grpc
google-common-protos-parent
pom
- 2.52.1-SNAPSHOT
+ 2.53.0
Google Common Protos Parent
Java idiomatic client for Google Cloud Platform services.
@@ -13,7 +13,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -51,7 +51,7 @@
com.google.cloud
third-party-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
@@ -65,7 +65,7 @@
com.google.api.grpc
grpc-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
io.grpc
@@ -77,7 +77,7 @@
com.google.api.grpc
proto-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
com.google.guava
diff --git a/java-common-protos/proto-google-common-protos/pom.xml b/java-common-protos/proto-google-common-protos/pom.xml
index 505093f004..7b78c13c18 100644
--- a/java-common-protos/proto-google-common-protos/pom.xml
+++ b/java-common-protos/proto-google-common-protos/pom.xml
@@ -3,13 +3,13 @@
4.0.0
com.google.api.grpc
proto-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
proto-google-common-protos
PROTO library for proto-google-common-protos
com.google.api.grpc
google-common-protos-parent
- 2.52.1-SNAPSHOT
+ 2.53.0
diff --git a/java-core/google-cloud-core-bom/pom.xml b/java-core/google-cloud-core-bom/pom.xml
index 3897effd06..ef97d1b284 100644
--- a/java-core/google-cloud-core-bom/pom.xml
+++ b/java-core/google-cloud-core-bom/pom.xml
@@ -3,13 +3,13 @@
4.0.0
com.google.cloud
google-cloud-core-bom
- 2.51.1-SNAPSHOT
+ 2.52.0
pom
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../../gapic-generator-java-pom-parent
@@ -23,17 +23,17 @@
com.google.cloud
google-cloud-core
- 2.51.1-SNAPSHOT
+ 2.52.0
com.google.cloud
google-cloud-core-grpc
- 2.51.1-SNAPSHOT
+ 2.52.0
com.google.cloud
google-cloud-core-http
- 2.51.1-SNAPSHOT
+ 2.52.0
diff --git a/java-core/google-cloud-core-grpc/pom.xml b/java-core/google-cloud-core-grpc/pom.xml
index 3825901deb..3a94658f84 100644
--- a/java-core/google-cloud-core-grpc/pom.xml
+++ b/java-core/google-cloud-core-grpc/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-core-grpc
- 2.51.1-SNAPSHOT
+ 2.52.0
jar
Google Cloud Core gRPC
@@ -12,7 +12,7 @@
com.google.cloud
google-cloud-core-parent
- 2.51.1-SNAPSHOT
+ 2.52.0
google-cloud-core-grpc
diff --git a/java-core/google-cloud-core-http/pom.xml b/java-core/google-cloud-core-http/pom.xml
index 2c7eb9f1fa..30a4a3a649 100644
--- a/java-core/google-cloud-core-http/pom.xml
+++ b/java-core/google-cloud-core-http/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-core-http
- 2.51.1-SNAPSHOT
+ 2.52.0
jar
Google Cloud Core HTTP
@@ -12,7 +12,7 @@
com.google.cloud
google-cloud-core-parent
- 2.51.1-SNAPSHOT
+ 2.52.0
google-cloud-core-http
diff --git a/java-core/google-cloud-core/pom.xml b/java-core/google-cloud-core/pom.xml
index 069c499f68..3c7839b3dc 100644
--- a/java-core/google-cloud-core/pom.xml
+++ b/java-core/google-cloud-core/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-core
- 2.51.1-SNAPSHOT
+ 2.52.0
jar
Google Cloud Core
@@ -12,7 +12,7 @@
com.google.cloud
google-cloud-core-parent
- 2.51.1-SNAPSHOT
+ 2.52.0
google-cloud-core
diff --git a/java-core/pom.xml b/java-core/pom.xml
index 0a681e80a7..d3e8bf1b47 100644
--- a/java-core/pom.xml
+++ b/java-core/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-core-parent
pom
- 2.51.1-SNAPSHOT
+ 2.52.0
Google Cloud Core Parent
Java idiomatic client for Google Cloud Platform services.
@@ -13,7 +13,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -33,7 +33,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
diff --git a/java-iam/grpc-google-iam-v1/pom.xml b/java-iam/grpc-google-iam-v1/pom.xml
index 7215872a8f..0bdf397488 100644
--- a/java-iam/grpc-google-iam-v1/pom.xml
+++ b/java-iam/grpc-google-iam-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
grpc-google-iam-v1
GRPC library for grpc-google-iam-v1
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-iam/grpc-google-iam-v2/pom.xml b/java-iam/grpc-google-iam-v2/pom.xml
index 9b55bedb2c..cce2ab113e 100644
--- a/java-iam/grpc-google-iam-v2/pom.xml
+++ b/java-iam/grpc-google-iam-v2/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
grpc-google-iam-v2
GRPC library for proto-google-iam-v2
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-iam/grpc-google-iam-v2beta/pom.xml b/java-iam/grpc-google-iam-v2beta/pom.xml
index 33ed491c6a..265d13b970 100644
--- a/java-iam/grpc-google-iam-v2beta/pom.xml
+++ b/java-iam/grpc-google-iam-v2beta/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
grpc-google-iam-v2beta
GRPC library for proto-google-iam-v1
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-iam/pom.xml b/java-iam/pom.xml
index f53c001933..621bbb2c3a 100644
--- a/java-iam/pom.xml
+++ b/java-iam/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-iam-parent
pom
- 1.47.1-SNAPSHOT
+ 1.48.0
Google IAM Parent
Java idiomatic client for Google Cloud Platform services.
@@ -13,7 +13,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -50,7 +50,7 @@
com.google.cloud
third-party-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
@@ -78,44 +78,44 @@
com.google.api
gax-bom
- 2.61.1-SNAPSHOT
+ 2.62.0
pom
import
com.google.api.grpc
proto-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
proto-google-common-protos
- 2.52.1-SNAPSHOT
+ 2.53.0
com.google.api.grpc
proto-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
grpc-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
com.google.api.grpc
proto-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
javax.annotation
diff --git a/java-iam/proto-google-iam-v1/pom.xml b/java-iam/proto-google-iam-v1/pom.xml
index f33b239f78..76c0227a07 100644
--- a/java-iam/proto-google-iam-v1/pom.xml
+++ b/java-iam/proto-google-iam-v1/pom.xml
@@ -3,13 +3,13 @@
4.0.0
com.google.api.grpc
proto-google-iam-v1
- 1.47.1-SNAPSHOT
+ 1.48.0
proto-google-iam-v1
PROTO library for proto-google-iam-v1
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-iam/proto-google-iam-v2/pom.xml b/java-iam/proto-google-iam-v2/pom.xml
index 79165f484f..d907ea2802 100644
--- a/java-iam/proto-google-iam-v2/pom.xml
+++ b/java-iam/proto-google-iam-v2/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-iam-v2
- 1.47.1-SNAPSHOT
+ 1.48.0
proto-google-iam-v2
Proto library for proto-google-iam-v1
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-iam/proto-google-iam-v2beta/pom.xml b/java-iam/proto-google-iam-v2beta/pom.xml
index 2b3b1f2014..951b96f2ce 100644
--- a/java-iam/proto-google-iam-v2beta/pom.xml
+++ b/java-iam/proto-google-iam-v2beta/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-iam-v2beta
- 1.47.1-SNAPSHOT
+ 1.48.0
proto-google-iam-v2beta
Proto library for proto-google-iam-v1
com.google.cloud
google-iam-parent
- 1.47.1-SNAPSHOT
+ 1.48.0
diff --git a/java-shared-dependencies/README.md b/java-shared-dependencies/README.md
index 6de421bf02..15968bcf2a 100644
--- a/java-shared-dependencies/README.md
+++ b/java-shared-dependencies/README.md
@@ -14,7 +14,7 @@ If you are using Maven, add this to the `dependencyManagement` section.
com.google.cloud
google-cloud-shared-dependencies
- 3.43.0
+ 3.44.0
pom
import
diff --git a/java-shared-dependencies/dependency-convergence-check/pom.xml b/java-shared-dependencies/dependency-convergence-check/pom.xml
index 485d2b121a..e5134eb830 100644
--- a/java-shared-dependencies/dependency-convergence-check/pom.xml
+++ b/java-shared-dependencies/dependency-convergence-check/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
shared-dependencies-dependency-convergence-test
- 3.43.1-SNAPSHOT
+ 3.44.0
Dependency convergence test for certain artifacts in Google Cloud Shared Dependencies
An dependency convergence test case for the shared dependencies BOM. A failure of this test case means
diff --git a/java-shared-dependencies/first-party-dependencies/pom.xml b/java-shared-dependencies/first-party-dependencies/pom.xml
index b357768bb0..7deb2a9e69 100644
--- a/java-shared-dependencies/first-party-dependencies/pom.xml
+++ b/java-shared-dependencies/first-party-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.google.cloud
first-party-dependencies
pom
- 3.43.1-SNAPSHOT
+ 3.44.0
Google Cloud First-party Shared Dependencies
Shared first-party dependencies for Google Cloud Java libraries.
@@ -33,7 +33,7 @@
com.google.api
gapic-generator-java-bom
- 2.53.1-SNAPSHOT
+ 2.54.0
pom
import
@@ -45,7 +45,7 @@
com.google.cloud
google-cloud-core-bom
- 2.51.1-SNAPSHOT
+ 2.52.0
pom
import
@@ -69,13 +69,13 @@
com.google.cloud
google-cloud-core
- 2.51.1-SNAPSHOT
+ 2.52.0
test-jar
com.google.cloud
google-cloud-core
- 2.51.1-SNAPSHOT
+ 2.52.0
tests
diff --git a/java-shared-dependencies/pom.xml b/java-shared-dependencies/pom.xml
index f4f756f489..b830747fcf 100644
--- a/java-shared-dependencies/pom.xml
+++ b/java-shared-dependencies/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-shared-dependencies
pom
- 3.43.1-SNAPSHOT
+ 3.44.0
first-party-dependencies
third-party-dependencies
@@ -17,7 +17,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../gapic-generator-java-pom-parent
@@ -31,14 +31,14 @@
com.google.cloud
first-party-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
com.google.cloud
third-party-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
diff --git a/java-shared-dependencies/third-party-dependencies/pom.xml b/java-shared-dependencies/third-party-dependencies/pom.xml
index a04b8348be..1d11cff55a 100644
--- a/java-shared-dependencies/third-party-dependencies/pom.xml
+++ b/java-shared-dependencies/third-party-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.google.cloud
third-party-dependencies
pom
- 3.43.1-SNAPSHOT
+ 3.44.0
Google Cloud Third-party Shared Dependencies
Shared third-party dependencies for Google Cloud Java libraries.
@@ -15,7 +15,7 @@
com.google.api
gapic-generator-java-pom-parent
- 2.53.1-SNAPSHOT
+ 2.54.0
../../gapic-generator-java-pom-parent
diff --git a/java-shared-dependencies/upper-bound-check/pom.xml b/java-shared-dependencies/upper-bound-check/pom.xml
index 9b51088799..9a83c94e69 100644
--- a/java-shared-dependencies/upper-bound-check/pom.xml
+++ b/java-shared-dependencies/upper-bound-check/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
shared-dependencies-upper-bound-test
pom
- 3.43.1-SNAPSHOT
+ 3.44.0
Upper bound test for Google Cloud Shared Dependencies
An upper bound test case for the shared dependencies BOM. A failure of this test case means
@@ -30,7 +30,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
diff --git a/sdk-platform-java-config/pom.xml b/sdk-platform-java-config/pom.xml
index bf56be4f33..71204635d5 100644
--- a/sdk-platform-java-config/pom.xml
+++ b/sdk-platform-java-config/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
sdk-platform-java-config
pom
- 3.43.1-SNAPSHOT
+ 3.44.0
SDK Platform For Java Configurations
Shared build configuration for Google Cloud Java libraries.
@@ -17,6 +17,6 @@
- 3.43.1-SNAPSHOT
+ 3.44.0
\ No newline at end of file
diff --git a/showcase/pom.xml b/showcase/pom.xml
index b4268e3b8b..98830421cd 100644
--- a/showcase/pom.xml
+++ b/showcase/pom.xml
@@ -34,7 +34,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 3.43.1-SNAPSHOT
+ 3.44.0
pom
import
diff --git a/versions.txt b/versions.txt
index bafc3eee6c..b4eb861b60 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,19 +1,19 @@
# Format:
# module:released-version:current-version
-gapic-generator-java:2.53.0:2.53.1-SNAPSHOT
-api-common:2.44.0:2.44.1-SNAPSHOT
-gax:2.61.0:2.61.1-SNAPSHOT
-gax-grpc:2.61.0:2.61.1-SNAPSHOT
-gax-httpjson:0.146.0:0.146.1-SNAPSHOT
-proto-google-common-protos:2.52.0:2.52.1-SNAPSHOT
-grpc-google-common-protos:2.52.0:2.52.1-SNAPSHOT
-proto-google-iam-v1:1.47.0:1.47.1-SNAPSHOT
-grpc-google-iam-v1:1.47.0:1.47.1-SNAPSHOT
-proto-google-iam-v2beta:1.47.0:1.47.1-SNAPSHOT
-grpc-google-iam-v2beta:1.47.0:1.47.1-SNAPSHOT
-google-iam-policy:1.47.0:1.47.1-SNAPSHOT
-proto-google-iam-v2:1.47.0:1.47.1-SNAPSHOT
-grpc-google-iam-v2:1.47.0:1.47.1-SNAPSHOT
-google-cloud-core:2.51.0:2.51.1-SNAPSHOT
-google-cloud-shared-dependencies:3.43.0:3.43.1-SNAPSHOT
+gapic-generator-java:2.54.0:2.54.0
+api-common:2.45.0:2.45.0
+gax:2.62.0:2.62.0
+gax-grpc:2.62.0:2.62.0
+gax-httpjson:0.147.0:0.147.0
+proto-google-common-protos:2.53.0:2.53.0
+grpc-google-common-protos:2.53.0:2.53.0
+proto-google-iam-v1:1.48.0:1.48.0
+grpc-google-iam-v1:1.48.0:1.48.0
+proto-google-iam-v2beta:1.48.0:1.48.0
+grpc-google-iam-v2beta:1.48.0:1.48.0
+google-iam-policy:1.48.0:1.48.0
+proto-google-iam-v2:1.48.0:1.48.0
+grpc-google-iam-v2:1.48.0:1.48.0
+google-cloud-core:2.52.0:2.52.0
+google-cloud-shared-dependencies:3.44.0:3.44.0