Class: Google::Apis::DatastoreV1beta3::LookupRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::LookupRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1beta3/classes.rb,
generated/google/apis/datastore_v1beta3/representations.rb,
generated/google/apis/datastore_v1beta3/representations.rb
Overview
The request for Datastore.Lookup.
Instance Attribute Summary collapse
-
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
Keys of entities to look up.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LookupRequest
Returns a new instance of LookupRequest
1032 1033 1034 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1032 def initialize(**args) update!(**args) end |
Instance Attribute Details
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
Keys of entities to look up.
Corresponds to the JSON property keys
1025 1026 1027 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1025 def keys @keys end |
#read_options ⇒ Google::Apis::DatastoreV1beta3::ReadOptions
The options shared by read requests.
Corresponds to the JSON property readOptions
1030 1031 1032 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1030 def @read_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1037 1038 1039 1040 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1037 def update!(**args) @keys = args[:keys] if args.key?(:keys) @read_options = args[:read_options] if args.key?(:read_options) end |