Class: Google::Apis::DatastoreV1::LookupRequest

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

Overview

The request for Datastore.Lookup.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LookupRequest

Returns a new instance of LookupRequest.



1450
1451
1452
# File 'lib/google/apis/datastore_v1/classes.rb', line 1450

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

Instance Attribute Details

#database_idString

If not empty, the ID of the database against which to make the request. Corresponds to the JSON property databaseId

Returns:

  • (String)


1438
1439
1440
# File 'lib/google/apis/datastore_v1/classes.rb', line 1438

def database_id
  @database_id
end

#keysArray<Google::Apis::DatastoreV1::Key>

Required. Keys of entities to look up. Corresponds to the JSON property keys

Returns:



1443
1444
1445
# File 'lib/google/apis/datastore_v1/classes.rb', line 1443

def keys
  @keys
end

#read_optionsGoogle::Apis::DatastoreV1::ReadOptions

The options shared by read requests. Corresponds to the JSON property readOptions



1448
1449
1450
# File 'lib/google/apis/datastore_v1/classes.rb', line 1448

def read_options
  @read_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1455
1456
1457
1458
1459
# File 'lib/google/apis/datastore_v1/classes.rb', line 1455

def update!(**args)
  @database_id = args[:database_id] if args.key?(:database_id)
  @keys = args[:keys] if args.key?(:keys)
  @read_options = args[:read_options] if args.key?(:read_options)
end