describeHarvestJob method

Future<DescribeHarvestJobResponse> describeHarvestJob({
  1. required String id,
})

Gets details about an existing HarvestJob.

May throw UnprocessableEntityException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.

Parameter id : The ID of the HarvestJob.

Implementation

Future<DescribeHarvestJobResponse> describeHarvestJob({
  required String id,
}) async {
  ArgumentError.checkNotNull(id, 'id');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/harvest_jobs/${Uri.encodeComponent(id)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeHarvestJobResponse.fromJson(response);
}