getIndexingConfiguration method

Future<GetIndexingConfigurationResponse> getIndexingConfiguration()

Gets the indexing configuration.

May throw InvalidRequestException. May throw ThrottlingException. May throw UnauthorizedException. May throw ServiceUnavailableException. May throw InternalFailureException.

Implementation

Future<GetIndexingConfigurationResponse> getIndexingConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/indexing/config',
    exceptionFnMap: _exceptionFns,
  );
  return GetIndexingConfigurationResponse.fromJson(response);
}