Class: Google::Apis::DatastoreV1beta3::CommitRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DatastoreV1beta3::CommitRequest
 
 
- 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.Commit.
Instance Attribute Summary collapse
- 
  
    
      #mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of commit to perform.
 - 
  
    
      #mutations  ⇒ Array<Google::Apis::DatastoreV1beta3::Mutation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The mutations to perform.
 - 
  
    
      #transaction  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the transaction associated with the commit.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CommitRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CommitRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CommitRequest
Returns a new instance of CommitRequest
      159 160 161  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 159 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#mode ⇒ String
The type of commit to perform. Defaults to TRANSACTIONAL.
Corresponds to the JSON property mode
      135 136 137  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 135 def mode @mode end  | 
  
#mutations ⇒ Array<Google::Apis::DatastoreV1beta3::Mutation>
The mutations to perform.
When mode is TRANSACTIONAL, mutations affecting a single entity are
applied in order. The following sequences of mutations affecting a single
entity are not permitted in a single Commit request:
insertfollowed byinsertupdatefollowed byinsertupsertfollowed byinsertdeletefollowed byupdateWhen mode isNON_TRANSACTIONAL, no two mutations may affect a single entity. Corresponds to the JSON propertymutations
      149 150 151  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 149 def mutations @mutations end  | 
  
#transaction ⇒ String
The identifier of the transaction associated with the commit. A
transaction identifier is returned by a call to
Datastore.BeginTransaction.
Corresponds to the JSON property transaction
NOTE: Values are automatically base64 encoded/decoded in the client library.
      157 158 159  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 157 def transaction @transaction end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      164 165 166 167 168  | 
    
      # File 'generated/google/apis/datastore_v1beta3/classes.rb', line 164 def update!(**args) @mode = args[:mode] if args.key?(:mode) @mutations = args[:mutations] if args.key?(:mutations) @transaction = args[:transaction] if args.key?(:transaction) end  |