OperationStatuses Interface

public interface OperationStatuses

Resource collection API of OperationStatuses.

Method Summary

Modifier and Type Method and Description
abstract OperationStatus get(String location, String operationId)

Get Operation Status Gets the current status of an async operation.

abstract Response<OperationStatus> getWithResponse(String location, String operationId, Context context)

Get Operation Status Gets the current status of an async operation.

Method Details

get

public abstract OperationStatus get(String location, String operationId)

Get Operation Status Gets the current status of an async operation.

Parameters:

location - The Azure region.
operationId - The ID of an ongoing async operation.

Returns:

the current status of an async operation.

getWithResponse

public abstract Response<OperationStatus> getWithResponse(String location, String operationId, Context context)

Get Operation Status Gets the current status of an async operation.

Parameters:

location - The Azure region.
operationId - The ID of an ongoing async operation.
context - The context to associate with this operation.

Returns:

the current status of an async operation.

Applies to