- HTTP request
- Path parameters
- Request body
- Response body
- Authorization Scopes
- Mode
- Mutation
- MutationResult
- Try it!
Commits a transaction, optionally creating, deleting or modifying some entities.
HTTP request
POST https://datastore.googleapis.com/v1/projects/{projectId}:commit
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
projectId |
Required. The ID of the project against which to make the request. |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "mode": enum ( |
Fields | |
---|---|
mode |
The type of commit to perform. Defaults to |
mutations[] |
The mutations to perform. When mode is
When mode is |
Union field transaction_selector . Must be set when mode is TRANSACTIONAL . transaction_selector can be only one of the following: |
|
transaction |
The identifier of the transaction associated with the commit. A transaction identifier is returned by a call to A base64-encoded string. |
singleUseTransaction |
Options for beginning a new transaction for this request. The transaction is committed when the request completes. If specified, |
Response body
If successful, the response body contains data with the following structure:
The response for Datastore.Commit
.
JSON representation |
---|
{
"mutationResults": [
{
object ( |
Fields | |
---|---|
mutationResults[] |
The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request. |
indexUpdates |
The number of index entries updated during the commit, or zero if none were updated. |
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.
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. |
Mutation
A mutation to apply to an entity.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field For |
|
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. |
Union field 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: |
|
baseVersion |
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. |
MutationResult
The result of applying a mutation.
JSON representation |
---|
{
"key": {
object ( |
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. |
conflictDetected |
Whether a conflict was detected for this mutation. Always false when a conflict detection strategy field is not set in the mutation. |