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.



1483
1484
1485
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1483

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



1470
1471
1472
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1470

def keys
  @keys
end

#property_maskGoogle::Apis::DatastoreV1beta3::PropertyMask

The set of arbitrarily nested property paths used to restrict an operation to only a subset of properties in an entity. Corresponds to the JSON property propertyMask



1476
1477
1478
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1476

def property_mask
  @property_mask
end

#read_optionsGoogle::Apis::DatastoreV1beta3::ReadOptions

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



1481
1482
1483
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1481

def read_options
  @read_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1488
1489
1490
1491
1492
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1488

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