deleteIPSet method

Future<void> deleteIPSet({
  1. required String detectorId,
  2. required String ipSetId,
})

Deletes the IPSet specified by the ipSetId. IPSets are called trusted IP lists in the console user interface.

May throw BadRequestException. May throw InternalServerErrorException.

Parameter detectorId : The unique ID of the detector associated with the IPSet.

Parameter ipSetId : The unique ID of the IPSet to delete.

Implementation

Future<void> deleteIPSet({
  required String detectorId,
  required String ipSetId,
}) async {
  ArgumentError.checkNotNull(detectorId, 'detectorId');
  _s.validateStringLength(
    'detectorId',
    detectorId,
    1,
    300,
    isRequired: true,
  );
  ArgumentError.checkNotNull(ipSetId, 'ipSetId');
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/detector/${Uri.encodeComponent(detectorId)}/ipset/${Uri.encodeComponent(ipSetId)}',
    exceptionFnMap: _exceptionFns,
  );
}