Index
-
Datastore
(interface) -
AggregationQuery
(message) -
AggregationQuery.Aggregation
(message) -
AggregationQuery.Aggregation.Avg
(message) -
AggregationQuery.Aggregation.Count
(message) -
AggregationQuery.Aggregation.Sum
(message) -
AggregationResult
(message) -
AggregationResultBatch
(message) -
AllocateIdsRequest
(message) -
AllocateIdsResponse
(message) -
ArrayValue
(message) -
BeginTransactionRequest
(message) -
BeginTransactionResponse
(message) -
CommitRequest
(message) -
CommitRequest.Mode
(enum) -
CommitResponse
(message) -
CompositeFilter
(message) -
CompositeFilter.Operator
(enum) -
Entity
(message) -
EntityResult
(message) -
EntityResult.ResultType
(enum) -
ExecutionStats
(message) -
ExplainMetrics
(message) -
ExplainOptions
(message) -
Filter
(message) -
GqlQuery
(message) -
GqlQueryParameter
(message) -
Key
(message) -
Key.PathElement
(message) -
KindExpression
(message) -
LookupRequest
(message) -
LookupResponse
(message) -
Mutation
(message) -
Mutation.ConflictResolutionStrategy
(enum) -
MutationResult
(message) -
PartitionId
(message) -
PlanSummary
(message) -
Projection
(message) -
PropertyFilter
(message) -
PropertyFilter.Operator
(enum) -
PropertyMask
(message) -
PropertyOrder
(message) -
PropertyOrder.Direction
(enum) -
PropertyReference
(message) -
PropertyTransform
(message) -
PropertyTransform.ServerValue
(enum) -
Query
(message) -
QueryResultBatch
(message) -
QueryResultBatch.MoreResultsType
(enum) -
ReadOptions
(message) -
ReadOptions.ReadConsistency
(enum) -
ReserveIdsRequest
(message) -
ReserveIdsResponse
(message) -
RollbackRequest
(message) -
RollbackResponse
(message) -
RunAggregationQueryRequest
(message) -
RunAggregationQueryResponse
(message) -
RunQueryRequest
(message) -
RunQueryResponse
(message) -
TransactionOptions
(message) -
TransactionOptions.ReadOnly
(message) -
TransactionOptions.ReadWrite
(message) -
Value
(message)
Datastore
Each RPC normalizes the partition IDs of the keys in its input entities, and always returns entities with keys with normalized partition IDs. This applies to all keys and entities, including those in values, except keys with both an empty path and an empty or unset partition ID. Normalization of input keys sets the project ID (if not already set) to the project ID from the request.
rpc AllocateIds(
AllocateIdsRequest
) returns ( AllocateIdsResponse
)
Allocates IDs for the given keys, which is useful for referencing an entity before it is inserted.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc BeginTransaction(
BeginTransactionRequest
) returns ( BeginTransactionResponse
)
Begins a new transaction.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc Commit(
CommitRequest
) returns ( CommitResponse
)
Commits a transaction, optionally creating, deleting or modifying some entities.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc Lookup(
LookupRequest
) returns ( LookupResponse
)
Looks up entities by key.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc ReserveIds(
ReserveIdsRequest
) returns ( ReserveIdsResponse
)
Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc Rollback(
RollbackRequest
) returns ( RollbackResponse
)
Rolls back a transaction.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc RunAggregationQuery(
RunAggregationQueryRequest
) returns ( RunAggregationQueryResponse
)
Runs an aggregation query.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
rpc RunQuery(
RunQueryRequest
) returns ( RunQueryResponse
)
Queries for entities.
- Authorization scopes
-
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/datastore
-
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview .
-
AggregationQuery
Datastore query for running an aggregation over a Query
.
aggregations[]
Optional. Series of aggregations to apply over the results of the nested_query
.
Requires:
- A minimum of one and maximum of five aggregations per query.
query_type
. The base query to aggregate over. query_type
can be only one of the following:nested_
query
Nested query for aggregation
Aggregation
Defines an aggregation that produces a single result.
alias
string
Optional. Optional name of the property to store the result of the aggregation.
If not provided, Datastore will pick a default name following the format property_<incremental_id++>
. For example:
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2),
COUNT_UP_TO(3) AS count_up_to_3,
COUNT(*)
OVER (
...
);
becomes:
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2) AS property_1,
COUNT_UP_TO(3) AS count_up_to_3,
COUNT(*) AS property_2
OVER (
...
);
Requires:
- Must be unique across all aggregation aliases.
- Conform to
entity property name
limitations.
operator
. The type of aggregation to perform, required. operator
can be only one of the following:count
Count aggregator.
sum
Sum aggregator.
avg
Average aggregator.
Avg
Average of the values of the requested property.
-
Only numeric values will be aggregated. All non-numeric values including
NULL
are skipped. -
If the aggregated values contain
NaN
, returnsNaN
. Infinity math follows IEEE-754 standards. -
If the aggregated value set is empty, returns
NULL
. -
Always returns the result as a double.
Fields | |
---|---|
property
|
The property to aggregate on. |
Count
Count of entities that match the query.
The COUNT(*)
aggregation function operates on the entire entity so it does not require a field reference.
up_
to
Optional. Optional constraint on the maximum number of entities to count.
This provides a way to set an upper bound on the number of entities to scan, limiting latency, and cost.
Unspecified is interpreted as no bound.
If a zero value is provided, a count result of zero should always be expected.
High-Level Example:
AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
Requires:
- Must be non-negative when present.
Sum
Sum of the values of the requested property.
-
Only numeric values will be aggregated. All non-numeric values including
NULL
are skipped. -
If the aggregated values contain
NaN
, returnsNaN
. Infinity math follows IEEE-754 standards. -
If the aggregated value set is empty, returns 0.
-
Returns a 64-bit integer if all aggregated numbers are integers and the sum result does not overflow. Otherwise, the result is returned as a double. Note that even if all the aggregated values are integers, the result is returned as a double if it cannot fit within a 64-bit signed integer. When this occurs, the returned value will lose precision.
-
When underflow occurs, floating-point aggregation is non-deterministic. This means that running the same query repeatedly without any changes to the underlying values could produce slightly different results each time. In those cases, values should be stored as integers over floating-point numbers.
Fields | |
---|---|
property
|
The property to aggregate on. |
AggregationResult
The result of a single bucket from a Datastore aggregation query.
The keys of aggregate_properties
are the same for all results in an aggregation query, unlike entity queries which can have different fields present for each result.
Fields | |
---|---|
aggregate_
|
The result of the aggregation functions, ex: The key is the |
AggregationResultBatch
A batch of aggregation results produced by an aggregation query.
Fields | |
---|---|
aggregation_
|
The aggregation results for this batch. |
more_
|
The state of the query after the current batch. Only COUNT(*) aggregations are supported in the initial launch. Therefore, expected result type is limited to |
read_
|
Read timestamp this batch was returned from. In a single transaction, subsequent query result batches for the same query can have a greater timestamp. Each batch's read timestamp is valid for all preceding batches. |
AllocateIdsRequest
The request for Datastore.AllocateIds
.
Fields | |
---|---|
project_
|
Required. The ID of the project against which to make the request. |
database_
|
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. |
keys[]
|
Required. A list of keys with incomplete key paths for which to allocate IDs. No key may be reserved/read-only. |
AllocateIdsResponse
The response for Datastore.AllocateIds
.
Fields | |
---|---|
keys[]
|
The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID. |
ArrayValue
An array value.
Fields | |
---|---|
values[]
|
Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'. |
BeginTransactionRequest
The request for Datastore.BeginTransaction
.
Fields | |
---|---|
project_
|
Required. The ID of the project against which to make the request. |
database_
|
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. |
transaction_
|
Options for a new transaction. |
BeginTransactionResponse
The response for Datastore.BeginTransaction
.
Fields | |
---|---|
transaction
|
The transaction identifier (always present). |
CommitRequest
The request for Datastore.Commit
.
project_
id
string
Required. The ID of the project against which to make the request.
database_
id
string
The ID of the database against which to make the request.
'(default)' is not allowed; please use empty string '' to refer the default database.
mode
The type of commit to perform. Defaults to TRANSACTIONAL
.
mutations[]
The mutations to perform.
When mode is TRANSACTIONAL
, mutations affecting a single entity are applied in order. The following sequences of mutations affecting a single entity are not permitted in a single Commit
request:
-
insert
followed byinsert
-
update
followed byinsert
-
upsert
followed byinsert
-
delete
followed byupdate
When mode is NON_TRANSACTIONAL
, no two mutations may affect a single entity.
transaction_selector
. Must be set when mode is TRANSACTIONAL
. transaction_selector
can be only one of the following:transaction
bytes
The identifier of the transaction associated with the commit. A transaction identifier is returned by a call to Datastore.BeginTransaction
.
single_
use_
transaction
Options for beginning a new transaction for this request. The transaction is committed when the request completes. If specified, TransactionOptions.mode
must be TransactionOptions.ReadWrite
.
Mode
The modes available for commits.
Enums | |
---|---|
MODE_UNSPECIFIED
|
Unspecified. This value must not be used. |
TRANSACTIONAL
|
Transactional: The mutations are either all applied, or none are applied. Learn about transactions here . |
NON_TRANSACTIONAL
|
Non-transactional: The mutations may not apply as all or none. |
CommitResponse
The response for Datastore.Commit
.
Fields | |
---|---|
mutation_
|
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request. |
index_
|
The number of index entries updated during the commit, or zero if none were updated. |
commit_
|
The transaction commit timestamp. Not set for non-transactional commits. |
CompositeFilter
A filter that merges multiple other filters using the given operator.
Operator
A composite filter operator.
Enums | |
---|---|
OPERATOR_UNSPECIFIED
|
Unspecified. This value must not be used. |
AND
|
The results are required to satisfy each of the combined filters. |
OR
|
Documents are required to satisfy at least one of the combined filters. |
Entity
A Datastore data object.
Must not exceed 1 MiB - 4 bytes.
Fields | |
---|---|
key
|
The entity's key. An entity must have a key, unless otherwise documented (for example, an entity in |
properties
|
The entity's properties. The map's keys are property names. A property name matching regex |
EntityResult
The result of fetching an entity from Datastore.
Fields | |
---|---|
entity
|
The resulting entity. |
version
|
The version of the entity, a strictly positive number that monotonically increases with changes to the entity. This field is set for For |
create_
|
The time at which the entity was created. This field is set for |
update_
|
The time at which the entity was last changed. This field is set for |
cursor
|
A cursor that points to the position after the result entity. Set only when the |
ResultType
Specifies what data the 'entity' field contains. A ResultType
is either implied (for example, in LookupResponse.missing
from datastore.proto
, it is always KEY_ONLY
) or specified by context (for example, in message QueryResultBatch
, field entity_result_type
specifies a ResultType
for all the values in field entity_results
).
Enums | |
---|---|
RESULT_TYPE_UNSPECIFIED
|
Unspecified. This value is never used. |
FULL
|
The key and properties. |
PROJECTION
|
A projected subset of properties. The entity may have no key. |
KEY_ONLY
|
Only the key. |
ExecutionStats
Execution statistics for the query.
Fields | |
---|---|
results_
|
Total number of results returned, including documents, projections, aggregation results, keys. |
execution_
|
Total time to execute the query in the backend. |
read_
|
Total billable read operations. |
debug_
|
Debugging statistics from the execution of the query. Note that the debugging stats are subject to change as Firestore evolves. It could include: { "indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details" : { "documents_billable": "20", "index_entries_billable": "1000", "min_query_cost": "0" } } |
ExplainMetrics
Explain metrics for the query.
Fields | |
---|---|
plan_
|
Planning phase information for the query. |
execution_
|
Aggregated stats from the execution of the query. Only present when |
ExplainOptions
Explain options for the query.
Fields | |
---|---|
analyze
|
Optional. Whether to execute this query. When false (the default), the query will be planned, returning only metrics from the planning stages. When true, the query will be planned and executed, returning the full query results along with both planning and execution stage metrics. |
Filter
A holder for any type of filter.
filter_type
. The type of filter. filter_type
can be only one of the following:composite_
filter
A composite filter.
property_
filter
A filter on a property.
GqlQuery
A GQL query .
Fields | |
---|---|
query_
|
A string of the format described here . |
allow_
|
When false, the query string must not contain any literals and instead must bind all values. For example, |
named_
|
For each non-reserved named binding site in the query string, there must be a named parameter with that name, but not necessarily the inverse. Key must match regex |
positional_
|
Numbered binding site @1 references the first numbered parameter, effectively using 1-based indexing, rather than the usual 0. For each binding site numbered i in |
GqlQueryParameter
A binding parameter for a GQL query.
parameter_type
. The type of parameter. parameter_type
can be only one of the following:value
A value parameter.
cursor
bytes
A query cursor. Query cursors are returned in query result batches.
Key
A unique identifier for an entity. If a key's partition ID or any of its path kinds or names are reserved/read-only, the key is reserved/read-only. A reserved/read-only key is forbidden in certain documented contexts.
Fields | |
---|---|
partition_
|
Entities are partitioned into subsets, currently identified by a project ID and namespace ID. Queries are scoped to a single partition. |
path[]
|
The entity path. An entity path consists of one or more elements composed of a kind and a string or numerical identifier, which identify entities. The first element identifies a root entity , the second element identifies a child of the root entity, the third element identifies a child of the second entity, and so forth. The entities identified by all prefixes of the path are called the element's ancestors . An entity path is always fully complete: all
of the entity's ancestors are required to be in the path along with the entity identifier itself. The only exception is that in some documented cases, the identifier in the last path element (for the entity) itself may be omitted. For example, the last path element of the key of A path can never be empty, and a path can have at most 100 elements. |
PathElement
A (kind, ID/name) pair used to construct a key path.
If either name or ID is set, the element is complete. If neither is set, the element is incomplete.
kind
string
The kind of the entity.
A kind matching regex __.*__
is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be ""
.
Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes<X>__
where <X>
is the base-64 encoding of the bytes.
id_type
. The type of ID. id_type
can be only one of the following:id
int64
The auto-allocated ID of the entity.
Never equal to zero. Values less than zero are discouraged and may not be supported in the future.
name
string
The name of the entity.
A name matching regex __.*__
is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be ""
.
Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes<X>__
where <X>
is the base-64 encoding of the bytes.
KindExpression
A representation of a kind.
Fields | |
---|---|
name
|
The name of the kind. |
LookupRequest
The request for Datastore.Lookup
.
Fields | |
---|---|
project_
|
Required. The ID of the project against which to make the request. |
database_
|
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. |
read_
|
The options for this lookup request. |
keys[]
|
Required. Keys of entities to look up. |
property_
|
The properties to return. Defaults to returning all properties. If this field is set and an entity has a property not referenced in the mask, it will be absent from [LookupResponse.found.entity.properties][]. The entity's key is always returned. |
LookupResponse
The response for Datastore.Lookup
.
Fields | |
---|---|
found[]
|
Entities found as |
missing[]
|
Entities not found as |
deferred[]
|
A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input. |
transaction
|
The identifier of the transaction that was started as part of this Lookup request. Set only when |
read_
|
The time at which these entities were read or found missing. |
Mutation
A mutation to apply to an entity.
conflict_
resolution_
strategy
The strategy to use when a conflict is detected. Defaults to SERVER_VALUE
. If this is set, then conflict_detection_strategy
must also be set.
property_
mask
The properties to write in this mutation. None of the properties in the mask may have a reserved name, except for __key__
. This field is ignored for delete
.
If the entity already exists, only properties referenced in the mask are updated, others are left untouched. Properties referenced in the mask but not in the entity are deleted.
property_
transforms[]
Optional. The transforms to perform on the entity.
This field can be set only when the operation is insert
, update
, or upsert
. If present, the transforms are be applied to the entity regardless of the property mask, in order, after the operation.
Union field operation
. The mutation operation.
For insert
, update
, and upsert
: - The entity's key must not be reserved/read-only. - No property in the entity may have a reserved name, not even a property in an entity in a value. - No value in the entity may have meaning 18, not even a value in an entity in another value. operation
can be only one of the following:
insert
The entity to insert. The entity must not already exist. The entity key's final path element may be incomplete.
update
The entity to update. The entity must already exist. Must have a complete key path.
upsert
The entity to upsert. The entity may or may not already exist. The entity key's final path element may be incomplete.
delete
The key of the entity to delete. The entity may or may not already exist. Must have a complete key path and must not be reserved/read-only.
conflict_detection_strategy
. When set, the server will detect whether or not this mutation conflicts with the current version of the entity on the server. Conflicting mutations are not applied, and are marked as such in MutationResult. conflict_detection_strategy
can be only one of the following:base_
version
int64
The version of the entity that this mutation is being applied to. If this does not match the current version on the server, the mutation conflicts.
update_
time
The update time of the entity that this mutation is being applied to. If this does not match the current update time on the server, the mutation conflicts.
ConflictResolutionStrategy
The possible ways to resolve a conflict detected in a mutation.
Enums | |
---|---|
STRATEGY_UNSPECIFIED
|
Unspecified. Defaults to SERVER_VALUE
. |
SERVER_VALUE
|
The server entity is kept. |
FAIL
|
The whole commit request fails. |
MutationResult
The result of applying a mutation.
Fields | |
---|---|
key
|
The automatically allocated key. Set only when the mutation allocated a key. |
version
|
The version of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the version will be the version of the current entity or, if no entity is present, a version that is strictly greater than the version of any previous entity and less than the version of any possible future entity. |
create_
|
The create time of the entity. This field will not be set after a 'delete'. |
update_
|
The update time of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the timestamp will be the update timestamp of the current entity. This field will not be set after a 'delete'. |
conflict_
|
Whether a conflict was detected for this mutation. Always false when a conflict detection strategy field is not set in the mutation. |
transform_
|
The results of applying each |
PartitionId
A partition ID identifies a grouping of entities. The grouping is always by project and namespace, however the namespace ID may be empty.
A partition ID contains several dimensions: project ID and namespace ID.
Partition dimensions:
- May be
""
. - Must be valid UTF-8 bytes.
- Must have values that match regex
[A-Za-z\d\.\-_]{1,100}
If the value of any dimension matches regex__.*__
, the partition is reserved/read-only. A reserved/read-only partition ID is forbidden in certain documented contexts.
Foreign partition IDs (in which the project ID does not match the context project ID ) are discouraged. Reads and writes of foreign partition IDs may fail if the project is not in an active state.
Fields | |
---|---|
project_
|
The ID of the project to which the entities belong. |
database_
|
If not empty, the ID of the database to which the entities belong. |
namespace_
|
If not empty, the ID of the namespace to which the entities belong. |
PlanSummary
Planning phase information for the query.
Fields | |
---|---|
indexes_
|
The indexes selected for the query. For example: [ {"query_scope": "Collection", "properties": "(foo ASC, nameASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, nameASC)"} ] |
Projection
A representation of a property in a projection.
Fields | |
---|---|
property
|
The property to project. |
PropertyFilter
A filter on a specific property.
Fields | |
---|---|
property
|
The property to filter by. |
op
|
The operator to filter by. |
value
|
The value to compare the property to. |
Operator
A property filter operator.
OPERATOR_UNSPECIFIED
LESS_THAN
The given property
is less than the given value
.
Requires:
- That
property
comes first inorder_by
.
LESS_THAN_OR_EQUAL
The given property
is less than or equal to the given value
.
Requires:
- That
property
comes first inorder_by
.
GREATER_THAN
The given property
is greater than the given value
.
Requires:
- That
property
comes first inorder_by
.
GREATER_THAN_OR_EQUAL
The given property
is greater than or equal to the given value
.
Requires:
- That
property
comes first inorder_by
.
EQUAL
property
is equal to the given value
.IN
The given property
is equal to at least one value in the given array.
Requires:
- That
value
is a non-emptyArrayValue
, subject to disjunction limits. - No
NOT_IN
is in the same query.
NOT_EQUAL
The given property
is not equal to the given value
.
Requires:
- No other
NOT_EQUAL
orNOT_IN
is in the same query. - That
property
comes first in theorder_by
.
HAS_ANCESTOR
Limit the result set to the given entity and its descendants.
Requires:
- That
value
is an entity key. - All evaluated disjunctions must have the same
HAS_ANCESTOR
filter.
NOT_IN
The value of the property
is not in the given array.
Requires:
- That
value
is a non-emptyArrayValue
with at most 10 values. - No other
OR
,IN
,NOT_IN
,NOT_EQUAL
is in the same query. - That
field
comes first in theorder_by
.
PropertyMask
The set of arbitrarily nested property paths used to restrict an operation to only a subset of properties in an entity.
Fields | |
---|---|
paths[]
|
The paths to the properties covered by this mask. A path is a list of property names separated by dots ( If a property name contains a dot A path must not be empty, and may not reference a value inside an |
PropertyOrder
The desired order for a specific property.
Fields | |
---|---|
property
|
The property to order by. |
direction
|
The direction to order by. Defaults to |
Direction
The sort direction.
Enums | |
---|---|
DIRECTION_UNSPECIFIED
|
Unspecified. This value must not be used. |
ASCENDING
|
Ascending. |
DESCENDING
|
Descending. |
PropertyReference
A reference to a property relative to the kind expressions.
name
string
A reference to a property.
Requires:
- MUST be a dot-delimited (
.
) string of segments, where each segment conforms toentity property name
limitations.
PropertyTransform
A transformation of an entity property.
property
string
Optional. The name of the property.
Property paths (a list of property names separated by dots ( .
)) may be used to refer to properties inside entity values. For example foo.bar
means the property bar
inside the entity property foo
.
If a property name contains a dot .
or a backlslash \
, then that name must be escaped.
transform_type
. The transformation to apply to the property. transform_type
can be only one of the following:set_
to_
server_
value
Sets the property to the given server value.
increment
Adds the given value to the property's current value.
This must be an integer or a double value. If the property is not an integer or double, or if the property does not yet exist, the transformation will set the property to the given value. If either of the given value or the current property value are doubles, both values will be interpreted as doubles. Double arithmetic and representation of double values follows IEEE 754 semantics. If there is positive/negative integer overflow, the property is resolved to the largest magnitude positive/negative integer.
maximum
Sets the property to the maximum of its current value and the given value.
This must be an integer or a double value. If the property is not an integer or double, or if the property does not yet exist, the transformation will set the property to the given value. If a maximum operation is applied where the property and the input value are of mixed types (that is - one is an integer and one is a double) the property takes on the type of the larger operand. If the operands are equivalent (e.g. 3 and 3.0), the property does not change. 0, 0.0, and -0.0 are all zero. The maximum of a zero stored value and zero input value is always the stored value. The maximum of any numeric value x and NaN is NaN.
minimum
Sets the property to the minimum of its current value and the given value.
This must be an integer or a double value. If the property is not an integer or double, or if the property does not yet exist, the transformation will set the property to the input value. If a minimum operation is applied where the property and the input value are of mixed types (that is - one is an integer and one is a double) the property takes on the type of the smaller operand. If the operands are equivalent (e.g. 3 and 3.0), the property does not change. 0, 0.0, and -0.0 are all zero. The minimum of a zero stored value and zero input value is always the stored value. The minimum of any numeric value x and NaN is NaN.
append_
missing_
elements
Appends the given elements in order if they are not already present in the current property value. If the property is not an array, or if the property does not yet exist, it is first set to the empty array.
Equivalent numbers of different types (e.g. 3L and 3.0) are considered equal when checking if a value is missing. NaN is equal to NaN, and the null value is equal to the null value. If the input contains multiple equivalent values, only the first will be considered.
The corresponding transform result will be the null value.
remove_
all_
from_
array
Removes all of the given elements from the array in the property. If the property is not an array, or if the property does not yet exist, it is set to the empty array.
Equivalent numbers of different types (e.g. 3L and 3.0) are considered equal when deciding whether an element should be removed. NaN is equal to NaN, and the null value is equal to the null value. This will remove all equivalent values if there are duplicates.
The corresponding transform result will be the null value.
ServerValue
A value that is calculated by the server.
Enums | |
---|---|
SERVER_VALUE_UNSPECIFIED
|
Unspecified. This value must not be used. |
REQUEST_TIME
|
The time at which the server processed the request, with millisecond precision. If used on multiple properties (same or different entities) in a transaction, all the properties will get the same server timestamp. |
Query
A query for entities.
projection[]
The projection to return. Defaults to returning all properties.
kind[]
The kinds to query (if empty, returns entities of all kinds). Currently at most 1 kind may be specified.
filter
The filter to apply.
order[]
The order to apply to the query results (if empty, order is unspecified).
distinct_
on[]
The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned).
Requires:
- If
order
is specified, the set of distinct on properties must appear before the non-distinct on properties inorder
.
start_
cursor
bytes
A starting point for the query results. Query cursors are returned in query result batches and can only be used to continue the same query .
end_
cursor
bytes
An ending point for the query results. Query cursors are returned in query result batches and can only be used to limit the same query .
offset
int32
The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.
limit
The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.
QueryResultBatch
A batch of results produced by a query.
Fields | |
---|---|
skipped_
|
The number of results skipped, typically because of an offset. |
skipped_
|
A cursor that points to the position after the last skipped result. Will be set when |
entity_
|
The result type for every entity in |
entity_
|
The results for this batch. |
end_
|
A cursor that points to the position after the last result in the batch. |
more_
|
The state of the query after the current batch. |
snapshot_
|
The version number of the snapshot this batch was returned from. This applies to the range of results from the query's In a single transaction, subsequent query result batches for the same query can have a greater snapshot version number. Each batch's snapshot version is valid for all preceding batches. The value will be zero for eventually consistent queries. |
read_
|
Read timestamp this batch was returned from. This applies to the range of results from the query's In a single transaction, subsequent query result batches for the same query can have a greater timestamp. Each batch's read timestamp is valid for all preceding batches. This value will not be set for eventually consistent queries in Cloud Datastore. |
MoreResultsType
The possible values for the more_results
field.
Enums | |
---|---|
MORE_RESULTS_TYPE_UNSPECIFIED
|
Unspecified. This value is never used. |
NOT_FINISHED
|
There may be additional batches to fetch from this query. |
MORE_RESULTS_AFTER_LIMIT
|
The query is finished, but there may be more results after the limit. |
MORE_RESULTS_AFTER_CURSOR
|
The query is finished, but there may be more results after the end cursor. |
NO_MORE_RESULTS
|
The query is finished, and there are no more results. |
ReadOptions
The options shared by read requests.
Union field consistency_type
. For Cloud Firestore in Datastore mode, if you don't specify read_consistency then all lookups and queries default to read_consistency
= STRONG
. Note that, in Cloud Datastore, global queries defaulted to read_consistency
= EVENTUAL
.
Explicitly setting read_consistency
= EVENTUAL
will result in eventually consistent lookups and queries. consistency_type
can be only one of the following:
read_
consistency
The non-transactional read consistency to use.
transaction
bytes
The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction
.
new_
transaction
Options for beginning a new transaction for this request.
The new transaction identifier will be returned in the corresponding response as either LookupResponse.transaction
or RunQueryResponse.transaction
.
read_
time
Reads entities as they were at the given time. This value is only supported for Cloud Firestore in Datastore mode.
This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days.
ReadConsistency
The possible values for read consistencies.
Enums | |
---|---|
READ_CONSISTENCY_UNSPECIFIED
|
Unspecified. This value must not be used. |
STRONG
|
Strong consistency. |
EVENTUAL
|
Eventual consistency. |
ReserveIdsRequest
The request for Datastore.ReserveIds
.
Fields | |
---|---|
project_
|
Required. The ID of the project against which to make the request. |
database_
|
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. |
keys[]
|
Required. A list of keys with complete key paths whose numeric IDs should not be auto-allocated. |
ReserveIdsResponse
This type has no fields.
The response for Datastore.ReserveIds
.
RollbackRequest
The request for Datastore.Rollback
.
Fields | |
---|---|
project_
|
Required. The ID of the project against which to make the request. |
database_
|
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database. |
transaction
|
Required. The transaction identifier, returned by a call to |
RollbackResponse
This type has no fields.
The response for Datastore.Rollback
. (an empty message).
RunAggregationQueryRequest
The request for Datastore.RunAggregationQuery
.
project_
id
string
Required. The ID of the project against which to make the request.
database_
id
string
The ID of the database against which to make the request.
'(default)' is not allowed; please use empty string '' to refer the default database.
partition_
id
Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
query_type
. The type of query. query_type
can be only one of the following:aggregation_
query
The query to run.
gql_
query
The GQL query to run. This query must be an aggregation query.
RunAggregationQueryResponse
The response for Datastore.RunAggregationQuery
.
Fields | |
---|---|
batch
|
A batch of aggregation results. Always present. |
query
|
The parsed form of the |
transaction
|
The identifier of the transaction that was started as part of this RunAggregationQuery request. Set only when |
explain_
|
Query explain metrics. This is only present when the |
RunQueryRequest
The request for Datastore.RunQuery
.
project_
id
string
Required. The ID of the project against which to make the request.
database_
id
string
The ID of the database against which to make the request.
'(default)' is not allowed; please use empty string '' to refer the default database.
partition_
id
Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
property_
mask
The properties to return. This field must not be set for a projection query.
query_type
. The type of query. query_type
can be only one of the following:query
The query to run.
gql_
query
The GQL query to run. This query must be a non-aggregation query.
RunQueryResponse
The response for Datastore.RunQuery
.
Fields | |
---|---|
batch
|
A batch of query results (always present). |
query
|
The parsed form of the |
transaction
|
The identifier of the transaction that was started as part of this RunQuery request. Set only when |
explain_
|
Query explain metrics. This is only present when the |
TransactionOptions
Options for beginning a new transaction.
Transactions can be created explicitly with calls to Datastore.BeginTransaction
or implicitly by setting ReadOptions.new_transaction
in read requests.
ReadOnly
Options specific to read-only transactions.
Fields | |
---|---|
read_
|
Reads entities at the given time. This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days. |
ReadWrite
Options specific to read / write transactions.
Fields | |
---|---|
previous_
|
The transaction identifier of the transaction being retried. |
Value
A message that can hold any of the supported value types and associated metadata.
meaning
int32
The meaning
field should only be populated for backwards compatibility.
exclude_
from_
indexes
bool
If the value should be excluded from all indexes including those defined explicitly.
value_type
. Must have a value set. value_type
can be only one of the following:null_
value
A null value.
boolean_
value
bool
A boolean value.
integer_
value
int64
An integer value.
double_
value
double
A double value.
key_
value
A key value.
string_
value
string
A UTF-8 encoded string value. When exclude_from_indexes
is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.
blob_
value
bytes
A blob value. May have at most 1,000,000 bytes. When exclude_from_indexes
is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.
geo_
point_
value
A geo point value representing a point on the surface of Earth.
entity_
value
An entity value.
- May have no key.
- May have a key with an incomplete key path.
- May have a reserved/read-only key.
array_
value
An array value. Cannot contain another array value. A Value
instance that sets field array_value
must not set fields meaning
or exclude_from_indexes
.