* This function is used to delete an object from a bucket. The bucket must * already exist and the user must have permission to delete the object. * @param {AuthInfo} authInfo - Instance of AuthInfo class with requester's info * @param {object} request - http request object * @param {werelogs.Lo
(authInfo, request, log, cb)
| 319 | * @return {undefined} |
| 320 | */ |
| 321 | function objectDelete(authInfo, request, log, cb) { |
| 322 | log.debug('processing request', { method: 'objectDelete' }); |
| 323 | return objectDeleteInternal(authInfo, request, log, false, cb); |
| 324 | } |
| 325 | |
| 326 | module.exports = { |
| 327 | objectDelete, |
no test coverage detected