Class: Google::Bigtable::V2::MutateRowsRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb

Overview

Request message for BigtableService.MutateRows.

Defined Under Namespace

Classes: Entry

Instance Attribute Summary collapse

Instance Attribute Details

#app_profile_idString

Returns This value specifies routing for replication. If not specified, the "default" application profile will be used.

Returns:

  • (String)

    This value specifies routing for replication. If not specified, the "default" application profile will be used.



185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb', line 185

class MutateRowsRequest
  # @!attribute [rw] row_key
  #   @return [String]
  #     The key of the row to which the `mutations` should be applied.
  # @!attribute [rw] mutations
  #   @return [Array<Google::Bigtable::V2::Mutation>]
  #     Changes to be atomically applied to the specified row. Mutations are
  #     applied in order, meaning that earlier mutations can be masked by
  #     later ones.
  #     You must specify at least one mutation.
  class Entry; end
end

#entriesArray<Google::Bigtable::V2::MutateRowsRequest::Entry>

Returns The row keys and corresponding mutations to be applied in bulk. Each entry is applied as an atomic mutation, but the entries may be applied in arbitrary order (even between entries for the same row). At least one entry must be specified, and in total the entries can contain at most 100000 mutations.

Returns:

  • (Array<Google::Bigtable::V2::MutateRowsRequest::Entry>)

    The row keys and corresponding mutations to be applied in bulk. Each entry is applied as an atomic mutation, but the entries may be applied in arbitrary order (even between entries for the same row). At least one entry must be specified, and in total the entries can contain at most 100000 mutations.



185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb', line 185

class MutateRowsRequest
  # @!attribute [rw] row_key
  #   @return [String]
  #     The key of the row to which the `mutations` should be applied.
  # @!attribute [rw] mutations
  #   @return [Array<Google::Bigtable::V2::Mutation>]
  #     Changes to be atomically applied to the specified row. Mutations are
  #     applied in order, meaning that earlier mutations can be masked by
  #     later ones.
  #     You must specify at least one mutation.
  class Entry; end
end

#table_nameString

Returns The unique name of the table to which the mutations should be applied.

Returns:

  • (String)

    The unique name of the table to which the mutations should be applied.



185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/google/cloud/bigtable/v2/doc/google/bigtable/v2/bigtable.rb', line 185

class MutateRowsRequest
  # @!attribute [rw] row_key
  #   @return [String]
  #     The key of the row to which the `mutations` should be applied.
  # @!attribute [rw] mutations
  #   @return [Array<Google::Bigtable::V2::Mutation>]
  #     Changes to be atomically applied to the specified row. Mutations are
  #     applied in order, meaning that earlier mutations can be masked by
  #     later ones.
  #     You must specify at least one mutation.
  class Entry; end
end