deleteInput method

Future<void> deleteInput({
  1. required String inputId,
})

Deletes the input end point

May throw BadGatewayException. May throw BadRequestException. May throw ConflictException. May throw ForbiddenException. May throw GatewayTimeoutException. May throw InternalServerErrorException. May throw NotFoundException. May throw TooManyRequestsException.

Parameter inputId : Unique ID of the input

Implementation

Future<void> deleteInput({
  required String inputId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/prod/inputs/${Uri.encodeComponent(inputId)}',
    exceptionFnMap: _exceptionFns,
  );
}