Class: Google::Apis::DatastoreV1::CommitResponse

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

Overview

The response for Datastore.Commit.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CommitResponse

Returns a new instance of CommitResponse.

[View source]

385
386
387
# File 'lib/google/apis/datastore_v1/classes.rb', line 385

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

Instance Attribute Details

#commit_timeString

The transaction commit timestamp. Not set for non-transactional commits. Corresponds to the JSON property commitTime

Returns:

  • (String)

371
372
373
# File 'lib/google/apis/datastore_v1/classes.rb', line 371

def commit_time
  @commit_time
end

#index_updatesFixnum

The number of index entries updated during the commit, or zero if none were updated. Corresponds to the JSON property indexUpdates

Returns:

  • (Fixnum)

377
378
379
# File 'lib/google/apis/datastore_v1/classes.rb', line 377

def index_updates
  @index_updates
end

#mutation_resultsArray<Google::Apis::DatastoreV1::MutationResult>

The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request. Corresponds to the JSON property mutationResults


383
384
385
# File 'lib/google/apis/datastore_v1/classes.rb', line 383

def mutation_results
  @mutation_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

390
391
392
393
394
# File 'lib/google/apis/datastore_v1/classes.rb', line 390

def update!(**args)
  @commit_time = args[:commit_time] if args.key?(:commit_time)
  @index_updates = args[:index_updates] if args.key?(:index_updates)
  @mutation_results = args[:mutation_results] if args.key?(:mutation_results)
end