describeTestSetGeneration method

Future<DescribeTestSetGenerationResponse> describeTestSetGeneration({
  1. required String testSetGenerationId,
})

Gets metadata information about the test set generation.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceQuotaExceededException. May throw ThrottlingException. May throw ValidationException.

Parameter testSetGenerationId : The unique identifier of the test set generation.

Implementation

Future<DescribeTestSetGenerationResponse> describeTestSetGeneration({
  required String testSetGenerationId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/testsetgenerations/${Uri.encodeComponent(testSetGenerationId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeTestSetGenerationResponse.fromJson(response);
}