PartitionQueryRequest

com.google.firestore.v1.firestore.PartitionQueryRequest
See thePartitionQueryRequest companion object
final case class PartitionQueryRequest(parent: String, queryType: QueryType, partitionCount: Long, pageToken: String, pageSize: Int, consistencySelector: ConsistencySelector, unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[PartitionQueryRequest]

The request for [Firestore.PartitionQuery][google.firestore.v1.Firestore.PartitionQuery].

Value parameters

pageSize

The maximum number of partitions to return in this call, subject to partition_count. For example, if partition_count = 10 and page_size = 8, the first call to PartitionQuery will return up to 8 partitions and a next_page_token if more results exist. A second call to PartitionQuery will return up to 2 partitions, to complete the total of 10 specified in partition_count.

pageToken

The next_page_token value returned from a previous call to PartitionQuery that may be used to get an additional set of results. There are no ordering guarantees between sets of results. Thus, using multiple sets of results will require merging the different result sets. For example, two subsequent calls using a page_token may return: * cursor B, cursor M, cursor Q * cursor A, cursor U, cursor W To obtain a complete result set ordered with respect to the results of the query supplied to PartitionQuery, the results sets should be merged: cursor A, cursor B, cursor M, cursor Q, cursor U, cursor W

parent

Required. The parent resource name. In the format: projects/{project_id}/databases/{database_id}/documents. Document resource names are not supported; only database resource names can be specified.

partitionCount

The desired maximum number of partition points. The partitions may be returned across multiple pages of results. The number must be positive. The actual number of partitions returned may be fewer. For example, this may be set to one fewer than the number of parallel queries to be run, or in running a data pipeline job, one fewer than the number of workers or compute instances available.

Attributes

Companion
object
Source
PartitionQueryRequest.scala
Graph
Supertypes
trait Updatable[PartitionQueryRequest]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def getField(`__field`: FieldDescriptor): PValue

Attributes

Source
PartitionQueryRequest.scala
def getFieldByNumber(`__fieldNumber`: Int): Any

Attributes

Source
PartitionQueryRequest.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
PartitionQueryRequest.scala
def toProtoString: String

Returns a human-readable ASCII format representation of this message.

Returns a human-readable ASCII format representation of this message.

The original message can be decoded from this format by using fromAscii on the companion object.

Attributes

Returns

human-readable representation of this message.

Source
PartitionQueryRequest.scala
def withPageToken(`__v`: String): PartitionQueryRequest

Attributes

Source
PartitionQueryRequest.scala
def withParent(`__v`: String): PartitionQueryRequest

Attributes

Source
PartitionQueryRequest.scala
def withUnknownFields(`__v`: UnknownFieldSet): PartitionQueryRequest

Attributes

Source
PartitionQueryRequest.scala
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Source
PartitionQueryRequest.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala

Attributes

Inherited from:
Updatable
Source
Lenses.scala
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala