Interface IWithColumn
- Namespace
- Microsoft.Azure.Management.CosmosDB.Fluent.CassandraTable.Update
- Assembly
- Microsoft.Azure.Management.CosmosDB.Fluent.dll
The stage of a Cassandra table update allowing to set Cassandra table columns.
public interface IWithColumn
Methods
WithColumn(Column)
Specifies a Cassandra table column.
IUpdate WithColumn(Column column)
Parameters
column
ColumnThe Cassandra column.
Returns
- IUpdate
The next stage of the update.
WithColumn(string, string)
Specifies a Cassandra table column.
IUpdate WithColumn(string name, string type)
Parameters
name
stringThe name of the Cassandra table column.
type
stringThe type of the Cassandra table column
Returns
- IUpdate
The next stage of the update.
WithColumnsAppend(IList<Column>)
Appends all columns.
IUpdate WithColumnsAppend(IList<Column> columns)
Parameters
Returns
- IUpdate
The next stage of the update.
WithColumnsReplace(IList<Column>)
Replaces the columns.
IUpdate WithColumnsReplace(IList<Column> columns)
Parameters
Returns
- IUpdate
The next stage of the update.
WithoutColumn(string)
Removes a Cassandra table column.
IUpdate WithoutColumn(string name)
Parameters
name
stringThe name of the Cassandra table column.
Returns
- IUpdate
The next stage of the update.
WithoutColumns()
Removes all columns.
IUpdate WithoutColumns()
Returns
- IUpdate
The next stage of the update.