Class: Google::Apis::SpannerV1::Mutation

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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Mutation

Returns a new instance of Mutation



878
879
880
# File 'generated/google/apis/spanner_v1/classes.rb', line 878

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

Instance Attribute Details

#deleteGoogle::Apis::SpannerV1::Delete

Arguments to delete operations. Corresponds to the JSON property delete



864
865
866
# File 'generated/google/apis/spanner_v1/classes.rb', line 864

def delete
  @delete
end

#insertGoogle::Apis::SpannerV1::Write

Arguments to insert, update, insert_or_update, and replace operations. Corresponds to the JSON property insert



870
871
872
# File 'generated/google/apis/spanner_v1/classes.rb', line 870

def insert
  @insert
end

#insert_or_updateGoogle::Apis::SpannerV1::Write

Arguments to insert, update, insert_or_update, and replace operations. Corresponds to the JSON property insertOrUpdate



876
877
878
# File 'generated/google/apis/spanner_v1/classes.rb', line 876

def insert_or_update
  @insert_or_update
end

#replaceGoogle::Apis::SpannerV1::Write

Arguments to insert, update, insert_or_update, and replace operations. Corresponds to the JSON property replace



859
860
861
# File 'generated/google/apis/spanner_v1/classes.rb', line 859

def replace
  @replace
end

#updateGoogle::Apis::SpannerV1::Write

Arguments to insert, update, insert_or_update, and replace operations. Corresponds to the JSON property update



853
854
855
# File 'generated/google/apis/spanner_v1/classes.rb', line 853

def update
  @update
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



883
884
885
886
887
888
889
# File 'generated/google/apis/spanner_v1/classes.rb', line 883

def update!(**args)
  @update = args[:update] if args.key?(:update)
  @replace = args[:replace] if args.key?(:replace)
  @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)
end