Class: Google::Apis::DatastoreV1beta3::AllocateIdsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatastoreV1beta3::AllocateIdsResponse
 
- 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 response for Datastore.AllocateIds.
Instance Attribute Summary collapse
- 
  
    
      #keys  ⇒ Array<Google::Apis::DatastoreV1beta3::Key> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AllocateIdsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AllocateIdsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AllocateIdsResponse
Returns a new instance of AllocateIdsResponse
| 55 56 57 | # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 55 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#keys ⇒ Array<Google::Apis::DatastoreV1beta3::Key>
The keys specified in the request (in the same order), each with
its key path completed with a newly allocated ID.
Corresponds to the JSON property keys
| 53 54 55 | # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 53 def keys @keys end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 60 61 62 | # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 60 def update!(**args) @keys = args[:keys] if args.key?(:keys) end |