getRunGroup method
Gets information about a run group and returns its metadata.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw RequestTimeoutException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The group's ID.
Implementation
Future<GetRunGroupResponse> getRunGroup({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/runGroup/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return GetRunGroupResponse.fromJson(response);
}