Class: Google::Apis::SpannerV1::Mutation
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::Mutation
- 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
A modification to one or more Cloud Spanner rows. Mutations can be applied to a Cloud Spanner database by sending them in a Commit call.
Instance Attribute Summary collapse
-
#delete ⇒ Google::Apis::SpannerV1::Delete
Arguments to delete operations.
-
#insert ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
-
#insert_or_update ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
-
#replace ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
-
#update ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Mutation
constructor
A new instance of Mutation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Mutation
Returns a new instance of Mutation.
2760 2761 2762 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2760 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delete ⇒ Google::Apis::SpannerV1::Delete
Arguments to delete operations.
Corresponds to the JSON property delete
2738 2739 2740 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2738 def delete @delete end |
#insert ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
Corresponds to the JSON property insert
2743 2744 2745 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2743 def insert @insert end |
#insert_or_update ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
Corresponds to the JSON property insertOrUpdate
2748 2749 2750 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2748 def insert_or_update @insert_or_update end |
#replace ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
Corresponds to the JSON property replace
2753 2754 2755 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2753 def replace @replace end |
#update ⇒ Google::Apis::SpannerV1::Write
Arguments to insert, update, insert_or_update, and replace operations.
Corresponds to the JSON property update
2758 2759 2760 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2758 def update @update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2765 2766 2767 2768 2769 2770 2771 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2765 def update!(**args) @delete = args[:delete] if args.key?(:delete) @insert = args[:insert] if args.key?(:insert) @insert_or_update = args[:insert_or_update] if args.key?(:insert_or_update) @replace = args[:replace] if args.key?(:replace) @update = args[:update] if args.key?(:update) end |