TanuSharma2511 commented on code in PR #35017:
URL: https://github.com/apache/beam/pull/35017#discussion_r2125857979
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/firestore/FirestoreV1.java:
##########
@@ -502,9 +504,17 @@ public PartitionQuery.Builder partitionQuery() {
*/
@Immutable
public static final class Write {
- private static final Write INSTANCE = new Write();
+ private @Nullable String projectId;
+ private @Nullable String databaseId;
- private Write() {}
+ public static final Write INSTANCE = new Write(null, null);
+
+ public Write() {}
+
+ public Write(@Nullable String projectId, @Nullable String databaseId) {
+ this.projectId = projectId;
+ this.databaseId = databaseId;
+ }
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]