SqlPoolSchemasClient Interface

public interface SqlPoolSchemasClient

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

Method Summary

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

Get Sql Pool schema.

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

Get Sql Pool schema.

abstract PagedIterable<SqlPoolSchemaInner> list(String resourceGroupName, String workspaceName, String sqlPoolName)

Gets schemas of a given SQL pool

abstract PagedIterable<SqlPoolSchemaInner> list(String resourceGroupName, String workspaceName, String sqlPoolName, String filter, Context context)

Gets schemas of a given SQL pool

Method Details

get

public abstract SqlPoolSchemaInner get(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName)

Get Sql Pool schema.

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:

sql Pool schema.

getWithResponse

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

Get Sql Pool schema.

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

Returns:

sql Pool schema along with Response<T>.

list

public abstract PagedIterable list(String resourceGroupName, String workspaceName, String sqlPoolName)

Gets schemas of a given SQL pool

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

Returns:

schemas of a given SQL pool as paginated response with PagedIterable<T>.

list

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

Gets schemas of a given SQL pool

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

Returns:

schemas of a given SQL pool as paginated response with PagedIterable<T>.

Applies to