Interface IWithColumn<ParentT>
- Assembly
- Microsoft.Azure.Management.CosmosDB.Fluent.dll
The stage of a Cassandra table definition allowing to set Cassandra table columns.
public interface IWithColumn<ParentT>
Type Parameters
ParentT
The stage of the parent definition to return to after attaching this definition.
Methods
WithColumn(Column)
Specifies a Cassandra table column.
IWithAttach<ParentT> WithColumn(Column column)
Parameters
column
ColumnThe Cassandra column.
Returns
- IWithAttach<ParentT>
The next stage of the definition.
WithColumn(string, string)
Specifies a Cassandra table column.
IWithAttach<ParentT> WithColumn(string name, string type)
Parameters
name
stringThe name of the Cassandra table column.
type
stringThe type of the Cassandra table column
Returns
- IWithAttach<ParentT>
The next stage of the definition.
WithColumns(IList<Column>)
Appends all columns.
IWithAttach<ParentT> WithColumns(IList<Column> columns)
Parameters
Returns
- IWithAttach<ParentT>
The next stage of the definition.