Skip to content

Commit 41909b7

Browse files
feat: Add bloom filter related proto fields (only in the preview API surface) (#1274)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 527090049 Source-Link: https://togithub.com/googleapis/googleapis/commit/e2b7cb94f3e78df146a05744170353bc60c4ec21 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/b0d2cc1c48ddac1c5dbac1ce199d29eaf1c5ec0c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjBkMmNjMWM0OGRkYWMxYzVkYmFjMWNlMTk5ZDI5ZWFmMWM1ZWMwYyJ9
1 parent c983982 commit 41909b7

File tree

13 files changed

+258
-103
lines changed

13 files changed

+258
-103
lines changed

google-cloud-firestore/src/main/java/com/google/cloud/firestore/v1/FirestoreClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ public final PartitionQueryPagedResponse partitionQuery(PartitionQueryRequest re
10401040
// AUTO-GENERATED DOCUMENTATION AND METHOD.
10411041
/**
10421042
* Streams batches of document updates and deletes, in order. This method is only available via
1043-
* the gRPC API (not REST).
1043+
* gRPC or WebChannel (not REST).
10441044
*
10451045
* <p>Sample code:
10461046
*
@@ -1073,7 +1073,7 @@ public final BidiStreamingCallable<WriteRequest, WriteResponse> writeCallable()
10731073

10741074
// AUTO-GENERATED DOCUMENTATION AND METHOD.
10751075
/**
1076-
* Listens to changes. This method is only available via the gRPC API (not REST).
1076+
* Listens to changes. This method is only available via gRPC or WebChannel (not REST).
10771077
*
10781078
* <p>Sample code:
10791079
*

grpc-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/FirestoreGrpc.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ default void partitionQuery(
952952
*
953953
* <pre>
954954
* Streams batches of document updates and deletes, in order. This method is
955-
* only available via the gRPC API (not REST).
955+
* only available via gRPC or WebChannel (not REST).
956956
* </pre>
957957
*/
958958
default io.grpc.stub.StreamObserver<com.google.firestore.v1.WriteRequest> write(
@@ -965,8 +965,8 @@ default io.grpc.stub.StreamObserver<com.google.firestore.v1.WriteRequest> write(
965965
*
966966
*
967967
* <pre>
968-
* Listens to changes. This method is only available via the gRPC API (not
969-
* REST).
968+
* Listens to changes. This method is only available via gRPC or WebChannel
969+
* (not REST).
970970
* </pre>
971971
*/
972972
default io.grpc.stub.StreamObserver<com.google.firestore.v1.ListenRequest> listen(
@@ -1262,7 +1262,7 @@ public void partitionQuery(
12621262
*
12631263
* <pre>
12641264
* Streams batches of document updates and deletes, in order. This method is
1265-
* only available via the gRPC API (not REST).
1265+
* only available via gRPC or WebChannel (not REST).
12661266
* </pre>
12671267
*/
12681268
public io.grpc.stub.StreamObserver<com.google.firestore.v1.WriteRequest> write(
@@ -1275,8 +1275,8 @@ public io.grpc.stub.StreamObserver<com.google.firestore.v1.WriteRequest> write(
12751275
*
12761276
*
12771277
* <pre>
1278-
* Listens to changes. This method is only available via the gRPC API (not
1279-
* REST).
1278+
* Listens to changes. This method is only available via gRPC or WebChannel
1279+
* (not REST).
12801280
* </pre>
12811281
*/
12821282
public io.grpc.stub.StreamObserver<com.google.firestore.v1.ListenRequest> listen(

proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/RunAggregationQueryResponse.java

Lines changed: 84 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,13 @@ public com.google.protobuf.ByteString getTransaction() {
147147
*
148148
*
149149
* <pre>
150-
* The time at which the aggregate value is valid for.
150+
* The time at which the aggregate result was computed. This is always
151+
* monotonically increasing; in this case, the previous AggregationResult in
152+
* the result stream are guaranteed not to have changed between their
153+
* `read_time` and this one.
154+
* If the query returns no results, a response with `read_time` and no
155+
* `result` will be sent, and this represents the time at which the query
156+
* was run.
151157
* </pre>
152158
*
153159
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -162,7 +168,13 @@ public boolean hasReadTime() {
162168
*
163169
*
164170
* <pre>
165-
* The time at which the aggregate value is valid for.
171+
* The time at which the aggregate result was computed. This is always
172+
* monotonically increasing; in this case, the previous AggregationResult in
173+
* the result stream are guaranteed not to have changed between their
174+
* `read_time` and this one.
175+
* If the query returns no results, a response with `read_time` and no
176+
* `result` will be sent, and this represents the time at which the query
177+
* was run.
166178
* </pre>
167179
*
168180
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -177,7 +189,13 @@ public com.google.protobuf.Timestamp getReadTime() {
177189
*
178190
*
179191
* <pre>
180-
* The time at which the aggregate value is valid for.
192+
* The time at which the aggregate result was computed. This is always
193+
* monotonically increasing; in this case, the previous AggregationResult in
194+
* the result stream are guaranteed not to have changed between their
195+
* `read_time` and this one.
196+
* If the query returns no results, a response with `read_time` and no
197+
* `result` will be sent, and this represents the time at which the query
198+
* was run.
181199
* </pre>
182200
*
183201
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -853,7 +871,13 @@ public Builder clearTransaction() {
853871
*
854872
*
855873
* <pre>
856-
* The time at which the aggregate value is valid for.
874+
* The time at which the aggregate result was computed. This is always
875+
* monotonically increasing; in this case, the previous AggregationResult in
876+
* the result stream are guaranteed not to have changed between their
877+
* `read_time` and this one.
878+
* If the query returns no results, a response with `read_time` and no
879+
* `result` will be sent, and this represents the time at which the query
880+
* was run.
857881
* </pre>
858882
*
859883
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -867,7 +891,13 @@ public boolean hasReadTime() {
867891
*
868892
*
869893
* <pre>
870-
* The time at which the aggregate value is valid for.
894+
* The time at which the aggregate result was computed. This is always
895+
* monotonically increasing; in this case, the previous AggregationResult in
896+
* the result stream are guaranteed not to have changed between their
897+
* `read_time` and this one.
898+
* If the query returns no results, a response with `read_time` and no
899+
* `result` will be sent, and this represents the time at which the query
900+
* was run.
871901
* </pre>
872902
*
873903
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -885,7 +915,13 @@ public com.google.protobuf.Timestamp getReadTime() {
885915
*
886916
*
887917
* <pre>
888-
* The time at which the aggregate value is valid for.
918+
* The time at which the aggregate result was computed. This is always
919+
* monotonically increasing; in this case, the previous AggregationResult in
920+
* the result stream are guaranteed not to have changed between their
921+
* `read_time` and this one.
922+
* If the query returns no results, a response with `read_time` and no
923+
* `result` will be sent, and this represents the time at which the query
924+
* was run.
889925
* </pre>
890926
*
891927
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -907,7 +943,13 @@ public Builder setReadTime(com.google.protobuf.Timestamp value) {
907943
*
908944
*
909945
* <pre>
910-
* The time at which the aggregate value is valid for.
946+
* The time at which the aggregate result was computed. This is always
947+
* monotonically increasing; in this case, the previous AggregationResult in
948+
* the result stream are guaranteed not to have changed between their
949+
* `read_time` and this one.
950+
* If the query returns no results, a response with `read_time` and no
951+
* `result` will be sent, and this represents the time at which the query
952+
* was run.
911953
* </pre>
912954
*
913955
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -926,7 +968,13 @@ public Builder setReadTime(com.google.protobuf.Timestamp.Builder builderForValue
926968
*
927969
*
928970
* <pre>
929-
* The time at which the aggregate value is valid for.
971+
* The time at which the aggregate result was computed. This is always
972+
* monotonically increasing; in this case, the previous AggregationResult in
973+
* the result stream are guaranteed not to have changed between their
974+
* `read_time` and this one.
975+
* If the query returns no results, a response with `read_time` and no
976+
* `result` will be sent, and this represents the time at which the query
977+
* was run.
930978
* </pre>
931979
*
932980
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -951,7 +999,13 @@ public Builder mergeReadTime(com.google.protobuf.Timestamp value) {
951999
*
9521000
*
9531001
* <pre>
954-
* The time at which the aggregate value is valid for.
1002+
* The time at which the aggregate result was computed. This is always
1003+
* monotonically increasing; in this case, the previous AggregationResult in
1004+
* the result stream are guaranteed not to have changed between their
1005+
* `read_time` and this one.
1006+
* If the query returns no results, a response with `read_time` and no
1007+
* `result` will be sent, and this represents the time at which the query
1008+
* was run.
9551009
* </pre>
9561010
*
9571011
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -970,7 +1024,13 @@ public Builder clearReadTime() {
9701024
*
9711025
*
9721026
* <pre>
973-
* The time at which the aggregate value is valid for.
1027+
* The time at which the aggregate result was computed. This is always
1028+
* monotonically increasing; in this case, the previous AggregationResult in
1029+
* the result stream are guaranteed not to have changed between their
1030+
* `read_time` and this one.
1031+
* If the query returns no results, a response with `read_time` and no
1032+
* `result` will be sent, and this represents the time at which the query
1033+
* was run.
9741034
* </pre>
9751035
*
9761036
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -984,7 +1044,13 @@ public com.google.protobuf.Timestamp.Builder getReadTimeBuilder() {
9841044
*
9851045
*
9861046
* <pre>
987-
* The time at which the aggregate value is valid for.
1047+
* The time at which the aggregate result was computed. This is always
1048+
* monotonically increasing; in this case, the previous AggregationResult in
1049+
* the result stream are guaranteed not to have changed between their
1050+
* `read_time` and this one.
1051+
* If the query returns no results, a response with `read_time` and no
1052+
* `result` will be sent, and this represents the time at which the query
1053+
* was run.
9881054
* </pre>
9891055
*
9901056
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -1000,7 +1066,13 @@ public com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder() {
10001066
*
10011067
*
10021068
* <pre>
1003-
* The time at which the aggregate value is valid for.
1069+
* The time at which the aggregate result was computed. This is always
1070+
* monotonically increasing; in this case, the previous AggregationResult in
1071+
* the result stream are guaranteed not to have changed between their
1072+
* `read_time` and this one.
1073+
* If the query returns no results, a response with `read_time` and no
1074+
* `result` will be sent, and this represents the time at which the query
1075+
* was run.
10041076
* </pre>
10051077
*
10061078
* <code>.google.protobuf.Timestamp read_time = 3;</code>

proto-google-cloud-firestore-v1/src/main/java/com/google/firestore/v1/RunAggregationQueryResponseOrBuilder.java

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,13 @@ public interface RunAggregationQueryResponseOrBuilder
8080
*
8181
*
8282
* <pre>
83-
* The time at which the aggregate value is valid for.
83+
* The time at which the aggregate result was computed. This is always
84+
* monotonically increasing; in this case, the previous AggregationResult in
85+
* the result stream are guaranteed not to have changed between their
86+
* `read_time` and this one.
87+
* If the query returns no results, a response with `read_time` and no
88+
* `result` will be sent, and this represents the time at which the query
89+
* was run.
8490
* </pre>
8591
*
8692
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -92,7 +98,13 @@ public interface RunAggregationQueryResponseOrBuilder
9298
*
9399
*
94100
* <pre>
95-
* The time at which the aggregate value is valid for.
101+
* The time at which the aggregate result was computed. This is always
102+
* monotonically increasing; in this case, the previous AggregationResult in
103+
* the result stream are guaranteed not to have changed between their
104+
* `read_time` and this one.
105+
* If the query returns no results, a response with `read_time` and no
106+
* `result` will be sent, and this represents the time at which the query
107+
* was run.
96108
* </pre>
97109
*
98110
* <code>.google.protobuf.Timestamp read_time = 3;</code>
@@ -104,7 +116,13 @@ public interface RunAggregationQueryResponseOrBuilder
104116
*
105117
*
106118
* <pre>
107-
* The time at which the aggregate value is valid for.
119+
* The time at which the aggregate result was computed. This is always
120+
* monotonically increasing; in this case, the previous AggregationResult in
121+
* the result stream are guaranteed not to have changed between their
122+
* `read_time` and this one.
123+
* If the query returns no results, a response with `read_time` and no
124+
* `result` will be sent, and this represents the time at which the query
125+
* was run.
108126
* </pre>
109127
*
110128
* <code>.google.protobuf.Timestamp read_time = 3;</code>

0 commit comments

Comments
 (0)