Class: Google::Apis::DatastoreV1beta3::LookupRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastore_v1beta3/classes.rb,
lib/google/apis/datastore_v1beta3/representations.rb,
lib/google/apis/datastore_v1beta3/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.



1021
1022
1023
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1021

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

Instance Attribute Details

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

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



1014
1015
1016
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1014

def keys
  @keys
end

#read_optionsGoogle::Apis::DatastoreV1beta3::ReadOptions

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



1019
1020
1021
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1019

def read_options
  @read_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1026
1027
1028
1029
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1026

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