Class: Google::Apis::DatastoreV1beta3::LookupRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::LookupRequest
- 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
-
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
Required.
-
#property_mask ⇒ Google::Apis::DatastoreV1beta3::PropertyMask
The set of arbitrarily nested property paths used to restrict an operation to only a subset of properties in an entity.
-
#read_options ⇒ Google::Apis::DatastoreV1beta3::ReadOptions
The options shared by read requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LookupRequest
constructor
A new instance of LookupRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LookupRequest
Returns a new instance of LookupRequest.
1421 1422 1423 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1421 def initialize(**args) update!(**args) end |
Instance Attribute Details
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
Required. Keys of entities to look up.
Corresponds to the JSON property keys
1408 1409 1410 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1408 def keys @keys end |
#property_mask ⇒ Google::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
1414 1415 1416 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1414 def property_mask @property_mask end |
#read_options ⇒ Google::Apis::DatastoreV1beta3::ReadOptions
The options shared by read requests.
Corresponds to the JSON property readOptions
1419 1420 1421 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1419 def @read_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1426 1427 1428 1429 1430 |
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1426 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 |