Package com.google.bigtable.v2
Interface MutateRowRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MutateRowRequest
,MutateRowRequest.Builder
public interface MutateRowRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAppProfileId()
This value specifies routing for replication.com.google.protobuf.ByteString
getAppProfileIdBytes()
This value specifies routing for replication.Mutation
getMutations(int index)
Required.int
getMutationsCount()
Required.List<Mutation>
getMutationsList()
Required.MutationOrBuilder
getMutationsOrBuilder(int index)
Required.List<? extends MutationOrBuilder>
getMutationsOrBuilderList()
Required.com.google.protobuf.ByteString
getRowKey()
Required.String
getTableName()
Required.com.google.protobuf.ByteString
getTableNameBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTableName
String getTableName()
Required. The unique name of the table to which the mutation should be applied. Values are of the form `projects/<project>/instances/<instance>/tables/<table>`.
string table_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The tableName.
-
getTableNameBytes
com.google.protobuf.ByteString getTableNameBytes()
Required. The unique name of the table to which the mutation should be applied. Values are of the form `projects/<project>/instances/<instance>/tables/<table>`.
string table_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for tableName.
-
getAppProfileId
String getAppProfileId()
This value specifies routing for replication. If not specified, the "default" application profile will be used.
string app_profile_id = 4;
- 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 = 4;
- Returns:
- The bytes for appProfileId.
-
getRowKey
com.google.protobuf.ByteString getRowKey()
Required. The key of the row to which the mutation should be applied.
bytes row_key = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The rowKey.
-
getMutationsList
List<Mutation> getMutationsList()
Required. Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.
repeated .google.bigtable.v2.Mutation mutations = 3 [(.google.api.field_behavior) = REQUIRED];
-
getMutations
Mutation getMutations(int index)
Required. Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.
repeated .google.bigtable.v2.Mutation mutations = 3 [(.google.api.field_behavior) = REQUIRED];
-
getMutationsCount
int getMutationsCount()
Required. Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.
repeated .google.bigtable.v2.Mutation mutations = 3 [(.google.api.field_behavior) = REQUIRED];
-
getMutationsOrBuilderList
List<? extends MutationOrBuilder> getMutationsOrBuilderList()
Required. Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.
repeated .google.bigtable.v2.Mutation mutations = 3 [(.google.api.field_behavior) = REQUIRED];
-
getMutationsOrBuilder
MutationOrBuilder getMutationsOrBuilder(int index)
Required. Changes to be atomically applied to the specified row. Entries are applied in order, meaning that earlier mutations can be masked by later ones. Must contain at least one entry and at most 100000.
repeated .google.bigtable.v2.Mutation mutations = 3 [(.google.api.field_behavior) = REQUIRED];
-
-