public sealed class MutateRowsRequest : IMessage<MutateRowsRequest>, IEquatable<MutateRowsRequest>, IDeepCloneable<MutateRowsRequest>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Bigtable v2 API class MutateRowsRequest.
public RepeatedField<MutateRowsRequest.Types.Entry> Entries { get; }
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This document provides reference information for the `MutateRowsRequest` class within the Google Bigtable v2 API, specifically for version 3.8.0 of the .NET library, with links to its other available versions from 2.2.0 to 3.17.0."],["`MutateRowsRequest` is a message class used for batching multiple row mutation operations in Google Bigtable, it implements interfaces like `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`."],["The `MutateRowsRequest` class includes properties for specifying the `TableName`, `AppProfileId`, and a list of `Entries`, where each `Entry` defines a single mutation operation, and it contains constructors to initialize new instances, either blank or from an existing one."],["The `Entries` property is a collection of mutations to be applied, required for the `MutateRowsRequest` and must contain at least one entry and no more than 100,000."],["The `TableName` and `AppProfileId` properties are used to specify the target Bigtable table and the application profile to be used for routing."]]],[]]