getSoftwareSet method

Future<GetSoftwareSetResponse> getSoftwareSet({
  1. required String id,
})

Returns information for a software set.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter id : The ID of the software set for which to return information.

Implementation

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