Interface SqlPoolTableColumns
-
public interface SqlPoolTableColumns
Resource collection API of SqlPoolTableColumns.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.azure.core.http.rest.PagedIterable<SqlPoolColumn>
listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)
Gets columns in a given table in a SQL pool.com.azure.core.http.rest.PagedIterable<SqlPoolColumn>
listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, String filter, com.azure.core.util.Context context)
Gets columns in a given table in a SQL pool.
-
-
-
Method Detail
-
listByTableName
com.azure.core.http.rest.PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName)
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
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
listByTableName
com.azure.core.http.rest.PagedIterable<SqlPoolColumn> listByTableName(String resourceGroupName, String workspaceName, String sqlPoolName, String schemaName, String tableName, String filter, com.azure.core.util.Context context)
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
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
-