Class: Google::Apis::DatastoreV1beta3::EntityResult

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 result of fetching an entity from Datastore.

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) ⇒ EntityResult

Returns a new instance of EntityResult.



392
393
394
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 392

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

Instance Attribute Details

#cursorString

A cursor that points to the position after the result entity. Set only when the EntityResult is part of a QueryResultBatch message. Corresponds to the JSON property cursor

Returns:

  • (String)


371
372
373
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 371

def cursor
  @cursor
end

#entityGoogle::Apis::DatastoreV1beta3::Entity

A Datastore data object. An entity is limited to 1 megabyte when stored. That roughly corresponds to a limit of 1 megabyte for the serialized form of this message. Corresponds to the JSON property entity



379
380
381
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 379

def entity
  @entity
end

#versionString

The version of the entity, a strictly positive number that monotonically increases with changes to the entity. This field is set for FULL entity results. For missing entities in LookupResponse, this is the version of the snapshot that was used to look up the entity, and it is always set except for eventually consistent reads. Corresponds to the JSON property version

Returns:

  • (String)


390
391
392
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 390

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



397
398
399
400
401
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 397

def update!(**args)
  @cursor = args[:cursor] if args.key?(:cursor)
  @entity = args[:entity] if args.key?(:entity)
  @version = args[:version] if args.key?(:version)
end