SqlPoolTablesClient Interface

public interface SqlPoolTablesClient

An instance of this class provides access to all the operations defined in SqlPoolTablesClient.

Method Summary

Modifier and Type Method and Description
abstract SqlPoolTableInner get(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)

Get Sql pool table.

abstract Response<SqlPoolTableInner> getWithResponse(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, Context context)

Get Sql pool table.

abstract PagedIterable<SqlPoolTableInner> listBySchema(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName)

Gets tables of a given schema in a SQL pool

abstract PagedIterable<SqlPoolTableInner> listBySchema(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String filter, Context context)

Gets tables of a given schema in a SQL pool

Method Details

get

public abstract SqlPoolTableInner get(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)

Get Sql pool table.

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:

sql pool table.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, Context context)

Get Sql pool table.

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.
context - The context to associate with this operation.

Returns:

sql pool table along with Response<T>.

listBySchema

public abstract PagedIterable listBySchema(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName)

Gets tables of a given schema in a SQL pool

Gets tables of a given schema 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.

Returns:

tables of a given schema in a SQL pool as paginated response with PagedIterable<T>.

listBySchema

public abstract PagedIterable listBySchema(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String filter, Context context)

Gets tables of a given schema in a SQL pool

Gets tables of a given schema 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.
filter - An OData filter expression that filters elements in the collection.
context - The context to associate with this operation.

Returns:

tables of a given schema in a SQL pool as paginated response with PagedIterable<T>.

Applies to