Interface MutateRowsRequestOrBuilder

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

public interface MutateRowsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getTableName

      String getTableName()
       Optional. The unique name of the table to which the mutations should be
       applied.
      
       Values are of the form
       `projects/<project>/instances/<instance>/tables/<table>`.
       
      string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
      Returns:
      The tableName.
    • getTableNameBytes

      com.google.protobuf.ByteString getTableNameBytes()
       Optional. The unique name of the table to which the mutations should be
       applied.
      
       Values are of the form
       `projects/<project>/instances/<instance>/tables/<table>`.
       
      string table_name = 1 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for tableName.
    • getAuthorizedViewName

      String getAuthorizedViewName()
       Optional. The unique name of the AuthorizedView to which the mutations
       should be applied.
      
       Values are of the form
       `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
       
      string authorized_view_name = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
      Returns:
      The authorizedViewName.
    • getAuthorizedViewNameBytes

      com.google.protobuf.ByteString getAuthorizedViewNameBytes()
       Optional. The unique name of the AuthorizedView to which the mutations
       should be applied.
      
       Values are of the form
       `projects/<project>/instances/<instance>/tables/<table>/authorizedViews/<authorized_view>`.
       
      string authorized_view_name = 5 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for authorizedViewName.
    • getAppProfileId

      String getAppProfileId()
       This value specifies routing for replication. If not specified, the
       "default" application profile will be used.
       
      string app_profile_id = 3;
      Returns:
      The appProfileId.
    • getAppProfileIdBytes

      com.google.protobuf.ByteString getAppProfileIdBytes()
       This value specifies routing for replication. If not specified, the
       "default" application profile will be used.
       
      string app_profile_id = 3;
      Returns:
      The bytes for appProfileId.
    • getEntriesList

      List<MutateRowsRequest.Entry> getEntriesList()
       Required. 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.
       
      repeated .google.bigtable.v2.MutateRowsRequest.Entry entries = 2 [(.google.api.field_behavior) = REQUIRED];
    • getEntries

      MutateRowsRequest.Entry getEntries(int index)
       Required. 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.
       
      repeated .google.bigtable.v2.MutateRowsRequest.Entry entries = 2 [(.google.api.field_behavior) = REQUIRED];
    • getEntriesCount

      int getEntriesCount()
       Required. 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.
       
      repeated .google.bigtable.v2.MutateRowsRequest.Entry entries = 2 [(.google.api.field_behavior) = REQUIRED];
    • getEntriesOrBuilderList

      List<? extends MutateRowsRequest.EntryOrBuilder> getEntriesOrBuilderList()
       Required. 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.
       
      repeated .google.bigtable.v2.MutateRowsRequest.Entry entries = 2 [(.google.api.field_behavior) = REQUIRED];
    • getEntriesOrBuilder

      MutateRowsRequest.EntryOrBuilder getEntriesOrBuilder(int index)
       Required. 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.
       
      repeated .google.bigtable.v2.MutateRowsRequest.Entry entries = 2 [(.google.api.field_behavior) = REQUIRED];