getJob method
Gets a Deadline Cloud job.
May throw AccessDeniedException.
May throw InternalServerErrorException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter farmId :
The farm ID of the farm in the job.
Parameter jobId :
The job ID.
Parameter queueId :
The queue ID associated with the job.
Implementation
Future<GetJobResponse> getJob({
required String farmId,
required String jobId,
required String queueId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/2023-10-12/farms/${Uri.encodeComponent(farmId)}/queues/${Uri.encodeComponent(queueId)}/jobs/${Uri.encodeComponent(jobId)}',
exceptionFnMap: _exceptionFns,
);
return GetJobResponse.fromJson(response);
}