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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/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.



2805
2806
2807
# File 'generated/google/apis/spanner_v1/classes.rb', line 2805

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)


2803
2804
2805
# File 'generated/google/apis/spanner_v1/classes.rb', line 2803

def transaction_id
  @transaction_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2810
2811
2812
# File 'generated/google/apis/spanner_v1/classes.rb', line 2810

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