+ * The Cloud Firestore Admin API. + * This API provides several administrative services for Cloud Firestore. + * Project, Database, Namespace, Collection, Collection Group, and Document are + * used as defined in the Google Cloud Firestore API. + * Operation: An Operation represents work being performed in the background. + * The index service manages Cloud Firestore indexes. + * Index creation is performed asynchronously. + * An Operation resource is created for each such asynchronous operation. + * The state of the operation (including any errors encountered) + * may be queried via the Operation resource. + * The Operations collection provides a record of actions performed for the + * specified Project (including any Operations in progress). Operations are not + * created directly but through calls on other collections or resources. + * An Operation that is done may be deleted so that it is no longer listed as + * part of the Operation collection. Operations are garbage collected after + * 30 days. By default, ListOperations will only return in progress and failed + * operations. To list completed operation, issue a ListOperations request with + * the filter `done: true`. + * Operations are created by service `FirestoreAdmin`, but are accessed via + * service `google.longrunning.Operations`. + *+ */ + public abstract static class FirestoreAdminImplBase + implements io.grpc.BindableService, AsyncService { @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { - return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) - .addMethod( - getCreateIndexMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.CreateIndexRequest, - com.google.longrunning.Operation>(this, METHODID_CREATE_INDEX))) - .addMethod( - getListIndexesMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.ListIndexesRequest, - com.google.firestore.admin.v1.ListIndexesResponse>( - this, METHODID_LIST_INDEXES))) - .addMethod( - getGetIndexMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.GetIndexRequest, - com.google.firestore.admin.v1.Index>(this, METHODID_GET_INDEX))) - .addMethod( - getDeleteIndexMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.DeleteIndexRequest, com.google.protobuf.Empty>( - this, METHODID_DELETE_INDEX))) - .addMethod( - getGetFieldMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.GetFieldRequest, - com.google.firestore.admin.v1.Field>(this, METHODID_GET_FIELD))) - .addMethod( - getUpdateFieldMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.UpdateFieldRequest, - com.google.longrunning.Operation>(this, METHODID_UPDATE_FIELD))) - .addMethod( - getListFieldsMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.ListFieldsRequest, - com.google.firestore.admin.v1.ListFieldsResponse>( - this, METHODID_LIST_FIELDS))) - .addMethod( - getExportDocumentsMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.ExportDocumentsRequest, - com.google.longrunning.Operation>(this, METHODID_EXPORT_DOCUMENTS))) - .addMethod( - getImportDocumentsMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.ImportDocumentsRequest, - com.google.longrunning.Operation>(this, METHODID_IMPORT_DOCUMENTS))) - .addMethod( - getGetDatabaseMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.GetDatabaseRequest, - com.google.firestore.admin.v1.Database>(this, METHODID_GET_DATABASE))) - .addMethod( - getListDatabasesMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.ListDatabasesRequest, - com.google.firestore.admin.v1.ListDatabasesResponse>( - this, METHODID_LIST_DATABASES))) - .addMethod( - getUpdateDatabaseMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.admin.v1.UpdateDatabaseRequest, - com.google.longrunning.Operation>(this, METHODID_UPDATE_DATABASE))) - .build(); + return FirestoreAdminGrpc.bindService(this); } } /** - * + * A stub to allow clients to do asynchronous rpc calls to service FirestoreAdmin. * *
* The Cloud Firestore Admin API.
@@ -1181,7 +1135,7 @@ public void updateDatabase(
}
/**
- *
+ * A stub to allow clients to do synchronous rpc calls to service FirestoreAdmin.
*
*
* The Cloud Firestore Admin API.
@@ -1405,7 +1359,7 @@ public com.google.longrunning.Operation updateDatabase(
}
/**
- *
+ * A stub to allow clients to do ListenableFuture-style rpc calls to service FirestoreAdmin.
*
*
* The Cloud Firestore Admin API.
@@ -1650,10 +1604,10 @@ private static final class MethodHandlers
io.grpc.stub.ServerCalls.ServerStreamingMethod,
io.grpc.stub.ServerCalls.ClientStreamingMethod,
io.grpc.stub.ServerCalls.BidiStreamingMethod {
- private final FirestoreAdminImplBase serviceImpl;
+ private final AsyncService serviceImpl;
private final int methodId;
- MethodHandlers(FirestoreAdminImplBase serviceImpl, int methodId) {
+ MethodHandlers(AsyncService serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@@ -1742,6 +1696,86 @@ public io.grpc.stub.StreamObserver invoke(
}
}
+ public static final io.grpc.ServerServiceDefinition bindService(AsyncService service) {
+ return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
+ .addMethod(
+ getCreateIndexMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.CreateIndexRequest,
+ com.google.longrunning.Operation>(service, METHODID_CREATE_INDEX)))
+ .addMethod(
+ getListIndexesMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.ListIndexesRequest,
+ com.google.firestore.admin.v1.ListIndexesResponse>(
+ service, METHODID_LIST_INDEXES)))
+ .addMethod(
+ getGetIndexMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.GetIndexRequest,
+ com.google.firestore.admin.v1.Index>(service, METHODID_GET_INDEX)))
+ .addMethod(
+ getDeleteIndexMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.DeleteIndexRequest, com.google.protobuf.Empty>(
+ service, METHODID_DELETE_INDEX)))
+ .addMethod(
+ getGetFieldMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.GetFieldRequest,
+ com.google.firestore.admin.v1.Field>(service, METHODID_GET_FIELD)))
+ .addMethod(
+ getUpdateFieldMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.UpdateFieldRequest,
+ com.google.longrunning.Operation>(service, METHODID_UPDATE_FIELD)))
+ .addMethod(
+ getListFieldsMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.ListFieldsRequest,
+ com.google.firestore.admin.v1.ListFieldsResponse>(
+ service, METHODID_LIST_FIELDS)))
+ .addMethod(
+ getExportDocumentsMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.ExportDocumentsRequest,
+ com.google.longrunning.Operation>(service, METHODID_EXPORT_DOCUMENTS)))
+ .addMethod(
+ getImportDocumentsMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.ImportDocumentsRequest,
+ com.google.longrunning.Operation>(service, METHODID_IMPORT_DOCUMENTS)))
+ .addMethod(
+ getGetDatabaseMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.GetDatabaseRequest,
+ com.google.firestore.admin.v1.Database>(service, METHODID_GET_DATABASE)))
+ .addMethod(
+ getListDatabasesMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.ListDatabasesRequest,
+ com.google.firestore.admin.v1.ListDatabasesResponse>(
+ service, METHODID_LIST_DATABASES)))
+ .addMethod(
+ getUpdateDatabaseMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.admin.v1.UpdateDatabaseRequest,
+ com.google.longrunning.Operation>(service, METHODID_UPDATE_DATABASE)))
+ .build();
+ }
+
private abstract static class FirestoreAdminBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier,
io.grpc.protobuf.ProtoServiceDescriptorSupplier {
diff --git a/grpc-google-cloud-firestore-v1/pom.xml b/grpc-google-cloud-firestore-v1/pom.xml
index 943fb817d8..ded52c725d 100644
--- a/grpc-google-cloud-firestore-v1/pom.xml
+++ b/grpc-google-cloud-firestore-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-cloud-firestore-v1
- 3.9.2
+ 3.9.3
grpc-google-cloud-firestore-v1
GRPC library for grpc-google-cloud-firestore-v1
com.google.cloud
google-cloud-firestore-parent
- 3.9.2
+ 3.9.3
diff --git a/grpc-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/FirestoreGrpc.java b/grpc-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/FirestoreGrpc.java
index c78651db52..62172b7ea2 100644
--- a/grpc-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/FirestoreGrpc.java
+++ b/grpc-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/FirestoreGrpc.java
@@ -776,7 +776,7 @@ public FirestoreFutureStub newStub(
* truly serverless apps.
*
*/
- public abstract static class FirestoreImplBase implements io.grpc.BindableService {
+ public interface AsyncService {
/**
*
@@ -785,7 +785,7 @@ public abstract static class FirestoreImplBase implements io.grpc.BindableServic
* Gets a single document.
*
*/
- public void getDocument(
+ default void getDocument(
com.google.firestore.v1.GetDocumentRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(
@@ -799,7 +799,7 @@ public void getDocument(
* Lists documents.
*
*/
- public void listDocuments(
+ default void listDocuments(
com.google.firestore.v1.ListDocumentsRequest request,
io.grpc.stub.StreamObserver+ * The Cloud Firestore service. + * Cloud Firestore is a fast, fully managed, serverless, cloud-native NoSQL + * document database that simplifies storing, syncing, and querying data for + * your mobile, web, and IoT apps at global scale. Its client libraries provide + * live synchronization and offline support, while its security features and + * integrations with Firebase and Google Cloud Platform accelerate building + * truly serverless apps. + *+ */ + public abstract static class FirestoreImplBase implements io.grpc.BindableService, AsyncService { @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { - return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) - .addMethod( - getGetDocumentMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.GetDocumentRequest, com.google.firestore.v1.Document>( - this, METHODID_GET_DOCUMENT))) - .addMethod( - getListDocumentsMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.ListDocumentsRequest, - com.google.firestore.v1.ListDocumentsResponse>( - this, METHODID_LIST_DOCUMENTS))) - .addMethod( - getUpdateDocumentMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.UpdateDocumentRequest, - com.google.firestore.v1.Document>(this, METHODID_UPDATE_DOCUMENT))) - .addMethod( - getDeleteDocumentMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.DeleteDocumentRequest, com.google.protobuf.Empty>( - this, METHODID_DELETE_DOCUMENT))) - .addMethod( - getBatchGetDocumentsMethod(), - io.grpc.stub.ServerCalls.asyncServerStreamingCall( - new MethodHandlers< - com.google.firestore.v1.BatchGetDocumentsRequest, - com.google.firestore.v1.BatchGetDocumentsResponse>( - this, METHODID_BATCH_GET_DOCUMENTS))) - .addMethod( - getBeginTransactionMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.BeginTransactionRequest, - com.google.firestore.v1.BeginTransactionResponse>( - this, METHODID_BEGIN_TRANSACTION))) - .addMethod( - getCommitMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.CommitRequest, - com.google.firestore.v1.CommitResponse>(this, METHODID_COMMIT))) - .addMethod( - getRollbackMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.RollbackRequest, com.google.protobuf.Empty>( - this, METHODID_ROLLBACK))) - .addMethod( - getRunQueryMethod(), - io.grpc.stub.ServerCalls.asyncServerStreamingCall( - new MethodHandlers< - com.google.firestore.v1.RunQueryRequest, - com.google.firestore.v1.RunQueryResponse>(this, METHODID_RUN_QUERY))) - .addMethod( - getRunAggregationQueryMethod(), - io.grpc.stub.ServerCalls.asyncServerStreamingCall( - new MethodHandlers< - com.google.firestore.v1.RunAggregationQueryRequest, - com.google.firestore.v1.RunAggregationQueryResponse>( - this, METHODID_RUN_AGGREGATION_QUERY))) - .addMethod( - getPartitionQueryMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.PartitionQueryRequest, - com.google.firestore.v1.PartitionQueryResponse>( - this, METHODID_PARTITION_QUERY))) - .addMethod( - getWriteMethod(), - io.grpc.stub.ServerCalls.asyncBidiStreamingCall( - new MethodHandlers< - com.google.firestore.v1.WriteRequest, com.google.firestore.v1.WriteResponse>( - this, METHODID_WRITE))) - .addMethod( - getListenMethod(), - io.grpc.stub.ServerCalls.asyncBidiStreamingCall( - new MethodHandlers< - com.google.firestore.v1.ListenRequest, - com.google.firestore.v1.ListenResponse>(this, METHODID_LISTEN))) - .addMethod( - getListCollectionIdsMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.ListCollectionIdsRequest, - com.google.firestore.v1.ListCollectionIdsResponse>( - this, METHODID_LIST_COLLECTION_IDS))) - .addMethod( - getBatchWriteMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.BatchWriteRequest, - com.google.firestore.v1.BatchWriteResponse>(this, METHODID_BATCH_WRITE))) - .addMethod( - getCreateDocumentMethod(), - io.grpc.stub.ServerCalls.asyncUnaryCall( - new MethodHandlers< - com.google.firestore.v1.CreateDocumentRequest, - com.google.firestore.v1.Document>(this, METHODID_CREATE_DOCUMENT))) - .build(); + return FirestoreGrpc.bindService(this); } } /** - * + * A stub to allow clients to do asynchronous rpc calls to service Firestore. * *
* The Cloud Firestore service.
@@ -1428,7 +1341,7 @@ public void createDocument(
}
/**
- *
+ * A stub to allow clients to do synchronous rpc calls to service Firestore.
*
*
* The Cloud Firestore service.
@@ -1655,7 +1568,7 @@ public com.google.firestore.v1.Document createDocument(
}
/**
- *
+ * A stub to allow clients to do ListenableFuture-style rpc calls to service Firestore.
*
*
* The Cloud Firestore service.
@@ -1859,10 +1772,10 @@ private static final class MethodHandlers
io.grpc.stub.ServerCalls.ServerStreamingMethod,
io.grpc.stub.ServerCalls.ClientStreamingMethod,
io.grpc.stub.ServerCalls.BidiStreamingMethod {
- private final FirestoreImplBase serviceImpl;
+ private final AsyncService serviceImpl;
private final int methodId;
- MethodHandlers(FirestoreImplBase serviceImpl, int methodId) {
+ MethodHandlers(AsyncService serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@@ -1976,6 +1889,113 @@ public io.grpc.stub.StreamObserver invoke(
}
}
+ public static final io.grpc.ServerServiceDefinition bindService(AsyncService service) {
+ return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
+ .addMethod(
+ getGetDocumentMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.GetDocumentRequest, com.google.firestore.v1.Document>(
+ service, METHODID_GET_DOCUMENT)))
+ .addMethod(
+ getListDocumentsMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.ListDocumentsRequest,
+ com.google.firestore.v1.ListDocumentsResponse>(
+ service, METHODID_LIST_DOCUMENTS)))
+ .addMethod(
+ getUpdateDocumentMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.UpdateDocumentRequest,
+ com.google.firestore.v1.Document>(service, METHODID_UPDATE_DOCUMENT)))
+ .addMethod(
+ getDeleteDocumentMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.DeleteDocumentRequest, com.google.protobuf.Empty>(
+ service, METHODID_DELETE_DOCUMENT)))
+ .addMethod(
+ getBatchGetDocumentsMethod(),
+ io.grpc.stub.ServerCalls.asyncServerStreamingCall(
+ new MethodHandlers<
+ com.google.firestore.v1.BatchGetDocumentsRequest,
+ com.google.firestore.v1.BatchGetDocumentsResponse>(
+ service, METHODID_BATCH_GET_DOCUMENTS)))
+ .addMethod(
+ getBeginTransactionMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.BeginTransactionRequest,
+ com.google.firestore.v1.BeginTransactionResponse>(
+ service, METHODID_BEGIN_TRANSACTION)))
+ .addMethod(
+ getCommitMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.CommitRequest, com.google.firestore.v1.CommitResponse>(
+ service, METHODID_COMMIT)))
+ .addMethod(
+ getRollbackMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.RollbackRequest, com.google.protobuf.Empty>(
+ service, METHODID_ROLLBACK)))
+ .addMethod(
+ getRunQueryMethod(),
+ io.grpc.stub.ServerCalls.asyncServerStreamingCall(
+ new MethodHandlers<
+ com.google.firestore.v1.RunQueryRequest,
+ com.google.firestore.v1.RunQueryResponse>(service, METHODID_RUN_QUERY)))
+ .addMethod(
+ getRunAggregationQueryMethod(),
+ io.grpc.stub.ServerCalls.asyncServerStreamingCall(
+ new MethodHandlers<
+ com.google.firestore.v1.RunAggregationQueryRequest,
+ com.google.firestore.v1.RunAggregationQueryResponse>(
+ service, METHODID_RUN_AGGREGATION_QUERY)))
+ .addMethod(
+ getPartitionQueryMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.PartitionQueryRequest,
+ com.google.firestore.v1.PartitionQueryResponse>(
+ service, METHODID_PARTITION_QUERY)))
+ .addMethod(
+ getWriteMethod(),
+ io.grpc.stub.ServerCalls.asyncBidiStreamingCall(
+ new MethodHandlers<
+ com.google.firestore.v1.WriteRequest, com.google.firestore.v1.WriteResponse>(
+ service, METHODID_WRITE)))
+ .addMethod(
+ getListenMethod(),
+ io.grpc.stub.ServerCalls.asyncBidiStreamingCall(
+ new MethodHandlers<
+ com.google.firestore.v1.ListenRequest, com.google.firestore.v1.ListenResponse>(
+ service, METHODID_LISTEN)))
+ .addMethod(
+ getListCollectionIdsMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.ListCollectionIdsRequest,
+ com.google.firestore.v1.ListCollectionIdsResponse>(
+ service, METHODID_LIST_COLLECTION_IDS)))
+ .addMethod(
+ getBatchWriteMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.BatchWriteRequest,
+ com.google.firestore.v1.BatchWriteResponse>(service, METHODID_BATCH_WRITE)))
+ .addMethod(
+ getCreateDocumentMethod(),
+ io.grpc.stub.ServerCalls.asyncUnaryCall(
+ new MethodHandlers<
+ com.google.firestore.v1.CreateDocumentRequest,
+ com.google.firestore.v1.Document>(service, METHODID_CREATE_DOCUMENT)))
+ .build();
+ }
+
private abstract static class FirestoreBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier,
io.grpc.protobuf.ProtoServiceDescriptorSupplier {
diff --git a/pom.xml b/pom.xml
index eafa9602a6..813e77f6f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-firestore-parent
pom
- 3.9.2
+ 3.9.3
Google Cloud Firestore Parent
https://github.com/googleapis/java-firestore
@@ -150,38 +150,38 @@
com.google.api.grpc
proto-google-cloud-firestore-admin-v1
- 3.9.2
+ 3.9.3
com.google.cloud
google-cloud-firestore
- 3.9.2
+ 3.9.3
com.google.cloud
proto-google-cloud-firestore-bundle-v1
- 3.9.2
+ 3.9.3
com.google.api.grpc
proto-google-cloud-firestore-v1
- 3.9.2
+ 3.9.3
com.google.api.grpc
grpc-google-cloud-firestore-admin-v1
- 3.9.2
+ 3.9.3
com.google.api.grpc
grpc-google-cloud-firestore-v1
- 3.9.2
+ 3.9.3
com.google.cloud
google-cloud-shared-dependencies
- 3.5.0
+ 3.6.0
pom
import
diff --git a/proto-google-cloud-firestore-admin-v1/pom.xml b/proto-google-cloud-firestore-admin-v1/pom.xml
index 7b7e50ff64..8ec7ae5003 100644
--- a/proto-google-cloud-firestore-admin-v1/pom.xml
+++ b/proto-google-cloud-firestore-admin-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-firestore-admin-v1
- 3.9.2
+ 3.9.3
proto-google-cloud-firestore-admin-v1
PROTO library for proto-google-cloud-firestore-admin-v1
com.google.cloud
google-cloud-firestore-parent
- 3.9.2
+ 3.9.3
diff --git a/proto-google-cloud-firestore-bundle-v1/pom.xml b/proto-google-cloud-firestore-bundle-v1/pom.xml
index e7be58adb6..a501a5ecca 100644
--- a/proto-google-cloud-firestore-bundle-v1/pom.xml
+++ b/proto-google-cloud-firestore-bundle-v1/pom.xml
@@ -5,14 +5,14 @@
4.0.0
proto-google-cloud-firestore-bundle-v1
- 3.9.2
+ 3.9.3
proto-google-cloud-firestore-bundle-v1
PROTO library for proto-google-cloud-firestore-bundle-v1
com.google.cloud
google-cloud-firestore-parent
- 3.9.2
+ 3.9.3
diff --git a/proto-google-cloud-firestore-v1/pom.xml b/proto-google-cloud-firestore-v1/pom.xml
index 466c678be4..734a14aac3 100644
--- a/proto-google-cloud-firestore-v1/pom.xml
+++ b/proto-google-cloud-firestore-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-firestore-v1
- 3.9.2
+ 3.9.3
proto-google-cloud-firestore-v1
PROTO library for proto-google-cloud-firestore-v1
com.google.cloud
google-cloud-firestore-parent
- 3.9.2
+ 3.9.3
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 80f3374207..96370b4d0f 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -30,7 +30,7 @@
com.google.cloud
google-cloud-firestore
- 3.9.1
+ 3.9.2
diff --git a/samples/native-image-sample/pom.xml b/samples/native-image-sample/pom.xml
index e06b5cb9ec..fcbec268d0 100644
--- a/samples/native-image-sample/pom.xml
+++ b/samples/native-image-sample/pom.xml
@@ -32,7 +32,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
com.google.cloud
libraries-bom
- 26.10.0
+ 26.11.0
pom
import
diff --git a/samples/pom.xml b/samples/pom.xml
index df9eb5deb4..92ca82ebec 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -39,7 +39,7 @@
org.apache.maven.plugins
maven-deploy-plugin
- 3.1.0
+ 3.1.1
true
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index d10b48d90a..f7263c9e65 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-firestore
- 3.9.1
+ 3.9.2
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index fc64bd9bf0..f92ed13399 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -34,7 +34,7 @@
com.google.cloud
libraries-bom
- 26.10.0
+ 26.11.0
pom
import
diff --git a/versions.txt b/versions.txt
index f61c50b1fd..8ff2963dda 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,11 +1,11 @@
# Format:
# module:released-version:current-version
-google-cloud-firestore:3.9.2:3.9.2
-google-cloud-firestore-admin:3.9.2:3.9.2
-google-cloud-firestore-bom:3.9.2:3.9.2
-grpc-google-cloud-firestore-admin-v1:3.9.2:3.9.2
-grpc-google-cloud-firestore-v1:3.9.2:3.9.2
-proto-google-cloud-firestore-admin-v1:3.9.2:3.9.2
-proto-google-cloud-firestore-v1:3.9.2:3.9.2
-proto-google-cloud-firestore-bundle-v1:3.9.2:3.9.2
+google-cloud-firestore:3.9.3:3.9.3
+google-cloud-firestore-admin:3.9.3:3.9.3
+google-cloud-firestore-bom:3.9.3:3.9.3
+grpc-google-cloud-firestore-admin-v1:3.9.3:3.9.3
+grpc-google-cloud-firestore-v1:3.9.3:3.9.3
+proto-google-cloud-firestore-admin-v1:3.9.3:3.9.3
+proto-google-cloud-firestore-v1:3.9.3:3.9.3
+proto-google-cloud-firestore-bundle-v1:3.9.3:3.9.3