Table of Contents

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 Column

The 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 string

The name of the Cassandra table column.

type string

The 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

columns IList<Column>

The list of the Cassandra table column.

Returns

IUpdate

The next stage of the update.

WithColumnsReplace(IList<Column>)

Replaces the columns.

IUpdate WithColumnsReplace(IList<Column> columns)

Parameters

columns IList<Column>

The list of the Cassandra table column.

Returns

IUpdate

The next stage of the update.

WithoutColumn(string)

Removes a Cassandra table column.

IUpdate WithoutColumn(string name)

Parameters

name string

The 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.