Interface Operations
-
- All Known Implementing Classes:
OperationsImpl
public interface Operations
An instance of this class provides access to all the operations defined in Operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Operation
getDetails(String operationId)
Gets details of a specific long running operation.rx.Observable<Operation>
getDetailsAsync(String operationId)
Gets details of a specific long running operation.
-
-
-
Method Detail
-
getDetails
Operation getDetails(String operationId)
Gets details of a specific long running operation.- Parameters:
operationId
- Operation id.- Returns:
- the Operation object if successful.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validationErrorResponseException
- thrown if the request is rejected by serverRuntimeException
- all other wrapped checked exceptions if the request fails to be sent
-
getDetailsAsync
rx.Observable<Operation> getDetailsAsync(String operationId)
Gets details of a specific long running operation.- Parameters:
operationId
- Operation id.- Returns:
- the observable to the Operation object
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation
-
-