disassociateWirelessDeviceFromFuotaTask method

Future<void> disassociateWirelessDeviceFromFuotaTask({
  1. required String id,
  2. required String wirelessDeviceId,
})

Disassociates a wireless device from a FUOTA task.

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

Implementation

Future<void> disassociateWirelessDeviceFromFuotaTask({
  required String id,
  required String wirelessDeviceId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/fuota-tasks/${Uri.encodeComponent(id)}/wireless-devices/${Uri.encodeComponent(wirelessDeviceId)}',
    exceptionFnMap: _exceptionFns,
  );
}