AlertOperationsClient Interface

public interface AlertOperationsClient

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

Method Summary

Modifier and Type Method and Description
abstract AlertOperationResultInner get(String scope, String operationId)

Get the specified alert operation.

abstract Mono<AlertOperationResultInner> getAsync(String scope, String operationId)

Get the specified alert operation.

abstract Response<AlertOperationResultInner> getWithResponse(String scope, String operationId, Context context)

Get the specified alert operation.

abstract Mono<Response<AlertOperationResultInner>> getWithResponseAsync(String scope, String operationId)

Get the specified alert operation.

Method Details

get

public abstract AlertOperationResultInner get(String scope, String operationId)

Get the specified alert operation.

Parameters:

scope - The scope of the alert operation.
operationId - The id of the alert operation.

Returns:

the specified alert operation.

getAsync

public abstract Mono<AlertOperationResultInner> getAsync(String scope, String operationId)

Get the specified alert operation.

Parameters:

scope - The scope of the alert operation.
operationId - The id of the alert operation.

Returns:

the specified alert operation on successful completion of Mono.

getWithResponse

public abstract Response<AlertOperationResultInner> getWithResponse(String scope, String operationId, Context context)

Get the specified alert operation.

Parameters:

scope - The scope of the alert operation.
operationId - The id of the alert operation.
context - The context to associate with this operation.

Returns:

the specified alert operation along with Response<T>.

getWithResponseAsync

public abstract Mono<Response<AlertOperationResultInner>> getWithResponseAsync(String scope, String operationId)

Get the specified alert operation.

Parameters:

scope - The scope of the alert operation.
operationId - The id of the alert operation.

Returns:

the specified alert operation along with Response<T> on successful completion of Mono.

Applies to