Class: Google::Apis::DatastoreV1beta3::AllocateIdsRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DatastoreV1beta3::AllocateIdsRequest
 
 
- 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.AllocateIds.
Instance Attribute Summary collapse
- 
  
    
      #keys  ⇒ Array<Google::Apis::DatastoreV1beta3::Key> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of keys with incomplete key paths for which to allocate IDs.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AllocateIdsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AllocateIdsRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AllocateIdsRequest
Returns a new instance of AllocateIdsRequest
      35 36 37  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 35 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
A list of keys with incomplete key paths for which to allocate IDs.
No key may be reserved/read-only.
Corresponds to the JSON property keys
      33 34 35  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 33 def keys @keys end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      40 41 42  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 40 def update!(**args) @keys = args[:keys] if args.key?(:keys) end  |