Interface MutateRowsRequest.EntryOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
MutateRowsRequest.Entry, MutateRowsRequest.Entry.Builder
Enclosing class:
MutateRowsRequest

public static interface MutateRowsRequest.EntryOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    getMutations(int index)
    Required.
    int
    Required.
    Required.
    Required.
    Required.
    com.google.protobuf.ByteString
    The key of the row to which the `mutations` should be applied.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getRowKey

      com.google.protobuf.ByteString getRowKey()
       The key of the row to which the `mutations` should be applied.
       
      bytes row_key = 1;
      Returns:
      The rowKey.
    • getMutationsList

      List<Mutation> getMutationsList()
       Required. 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.
       
      repeated .google.bigtable.v2.Mutation mutations = 2 [(.google.api.field_behavior) = REQUIRED];
    • getMutations

      Mutation getMutations(int index)
       Required. 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.
       
      repeated .google.bigtable.v2.Mutation mutations = 2 [(.google.api.field_behavior) = REQUIRED];
    • getMutationsCount

      int getMutationsCount()
       Required. 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.
       
      repeated .google.bigtable.v2.Mutation mutations = 2 [(.google.api.field_behavior) = REQUIRED];
    • getMutationsOrBuilderList

      List<? extends MutationOrBuilder> getMutationsOrBuilderList()
       Required. 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.
       
      repeated .google.bigtable.v2.Mutation mutations = 2 [(.google.api.field_behavior) = REQUIRED];
    • getMutationsOrBuilder

      MutationOrBuilder getMutationsOrBuilder(int index)
       Required. 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.
       
      repeated .google.bigtable.v2.Mutation mutations = 2 [(.google.api.field_behavior) = REQUIRED];