File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -584,6 +584,14 @@ message PartitionQueryRequest {
584584 // if more results exist. A second call to PartitionQuery will return up to
585585 // 2 partitions, to complete the total of 10 specified in `partition_count`.
586586 int32 page_size = 5 ;
587+
588+ // The consistency mode for this request.
589+ // If not set, defaults to strong consistency.
590+ oneof consistency_selector {
591+ // Reads documents as they were at the given time.
592+ // This may not be older than 270 seconds.
593+ google.protobuf.Timestamp read_time = 6 ;
594+ }
587595}
588596
589597// The response for [Firestore.PartitionQuery][google.firestore.v1.Firestore.PartitionQuery].
@@ -868,6 +876,14 @@ message ListCollectionIdsRequest {
868876 // A page token. Must be a value from
869877 // [ListCollectionIdsResponse][google.firestore.v1.ListCollectionIdsResponse].
870878 string page_token = 3 ;
879+
880+ // The consistency mode for this request.
881+ // If not set, defaults to strong consistency.
882+ oneof consistency_selector {
883+ // Reads documents as they were at the given time.
884+ // This may not be older than 270 seconds.
885+ google.protobuf.Timestamp read_time = 4 ;
886+ }
871887}
872888
873889// The response from [Firestore.ListCollectionIds][google.firestore.v1.Firestore.ListCollectionIds].
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ name: firestore.googleapis.com
44title : Cloud Firestore API
55
66apis :
7+ - name : google.cloud.location.Locations
78- name : google.firestore.v1.Firestore
9+ - name : google.longrunning.Operations
810
911documentation :
1012 summary : |-
You can’t perform that action at this time.
0 commit comments