resetAllResourceLogLevels method

Future<void> resetAllResourceLogLevels()

Removes the log-level overrides for all resources; wireless devices, wireless gateways, and FUOTA tasks.

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

Implementation

Future<void> resetAllResourceLogLevels() async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/log-levels',
    exceptionFnMap: _exceptionFns,
  );
}