Class: Google::Apis::DatastoreV1::LookupRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::LookupRequest
- 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
-
#keys ⇒ Array<Google::Apis::DatastoreV1::Key>
Required.
-
#read_options ⇒ Google::Apis::DatastoreV1::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.
1321 1322 1323 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1321 def initialize(**args) update!(**args) end |
Instance Attribute Details
#keys ⇒ Array<Google::Apis::DatastoreV1::Key>
Required. Keys of entities to look up.
Corresponds to the JSON property keys
1314 1315 1316 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1314 def keys @keys end |
#read_options ⇒ Google::Apis::DatastoreV1::ReadOptions
The options shared by read requests.
Corresponds to the JSON property readOptions
1319 1320 1321 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1319 def @read_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1326 1327 1328 1329 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1326 def update!(**args) @keys = args[:keys] if args.key?(:keys) @read_options = args[:read_options] if args.key?(:read_options) end |