Package com.google.bigtable.v2
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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()
The key of the row to which the `mutations` should be applied.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
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];
-
-