getPortfolioSummary method

Future<GetPortfolioSummaryResponse> getPortfolioSummary()

Retrieves overall summary including the number of servers to rehost and the overall number of anti-patterns.

May throw AccessDeniedException. May throw InternalServerException. May throw ThrottlingException.

Implementation

Future<GetPortfolioSummaryResponse> getPortfolioSummary() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/get-portfolio-summary',
    exceptionFnMap: _exceptionFns,
  );
  return GetPortfolioSummaryResponse.fromJson(response);
}