describeTestSet method

Future<DescribeTestSetResponse> describeTestSet({
  1. required String testSetId,
})

Gets metadata information about the test set.

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

Parameter testSetId : The test set Id for the test set request.

Implementation

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