SqlPoolSchemas Interface

public interface SqlPoolSchemas

Resource collection API of SqlPoolSchemas.

Method Details

get

public abstract SqlPoolSchema 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<SqlPoolSchema> 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<SqlPoolSchema> 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<SqlPoolSchema> 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