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
      1063 1064 1065  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1063 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
      1056 1057 1058  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1056 def keys @keys end  | 
  
#read_options ⇒ Google::Apis::DatastoreV1beta3::ReadOptions
The options shared by read requests.
Corresponds to the JSON property readOptions
      1061 1062 1063  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1061 def @read_options end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1068 1069 1070 1071  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1068 def update!(**args) @keys = args[:keys] if args.key?(:keys) @read_options = args[:read_options] if args.key?(:read_options) end  |