In Azure resource group java API, there is no function to get the operation status based on a request ID. What is the way to get the operation status in the sdk now ?
Similar functionality exists in the service management API like here for the service management client : http://azure.github.io/azure-sdk-for-java/com/microsoft/windowsazure/management/compute/ComputeManagementClient.html#getOperationStatus-java.lang.String-
Similar function does not exist in the clients like : http://azure.github.io/azure-sdk-for-java/com/microsoft/azure/management/compute/VirtualMachineOperations.html
I see a similar function :
LongRunningOperationResponse getLongRunningOperationStatus(java.lang.String operationStatusLink)
The Get Operation Status operation returns the status of the specified operation.
How to generate the operationStatusLink ?