Class: Google::Apis::SpannerV1::RollbackRequest

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

Overview

The request for Rollback.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RollbackRequest

Returns a new instance of RollbackRequest.



3006
3007
3008
# File 'lib/google/apis/spanner_v1/classes.rb', line 3006

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

Instance Attribute Details

#transaction_idString

Required. The transaction to roll back. Corresponds to the JSON property transactionId NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


3004
3005
3006
# File 'lib/google/apis/spanner_v1/classes.rb', line 3004

def transaction_id
  @transaction_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3011
3012
3013
# File 'lib/google/apis/spanner_v1/classes.rb', line 3011

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