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
    If set consistently across retries, prevents this mutation from being double applied to aggregate column families within a 15m window.
    If set consistently across retries, prevents this mutation from being double applied to aggregate column families within a 15m window.
    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.
    boolean
    If set consistently across retries, prevents this mutation from being double applied to aggregate column families within a 15m window.

    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];
    • hasIdempotency

      boolean hasIdempotency()
       If set consistently across retries, prevents this mutation from being
       double applied to aggregate column families within a 15m window.
       
      .google.bigtable.v2.Idempotency idempotency = 3;
      Returns:
      Whether the idempotency field is set.
    • getIdempotency

      Idempotency getIdempotency()
       If set consistently across retries, prevents this mutation from being
       double applied to aggregate column families within a 15m window.
       
      .google.bigtable.v2.Idempotency idempotency = 3;
      Returns:
      The idempotency.
    • getIdempotencyOrBuilder

      IdempotencyOrBuilder getIdempotencyOrBuilder()
       If set consistently across retries, prevents this mutation from being
       double applied to aggregate column families within a 15m window.
       
      .google.bigtable.v2.Idempotency idempotency = 3;