public static interface ModifyColumnFamiliesRequest.ModificationOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getCreate()
public abstract ColumnFamily getCreate()
Create a new column family with the specified schema, or fail if one already exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily create = 2;
Type | Description |
ColumnFamily | The create. |
getCreateOrBuilder()
public abstract ColumnFamilyOrBuilder getCreateOrBuilder()
Create a new column family with the specified schema, or fail if one already exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily create = 2;
Type | Description |
ColumnFamilyOrBuilder |
getDrop()
public abstract boolean getDrop()
Drop (delete) the column family with the given ID, or fail if no such family exists.
bool drop = 4;
Type | Description |
boolean | The drop. |
getId()
public abstract String getId()
The ID of the column family to be modified.
string id = 1;
Type | Description |
String | The id. |
getIdBytes()
public abstract ByteString getIdBytes()
The ID of the column family to be modified.
string id = 1;
Type | Description |
ByteString | The bytes for id. |
getModCase()
public abstract ModifyColumnFamiliesRequest.Modification.ModCase getModCase()
Type | Description |
ModifyColumnFamiliesRequest.Modification.ModCase |
getUpdate()
public abstract ColumnFamily getUpdate()
Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily update = 3;
Type | Description |
ColumnFamily | The update. |
getUpdateOrBuilder()
public abstract ColumnFamilyOrBuilder getUpdateOrBuilder()
Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily update = 3;
Type | Description |
ColumnFamilyOrBuilder |
hasCreate()
public abstract boolean hasCreate()
Create a new column family with the specified schema, or fail if one already exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily create = 2;
Type | Description |
boolean | Whether the create field is set. |
hasDrop()
public abstract boolean hasDrop()
Drop (delete) the column family with the given ID, or fail if no such family exists.
bool drop = 4;
Type | Description |
boolean | Whether the drop field is set. |
hasUpdate()
public abstract boolean hasUpdate()
Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
.google.bigtable.admin.v2.ColumnFamily update = 3;
Type | Description |
boolean | Whether the update field is set. |