getReadSetActivationJob method
Returns detailed information about the status of a read set activation job in JSON format.
May throw AccessDeniedException.
May throw InternalServerException.
May throw RequestTimeoutException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The job's ID.
Parameter sequenceStoreId :
The job's sequence store ID.
Implementation
Future<GetReadSetActivationJobResponse> getReadSetActivationJob({
required String id,
required String sequenceStoreId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/sequencestore/${Uri.encodeComponent(sequenceStoreId)}/activationjob/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return GetReadSetActivationJobResponse.fromJson(response);
}