class Google::Apis::DatastoreV1beta2::LookupRequest

Attributes

keys[RW]

Keys of entities to look up from the datastore. Corresponds to the JSON property `keys` @return [Array<Google::Apis::DatastoreV1beta2::Key>]

read_options[RW]

Options for this lookup request. Optional. Corresponds to the JSON property `readOptions` @return [Google::Apis::DatastoreV1beta2::ReadOptions]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/datastore_v1beta2/classes.rb, line 460
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/datastore_v1beta2/classes.rb, line 465
def update!(**args)
  @keys = args[:keys] if args.key?(:keys)
  @read_options = args[:read_options] if args.key?(:read_options)
end