public sealed class ModifyColumnFamiliesRequest : IMessage<ModifyColumnFamiliesRequest>, IEquatable<ModifyColumnFamiliesRequest>, IDeepCloneable<ModifyColumnFamiliesRequest>, IBufferMessage, IMessage
Request message for
[google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies][google.bigtable.admin.v2.BigtableTableAdmin.ModifyColumnFamilies]
public RepeatedField<ModifyColumnFamiliesRequest.Types.Modification> Modifications { get; }
Required. Modifications to be atomically applied to the specified table's families.
Entries are applied in order, meaning that earlier modifications can be
masked by later ones (in the case of repeated updates to the same family,
for example).
Required. The unique name of the table whose families should be modified.
Values are of the form
projects/{project}/instances/{instance}/tables/{table}.
[[["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-25 UTC."],[[["The `ModifyColumnFamiliesRequest` class is used to modify column families within a Bigtable table, specifically through the `BigtableTableAdmin.ModifyColumnFamilies` method."],["This class implements multiple interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, providing functionalities such as deep cloning and equality checks."],["The class has properties such as `Modifications`, which is a required field that defines the modifications applied to the table's families, and `Name`, which is the unique identifier of the table being modified, it also has a read-only `TableName` property that is a `TableName`-typed view over the `Name`."],["The documentation covers versions ranging from 2.4.0 up to the latest release of 3.24.0, all of which are related to the `ModifyColumnFamiliesRequest` class."],["There are multiple constructors in the `ModifyColumnFamiliesRequest` class that allow instantiation of a request object, including one that takes another `ModifyColumnFamiliesRequest` object as parameter."]]],[]]