SqlPoolTableColumns Interface

public interface SqlPoolTableColumns

Resource collection API of SqlPoolTableColumns.

Method Summary

Modifier and Type Method and Description
abstract PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)

Gets columns in a given table in a SQL pool Gets columns in a given table in a SQL pool.

abstract PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, String filter, Context context)

Gets columns in a given table in a SQL pool Gets columns in a given table in a SQL pool.

Method Details

listByTableName

public abstract PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)

Gets columns in a given table in a SQL pool Gets columns in a given table in a SQL pool.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
sqlPoolName - SQL pool name.
schemaName - The name of the schema.
tableName - The name of the table.

Returns:

columns in a given table in a SQL pool as paginated response with PagedIterable<T>.

listByTableName

public abstract PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, String filter, Context context)

Gets columns in a given table in a SQL pool Gets columns in a given table in a SQL pool.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - The name of the workspace.
sqlPoolName - SQL pool name.
schemaName - The name of the schema.
tableName - The name of the table.
filter - An OData filter expression that filters elements in the collection.
context - The context to associate with this operation.

Returns:

columns in a given table in a SQL pool as paginated response with PagedIterable<T>.

Applies to