describeServiceJob method
The details of a service job.
May throw ClientException.
May throw ServerException.
Parameter jobId :
The job ID for the service job to describe.
Implementation
Future<DescribeServiceJobResponse> describeServiceJob({
required String jobId,
}) async {
final $payload = <String, dynamic>{
'jobId': jobId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/v1/describeservicejob',
exceptionFnMap: _exceptionFns,
);
return DescribeServiceJobResponse.fromJson(response);
}