getApiCache method

Future<GetApiCacheResponse> getApiCache({
  1. required String apiId,
})

Retrieves an ApiCache object.

May throw BadRequestException. May throw ConcurrentModificationException. May throw NotFoundException. May throw UnauthorizedException. May throw InternalFailureException.

Parameter apiId : The API ID.

Implementation

Future<GetApiCacheResponse> getApiCache({
  required String apiId,
}) async {
  ArgumentError.checkNotNull(apiId, 'apiId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/apis/${Uri.encodeComponent(apiId)}/ApiCaches',
    exceptionFnMap: _exceptionFns,
  );
  return GetApiCacheResponse.fromJson(response);
}