Class: Google::Apis::DatastoreV1beta3::RollbackRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1beta3::RollbackRequest
- 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.Rollback.
Instance Attribute Summary collapse
-
#transaction ⇒ String
The transaction identifier, returned by a call to Datastore.BeginTransaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RollbackRequest
constructor
A new instance of RollbackRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RollbackRequest
Returns a new instance of RollbackRequest
1612 1613 1614 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1612 def initialize(**args) update!(**args) end |
Instance Attribute Details
#transaction ⇒ String
The transaction identifier, returned by a call to
Datastore.BeginTransaction.
Corresponds to the JSON property transaction
NOTE: Values are automatically base64 encoded/decoded in the client library.
1610 1611 1612 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1610 def transaction @transaction end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1617 1618 1619 |
# File 'generated/google/apis/datastore_v1beta3/classes.rb', line 1617 def update!(**args) @transaction = args[:transaction] if args.key?(:transaction) end |