google_api_datastore v0.4.0 GoogleApi.Datastore.V1.Model.CommitRequest View Source
The request for Datastore.Commit.
Attributes
- mode (String.t): The type of commit to perform. Defaults to
TRANSACTIONAL
. Defaults tonil
. - mutations (list(GoogleApi.Datastore.V1.Model.Mutation.t)): 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. Defaults to nil
.
- transaction (String.t): The identifier of the transaction associated with the commit. A
transaction identifier is returned by a call to
Datastore.BeginTransaction. Defaults to
nil
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %GoogleApi.Datastore.V1.Model.CommitRequest{
mode: String.t(),
mutations: [GoogleApi.Datastore.V1.Model.Mutation.t()],
transaction: String.t()
}
t() :: %GoogleApi.Datastore.V1.Model.CommitRequest{ mode: String.t(), mutations: [GoogleApi.Datastore.V1.Model.Mutation.t()], transaction: String.t() }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.