Class: Google::Apis::DatastoreV1beta3::Mutation

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

Overview

A mutation to apply to an entity.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Mutation

Returns a new instance of Mutation.



1106
1107
1108
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1106

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

Instance Attribute Details

#base_versionFixnum

The version of the entity that this mutation is being applied to. If this does not match the current version on the server, the mutation conflicts. Corresponds to the JSON property baseVersion

Returns:

  • (Fixnum)


1076
1077
1078
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1076

def base_version
  @base_version
end

#deleteGoogle::Apis::DatastoreV1beta3::Key

A unique identifier for an entity. If a key's partition ID or any of its path kinds or names are reserved/read-only, the key is reserved/read-only. A reserved/read-only key is forbidden in certain documented contexts. Corresponds to the JSON property delete



1083
1084
1085
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1083

def delete
  @delete
end

#insertGoogle::Apis::DatastoreV1beta3::Entity

A Datastore data object. An entity is limited to 1 megabyte when stored. That roughly corresponds to a limit of 1 megabyte for the serialized form of this message. Corresponds to the JSON property insert



1090
1091
1092
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1090

def insert
  @insert
end

#updateGoogle::Apis::DatastoreV1beta3::Entity

A Datastore data object. An entity is limited to 1 megabyte when stored. That roughly corresponds to a limit of 1 megabyte for the serialized form of this message. Corresponds to the JSON property update



1097
1098
1099
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1097

def update
  @update
end

#upsertGoogle::Apis::DatastoreV1beta3::Entity

A Datastore data object. An entity is limited to 1 megabyte when stored. That roughly corresponds to a limit of 1 megabyte for the serialized form of this message. Corresponds to the JSON property upsert



1104
1105
1106
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1104

def upsert
  @upsert
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1111
1112
1113
1114
1115
1116
1117
# File 'lib/google/apis/datastore_v1beta3/classes.rb', line 1111

def update!(**args)
  @base_version = args[:base_version] if args.key?(:base_version)
  @delete = args[:delete] if args.key?(:delete)
  @insert = args[:insert] if args.key?(:insert)
  @update = args[:update] if args.key?(:update)
  @upsert = args[:upsert] if args.key?(:upsert)
end