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
-
#database_id ⇒ String
The ID of the database against which to make the request.
-
#keys ⇒ Array<Google::Apis::DatastoreV1::Key>
Required.
-
#property_mask ⇒ Google::Apis::DatastoreV1::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::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.
1818 1819 1820 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1818 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database_id ⇒ String
The ID of the database against which to make the request. '(default)' is not
allowed; please use empty string '' to refer the default database.
Corresponds to the JSON property databaseId
1800 1801 1802 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1800 def database_id @database_id end |
#keys ⇒ Array<Google::Apis::DatastoreV1::Key>
Required. Keys of entities to look up.
Corresponds to the JSON property keys
1805 1806 1807 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1805 def keys @keys end |
#property_mask ⇒ Google::Apis::DatastoreV1::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
1811 1812 1813 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1811 def property_mask @property_mask end |
#read_options ⇒ Google::Apis::DatastoreV1::ReadOptions
The options shared by read requests.
Corresponds to the JSON property readOptions
1816 1817 1818 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1816 def @read_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1823 1824 1825 1826 1827 1828 |
# File 'lib/google/apis/datastore_v1/classes.rb', line 1823 def update!(**args) @database_id = args[:database_id] if args.key?(:database_id) @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 |