Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/hermetic_library_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
- uses: googleapis/sdk-platform-java/.github/scripts@v2.61.0
- uses: googleapis/sdk-platform-java/.github/scripts@v2.62.0
if: env.SHOULD_RUN == 'true'
with:
base_ref: ${{ github.base_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/presubmit/graalvm-native-a.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Configure the docker image for kokoro-trampoline.
env_vars: {
key: "TRAMPOLINE_IMAGE"
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.52.0" # {x-version-update:google-cloud-shared-dependencies:current}
}

env_vars: {
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/presubmit/graalvm-native-b.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Configure the docker image for kokoro-trampoline.
env_vars: {
key: "TRAMPOLINE_IMAGE"
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.52.0" # {x-version-update:google-cloud-shared-dependencies:current}
}

env_vars: {
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/presubmit/graalvm-native-c.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Configure the docker image for kokoro-trampoline.
env_vars: {
key: "TRAMPOLINE_IMAGE"
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.51.0" # {x-version-update:google-cloud-shared-dependencies:current}
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.52.0" # {x-version-update:google-cloud-shared-dependencies:current}
}

env_vars: {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you are using Maven without the BOM, add this to your dependencies:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datastore</artifactId>
<version>2.31.0</version>
<version>2.31.2</version>
</dependency>

```
Expand Down
4 changes: 2 additions & 2 deletions generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gapic_generator_version: 2.61.0
googleapis_commitish: d869249c5d3da60af39dc7968140468ef7d1fdd6
gapic_generator_version: 2.62.0
googleapis_commitish: 3b2a2ae91db23a9c879b2b725d6a5de6bd64a800
libraries_bom_version: 26.66.0
libraries:
- api_shortname: datastore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setRequestMarshaller(
ProtoUtils.marshaller(ExportEntitiesRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<ImportEntitiesRequest, Operation>
Expand All @@ -73,6 +74,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setRequestMarshaller(
ProtoUtils.marshaller(ImportEntitiesRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<CreateIndexRequest, Operation> createIndexMethodDescriptor =
Expand All @@ -81,6 +83,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setFullMethodName("google.datastore.admin.v1.DatastoreAdmin/CreateIndex")
.setRequestMarshaller(ProtoUtils.marshaller(CreateIndexRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<DeleteIndexRequest, Operation> deleteIndexMethodDescriptor =
Expand All @@ -89,6 +92,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setFullMethodName("google.datastore.admin.v1.DatastoreAdmin/DeleteIndex")
.setRequestMarshaller(ProtoUtils.marshaller(DeleteIndexRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Operation.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<GetIndexRequest, Index> getIndexMethodDescriptor =
Expand All @@ -97,6 +101,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setFullMethodName("google.datastore.admin.v1.DatastoreAdmin/GetIndex")
.setRequestMarshaller(ProtoUtils.marshaller(GetIndexRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(Index.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<ListIndexesRequest, ListIndexesResponse>
Expand All @@ -107,6 +112,7 @@ public class GrpcDatastoreAdminStub extends DatastoreAdminStub {
.setRequestMarshaller(ProtoUtils.marshaller(ListIndexesRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(ListIndexesResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private final UnaryCallable<ExportEntitiesRequest, Operation> exportEntitiesCallable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setFullMethodName("google.datastore.v1.Datastore/Lookup")
.setRequestMarshaller(ProtoUtils.marshaller(LookupRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(LookupResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<RunQueryRequest, RunQueryResponse>
Expand All @@ -70,6 +71,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setFullMethodName("google.datastore.v1.Datastore/RunQuery")
.setRequestMarshaller(ProtoUtils.marshaller(RunQueryRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(RunQueryResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<RunAggregationQueryRequest, RunAggregationQueryResponse>
Expand All @@ -81,6 +83,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
ProtoUtils.marshaller(RunAggregationQueryRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(RunAggregationQueryResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<BeginTransactionRequest, BeginTransactionResponse>
Expand All @@ -92,6 +95,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
ProtoUtils.marshaller(BeginTransactionRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(BeginTransactionResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<CommitRequest, CommitResponse> commitMethodDescriptor =
Expand All @@ -100,6 +104,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setFullMethodName("google.datastore.v1.Datastore/Commit")
.setRequestMarshaller(ProtoUtils.marshaller(CommitRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(CommitResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<RollbackRequest, RollbackResponse>
Expand All @@ -109,6 +114,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setFullMethodName("google.datastore.v1.Datastore/Rollback")
.setRequestMarshaller(ProtoUtils.marshaller(RollbackRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(RollbackResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<AllocateIdsRequest, AllocateIdsResponse>
Expand All @@ -119,6 +125,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setRequestMarshaller(ProtoUtils.marshaller(AllocateIdsRequest.getDefaultInstance()))
.setResponseMarshaller(
ProtoUtils.marshaller(AllocateIdsResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private static final MethodDescriptor<ReserveIdsRequest, ReserveIdsResponse>
Expand All @@ -128,6 +135,7 @@ public class GrpcDatastoreStub extends DatastoreStub {
.setFullMethodName("google.datastore.v1.Datastore/ReserveIds")
.setRequestMarshaller(ProtoUtils.marshaller(ReserveIdsRequest.getDefaultInstance()))
.setResponseMarshaller(ProtoUtils.marshaller(ReserveIdsResponse.getDefaultInstance()))
.setSampledToLocalTracing(true)
.build();

private final UnaryCallable<LookupRequest, LookupResponse> lookupCallable;
Expand Down
Loading