Class: Google::Apis::DatastoreV1::TransactionOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/representations.rb

Overview

Options for beginning a new transaction. Transactions can be created explicitly with calls to Datastore.BeginTransaction or implicitly by setting ReadOptions.new_transaction in read requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TransactionOptions

Returns a new instance of TransactionOptions



2200
2201
2202
# File 'generated/google/apis/datastore_v1/classes.rb', line 2200

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#read_onlyGoogle::Apis::DatastoreV1::ReadOnly

Options specific to read-only transactions. Corresponds to the JSON property readOnly



2193
2194
2195
# File 'generated/google/apis/datastore_v1/classes.rb', line 2193

def read_only
  @read_only
end

#read_writeGoogle::Apis::DatastoreV1::ReadWrite

Options specific to read / write transactions. Corresponds to the JSON property readWrite



2198
2199
2200
# File 'generated/google/apis/datastore_v1/classes.rb', line 2198

def read_write
  @read_write
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2205
2206
2207
2208
# File 'generated/google/apis/datastore_v1/classes.rb', line 2205

def update!(**args)
  @read_only = args[:read_only] if args.key?(:read_only)
  @read_write = args[:read_write] if args.key?(:read_write)
end