Class: Google::Apis::DatastoreV1::Mutation
- Inherits:
-
Object
- Object
- Google::Apis::DatastoreV1::Mutation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datastore_v1/classes.rb,
generated/google/apis/datastore_v1/representations.rb,
generated/google/apis/datastore_v1/representations.rb
Overview
A mutation to apply to an entity.
Instance Attribute Summary collapse
-
#base_version ⇒ Fixnum
The version of the entity that this mutation is being applied to.
-
#delete ⇒ Google::Apis::DatastoreV1::Key
A unique identifier for an entity.
-
#insert ⇒ Google::Apis::DatastoreV1::Entity
A Datastore data object.
-
#update ⇒ Google::Apis::DatastoreV1::Entity
A Datastore data object.
-
#upsert ⇒ Google::Apis::DatastoreV1::Entity
A Datastore data object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Mutation
constructor
A new instance of Mutation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Mutation
Returns a new instance of Mutation
1125 1126 1127 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1125 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_version ⇒ Fixnum
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
1123 1124 1125 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1123 def base_version @base_version end |
#delete ⇒ Google::Apis::DatastoreV1::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
1109 1110 1111 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1109 def delete @delete end |
#insert ⇒ Google::Apis::DatastoreV1::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
1117 1118 1119 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1117 def insert @insert end |
#update ⇒ Google::Apis::DatastoreV1::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
1093 1094 1095 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1093 def update @update end |
#upsert ⇒ Google::Apis::DatastoreV1::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
1101 1102 1103 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1101 def upsert @upsert end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1130 1131 1132 1133 1134 1135 1136 |
# File 'generated/google/apis/datastore_v1/classes.rb', line 1130 def update!(**args) @update = args[:update] if args.key?(:update) @upsert = args[:upsert] if args.key?(:upsert) @delete = args[:delete] if args.key?(:delete) @insert = args[:insert] if args.key?(:insert) @base_version = args[:base_version] if args.key?(:base_version) end |