deleteInput method
Deletes the input end point
May throw BadRequestException. May throw InternalServerErrorException. May throw ForbiddenException. May throw BadGatewayException. May throw NotFoundException. May throw GatewayTimeoutException. May throw TooManyRequestsException. May throw ConflictException.
Parameter inputId
:
Unique ID of the input
Implementation
Future<void> deleteInput({
required String inputId,
}) async {
ArgumentError.checkNotNull(inputId, 'inputId');
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/prod/inputs/${Uri.encodeComponent(inputId)}',
exceptionFnMap: _exceptionFns,
);
}