SqlPoolsAsyncClient Class

  • java.lang.Object
    • com.azure.analytics.synapse.artifacts.SqlPoolsAsyncClient

public final class SqlPoolsAsyncClient

Initializes a new instance of the asynchronous ArtifactsClient type.

Method Summary

Modifier and Type Method and Description
Mono<SqlPool> get(String sqlPoolName)

Get Sql Pool.

Mono<Response<SqlPool>> getWithResponse(String sqlPoolName)

Get Sql Pool.

Mono<SqlPoolInfoListResult> list()

List Sql Pools.

Mono<Response<SqlPoolInfoListResult>> listWithResponse()

List Sql Pools.

Methods inherited from java.lang.Object

Method Details

get

public Mono get(String sqlPoolName)

Get Sql Pool.

Parameters:

sqlPoolName - The Sql Pool name.

Returns:

sql Pool on successful completion of Mono.

getWithResponse

public Mono<>> getWithResponse(String sqlPoolName)

Get Sql Pool.

Parameters:

sqlPoolName - The Sql Pool name.

Returns:

sql Pool along with Response<T> on successful completion of Mono.

list

public Mono list()

List Sql Pools.

Returns:

sQL pool collection on successful completion of Mono.

listWithResponse

public Mono<>> listWithResponse()

List Sql Pools.

Returns:

sQL pool collection along with Response<T> on successful completion of Mono.

Applies to