Class: Google::Apis::DatastoreV1beta3::CommitRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datastore_v1beta3/classes.rb,
generated/google/apis/datastore_v1beta3/representations.rb,
generated/google/apis/datastore_v1beta3/representations.rb

Overview

The request for Datastore.Commit.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CommitRequest

Returns a new instance of CommitRequest.



251
252
253
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 251

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#modeString

The type of commit to perform. Defaults to TRANSACTIONAL. Corresponds to the JSON property mode

Returns:

  • (String)


235
236
237
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 235

def mode
  @mode
end

#mutationsArray<Google::Apis::DatastoreV1beta3::Mutation>

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 by insert
  • update followed by insert
  • upsert followed by insert
  • delete followed by update When mode is NON_TRANSACTIONAL, no two mutations may affect a single entity. Corresponds to the JSON property mutations


249
250
251
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 249

def mutations
  @mutations
end

#transactionString

The identifier of the transaction associated with the commit. A transaction identifier is returned by a call to Datastore.BeginTransaction. Corresponds to the JSON property transaction

Returns:

  • (String)


230
231
232
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 230

def transaction
  @transaction
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



256
257
258
259
260
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 256

def update!(**args)
  @transaction = args[:transaction] if args.key?(:transaction)
  @mode = args[:mode] if args.key?(:mode)
  @mutations = args[:mutations] if args.key?(:mutations)
end